Home | History | Annotate | Download | only in ssl

Lines Matching refs:child

222   CBB child;
223 if (!CBB_add_u16_length_prefixed(out, &child)) {
229 !CBB_add_u16(&child, ssl_get_grease_value(hs, ssl_grease_cipher))) {
237 !CBB_add_u16(&child, TLS1_CK_CHACHA20_POLY1305_SHA256 & 0xffff)) {
240 if (!CBB_add_u16(&child, TLS1_CK_AES_128_GCM_SHA256 & 0xffff) ||
241 !CBB_add_u16(&child, TLS1_CK_AES_256_GCM_SHA384 & 0xffff)) {
245 !CBB_add_u16(&child, TLS1_CK_CHACHA20_POLY1305_SHA256 & 0xffff)) {
263 if (!CBB_add_u16(&child, ssl_cipher_get_value(cipher))) {
276 if (!CBB_add_u16(&child, SSL3_CK_FALLBACK_SCSV & 0xffff)) {
292 CBB child;
295 !CBB_add_u8_length_prefixed(&body, &child)) {
301 !CBB_add_bytes(&child, hs->session_id, hs->session_id_len)) {
306 if (!CBB_add_u8_length_prefixed(&body, &child) ||
307 !CBB_add_bytes(&child, ssl->d1->cookie, ssl->d1->cookie_len)) {
1301 CBB child;
1302 if (!CBB_add_u16_length_prefixed(&body, &child) ||
1303 !CBB_add_bytes(&child, (const uint8_t *)identity,
1341 CBB child;
1342 if (!CBB_add_u8_length_prefixed(&body, &child)) {
1348 if (!hs->key_shares[0]->Accept(&child, &pms, &alert, hs->peer_key)) {
1377 CBB child;
1379 !CBB_add_u16_length_prefixed(pms_cbb.get(), &child) ||
1380 !CBB_add_bytes(&child, pms.data(), pms.size()) ||
1381 !CBB_add_u16_length_prefixed(pms_cbb.get(), &child) ||
1382 !CBB_add_bytes(&child, psk, psk_len) ||
1416 CBB body, child;
1438 if (!CBB_add_u16_length_prefixed(&body, &child) ||
1439 !CBB_reserve(&child, &ptr, max_sig_len)) {
1456 if (!CBB_did_write(&child, sig_len) ||
1493 CBB body, child;
1495 !CBB_add_u8_length_prefixed(&body, &child) ||
1496 !CBB_add_bytes(&child, ssl->s3->next_proto_negotiated.data(),
1498 !CBB_add_u8_length_prefixed(&body, &child) ||
1499 !CBB_add_bytes(&child, kZero, padding_len) ||