Searched refs:max_length (Results 1 – 3 of 3) sorted by relevance
/openssl/ssl/ |
H A D | ssl_cert_comp.c | 92 size_t max_length; in OSSL_COMP_CERT_from_uncompressed_data() local 112 if ((max_length = ossl_calculate_comp_expansion(alg, len)) == 0 in OSSL_COMP_CERT_from_uncompressed_data() 115 || (comp_data = OPENSSL_zalloc(max_length)) == NULL) in OSSL_COMP_CERT_from_uncompressed_data() 118 comp_length = COMP_compress_block(comp_ctx, comp_data, max_length, data, len); in OSSL_COMP_CERT_from_uncompressed_data()
|
/openssl/util/ |
H A D | check-format.pl | 103 my $max_length = MAX_LINE_LENGTH; 115 $max_length = STRICT_LINE_LENGTH; 429 length($contents) == $max_length + length("\n"); 676 if ($len > $max_length && 678 && length($1) < $max_length) 681 report("line length = $len > ".$max_length);
|
/openssl/ssl/statem/ |
H A D | statem_clnt.c | 3824 size_t max_length; in tls_construct_client_compressed_certificate() local 3868 max_length = ossl_calculate_comp_expansion(alg, length); in tls_construct_client_compressed_certificate() 3872 || !WPACKET_reserve_bytes(pkt, max_length, NULL)) in tls_construct_client_compressed_certificate() 3875 comp_len = COMP_compress_block(comp, WPACKET_get_curr(pkt), max_length, in tls_construct_client_compressed_certificate()
|
Completed in 36 milliseconds