Home
last modified time | relevance | path

Searched refs:thistempl (Results 1 – 4 of 4) sorted by relevance

/freebsd/crypto/openssl/ssl/record/methods/
H A Dtls13_meth.c329 OSSL_RECORD_TEMPLATE *thistempl, in tls13_add_record_padding() argument
336 if (rl->allow_plain_alerts && thistempl->type != SSL3_RT_ALERT) in tls13_add_record_padding()
339 if (!WPACKET_put_bytes_u8(thispkt, thistempl->type)) { in tls13_add_record_padding()
368 padding = rl->padding(rl->cbarg, thistempl->type, rlen); in tls13_add_record_padding()
376 if (thistempl->type == SSL3_RT_HANDSHAKE && rl->hs_padding > 0) in tls13_add_record_padding()
378 else if (thistempl->type == SSL3_RT_ALERT && rl->hs_padding > 0) in tls13_add_record_padding()
380 else if (thistempl->type == SSL3_RT_APPLICATION_DATA in tls13_add_record_padding()
H A Dtls_common.c1693 OSSL_RECORD_TEMPLATE *thistempl, in tls_post_encryption_processing_default() argument
1742 unsigned char ctype = thistempl->type; in tls_post_encryption_processing_default()
1771 OSSL_RECORD_TEMPLATE *thistempl; in tls_write_records_default() local
1801 thistempl = (j < prefix) ? &prefixtempl : &templates[j - prefix]; in tls_write_records_default()
1808 rectype = rl->funcs->get_record_type(rl, thistempl); in tls_write_records_default()
1810 rectype = thistempl->type; in tls_write_records_default()
1813 TLS_RL_RECORD_set_rec_version(thiswr, thistempl->version); in tls_write_records_default()
1815 if (!rl->funcs->prepare_record_header(rl, thispkt, thistempl, rectype, in tls_write_records_default()
1823 TLS_RL_RECORD_set_length(thiswr, thistempl->buflen); in tls_write_records_default()
1825 TLS_RL_RECORD_set_input(thiswr, (unsigned char *)thistempl->buf); in tls_write_records_default()
[all …]
H A Drecmethod_local.h178 OSSL_RECORD_TEMPLATE *thistempl,
198 OSSL_RECORD_TEMPLATE *thistempl,
427 OSSL_RECORD_TEMPLATE *thistempl,
516 OSSL_RECORD_TEMPLATE *thistempl,
H A Ddtls_meth.c731 OSSL_RECORD_TEMPLATE *thistempl, in dtls_post_encryption_processing() argument
735 if (!tls_post_encryption_processing_default(rl, mac_size, thistempl, in dtls_post_encryption_processing()