Home
last modified time | relevance | path

Searched refs:max_length (Results 1 – 3 of 3) sorted by relevance

/openssl/ssl/
H A Dssl_cert_comp.c92 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 Dcheck-format.pl103 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 Dstatem_clnt.c3823 size_t max_length; in tls_construct_client_compressed_certificate() local
3867 max_length = ossl_calculate_comp_expansion(alg, length); in tls_construct_client_compressed_certificate()
3871 || !WPACKET_reserve_bytes(pkt, max_length, NULL)) in tls_construct_client_compressed_certificate()
3874 comp_len = COMP_compress_block(comp, WPACKET_get_curr(pkt), max_length, in tls_construct_client_compressed_certificate()

Completed in 26 milliseconds