diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2023-08-12 16:36:42 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2023-08-12 16:36:42 +0000 |
commit | b271a0e7186505e243b6c626f6fffac1fafd03c6 (patch) | |
tree | e4605dcc616bff5c76cbca1307c821717478e15b /regress/lib | |
parent | d0d8a1baa1f94a44b195d1dd0563c8412505c2eb (diff) |
first batch of intentionally undocumented EVP constants:
some EVP_MD_CTRL_*, some EVP_MD_CTX_FLAG_*, and all of EVP_F_* and EVP_R_*
Diffstat (limited to 'regress/lib')
-rwxr-xr-x | regress/lib/libcrypto/man/check_complete.pl | 11 |
1 files changed, 10 insertions, 1 deletions
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; } |