Home
last modified time | relevance | path

Searched refs:SSL3_RT_MAX_PLAIN_LENGTH (Results 1 – 15 of 15) sorted by relevance

/freebsd-13-stable/crypto/openssl/include/openssl/
HDssl3.h171 # define SSL3_RT_MAX_PLAIN_LENGTH 16384 macro
194 # define SSL3_RT_MAX_COMPRESSED_LENGTH SSL3_RT_MAX_PLAIN_LENGTH
197 (SSL3_RT_MAX_PLAIN_LENGTH+SSL3_RT_MAX_COMPRESSED_OVERHEAD)
202 (SSL3_RT_MAX_PLAIN_LENGTH + SSL3_RT_MAX_TLS13_ENCRYPTED_OVERHEAD)
/freebsd-13-stable/crypto/openssl/ssl/
HDd1_msg.c28 if (len > SSL3_RT_MAX_PLAIN_LENGTH) { in dtls1_write_app_data_bytes()
HDssl_lib.c2314 if (larg < 512 || larg > SSL3_RT_MAX_PLAIN_LENGTH) in SSL_ctrl()
2482 if (larg < 512 || larg > SSL3_RT_MAX_PLAIN_LENGTH) in SSL_CTX_ctrl()
3214 ret->max_send_fragment = SSL3_RT_MAX_PLAIN_LENGTH; in SSL_CTX_new()
3215 ret->split_send_fragment = SSL3_RT_MAX_PLAIN_LENGTH; in SSL_CTX_new()
3295 ret->recv_max_early_data = SSL3_RT_MAX_PLAIN_LENGTH; in SSL_CTX_new()
4571 else if (block_size <= SSL3_RT_MAX_PLAIN_LENGTH) in SSL_CTX_set_block_padding()
4607 else if (block_size <= SSL3_RT_MAX_PLAIN_LENGTH) in SSL_set_block_padding()
HDt1_enc.c329 if (ssl_get_max_send_fragment(s) != SSL3_RT_MAX_PLAIN_LENGTH) in tls1_change_cipher_state()
HDd1_lib.c514 n = BIO_read(rbio, buf, SSL3_RT_MAX_PLAIN_LENGTH in DTLSv1_listen()
HDtls13_enc.c734 if (ssl_get_max_send_fragment(s) != SSL3_RT_MAX_PLAIN_LENGTH) in tls13_change_cipher_state()
/freebsd-13-stable/crypto/openssl/doc/man3/
HDSSL_CTX_set_record_padding_callback.pod47 B<block_size> is SSL3_RT_MAX_PLAIN_LENGTH.
66 exceed the maximum record size (SSL3_RT_MAX_PLAIN_LENGTH) will pad out to the
HDSSL_CTX_set_split_send_fragment.pod50 SSL/TLS record. By default its value is SSL3_RT_MAX_PLAIN_LENGTH (16384). These
51 functions will only accept a value in the range 512 - SSL3_RT_MAX_PLAIN_LENGTH.
106 SSL3_RT_MAX_PLAIN_LENGTH + SSL3_RT_MAX_ENCRYPTED_OVERHEAD (16704) bytes.
/freebsd-13-stable/crypto/openssl/ssl/record/
HDssl3_buffer.c55 len = SSL3_RT_MAX_PLAIN_LENGTH in ssl3_setup_read_buffer()
HDssl3_record.c807 if (thisrr->length > SSL3_RT_MAX_PLAIN_LENGTH && !using_ktls) { in ssl3_get_record()
875 SSL3_RT_MAX_PLAIN_LENGTH, rr->data, (int)rr->length); in ssl3_do_uncompress()
1690 size_t max_plain_length = SSL3_RT_MAX_PLAIN_LENGTH; in dtls1_process_record()
HDrec_layer_d1.c790 if (!ossl_assert(len <= SSL3_RT_MAX_PLAIN_LENGTH)) { in dtls1_write_bytes()
/freebsd-13-stable/crypto/openssl/ssl/statem/
HDstatem.c383 if (!BUF_MEM_grow(buf, SSL3_RT_MAX_PLAIN_LENGTH)) { in state_machine()
HDstatem_clnt.c979 return SSL3_RT_MAX_PLAIN_LENGTH; in ossl_statem_client_max_message_size()
982 return SSL3_RT_MAX_PLAIN_LENGTH; in ossl_statem_client_max_message_size()
HDstatem_srvr.c1161 return SSL3_RT_MAX_PLAIN_LENGTH; in ossl_statem_server_max_message_size()
/freebsd-13-stable/crypto/openssl/apps/
HDs_server.c1604 max_early_data = SSL3_RT_MAX_PLAIN_LENGTH; in s_server_main()