From bc28fcf4fd565a455aed8471e2581c238548d385 Mon Sep 17 00:00:00 2001 From: schwarze Date: Sat, 12 Aug 2023 16:36:41 +0000 Subject: [PATCH] first batch of intentionally undocumented EVP constants: some EVP_MD_CTRL_*, some EVP_MD_CTX_FLAG_*, and all of EVP_F_* and EVP_R_* --- regress/lib/libcrypto/man/check_complete.pl | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/regress/lib/libcrypto/man/check_complete.pl b/regress/lib/libcrypto/man/check_complete.pl index 4f5d6d12502..6af5f8c327d 100755 --- a/regress/lib/libcrypto/man/check_complete.pl +++ b/regress/lib/libcrypto/man/check_complete.pl @@ -30,6 +30,10 @@ my %internal = ( BN_MASK2 BN_MASK2h BN_MASK2h1 BN_MASK2l BN_TBIT BN_ULLONG )], + evp => [qw( + EVP_MD_CTRL_ALG_CTRL + EVP_MD_CTX_FLAG_CLEANED EVP_MD_CTX_FLAG_REUSE + )], objects => [qw( OBJ_bsearch_ OBJ_bsearch_ex_ )], @@ -61,6 +65,11 @@ my %obsolete = ( bn => [qw( BN_HEX_FMT1 BN_HEX_FMT2 BN_MASK )], + evp => [qw( + EVP_MD_CTRL_DIGALGID + EVP_MD_CTX_FLAG_NON_FIPS_ALLOW EVP_MD_CTX_FLAG_PAD_MASK + EVP_MD_CTX_FLAG_PAD_PKCS1 EVP_MD_CTX_FLAG_PAD_PSS + )], ); my %postponed = ( @@ -267,7 +276,7 @@ try_again: print "D- $line\n" if $verbose; next; } - if ($id =~ /^(?:ASN1|BIO|BN|X509(?:V3)?)_[FR]_\w+$/) { + if ($id =~ /^(?:ASN1|BIO|BN|EVP|X509(?:V3)?)_[FR]_\w+$/) { print "D- $line\n" if $verbose; next; } -- 2.20.1