diff options
author | schwarze <> | 2023-08-12 16:36:41 +0000 |
---|---|---|
committer | schwarze <> | 2023-08-12 16:36:41 +0000 |
commit | 49654fb5c0c0a40e56330968a2b59669d9370c61 (patch) | |
tree | 93f800b1632d02a1f1871d96509b778e519245eb /src/regress/lib | |
parent | c6b606675a5e7a408130bcfcd86712f57285e1da (diff) | |
download | openbsd-49654fb5c0c0a40e56330968a2b59669d9370c61.tar.gz openbsd-49654fb5c0c0a40e56330968a2b59669d9370c61.tar.bz2 openbsd-49654fb5c0c0a40e56330968a2b59669d9370c61.zip |
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 'src/regress/lib')
-rwxr-xr-x | src/regress/lib/libcrypto/man/check_complete.pl | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/regress/lib/libcrypto/man/check_complete.pl b/src/regress/lib/libcrypto/man/check_complete.pl index 4f5d6d1250..6af5f8c327 100755 --- a/src/regress/lib/libcrypto/man/check_complete.pl +++ b/src/regress/lib/libcrypto/man/check_complete.pl | |||
@@ -30,6 +30,10 @@ my %internal = ( | |||
30 | BN_MASK2 BN_MASK2h BN_MASK2h1 BN_MASK2l | 30 | BN_MASK2 BN_MASK2h BN_MASK2h1 BN_MASK2l |
31 | BN_TBIT BN_ULLONG | 31 | BN_TBIT BN_ULLONG |
32 | )], | 32 | )], |
33 | evp => [qw( | ||
34 | EVP_MD_CTRL_ALG_CTRL | ||
35 | EVP_MD_CTX_FLAG_CLEANED EVP_MD_CTX_FLAG_REUSE | ||
36 | )], | ||
33 | objects => [qw( | 37 | objects => [qw( |
34 | OBJ_bsearch_ OBJ_bsearch_ex_ | 38 | OBJ_bsearch_ OBJ_bsearch_ex_ |
35 | )], | 39 | )], |
@@ -61,6 +65,11 @@ my %obsolete = ( | |||
61 | bn => [qw( | 65 | bn => [qw( |
62 | BN_HEX_FMT1 BN_HEX_FMT2 BN_MASK | 66 | BN_HEX_FMT1 BN_HEX_FMT2 BN_MASK |
63 | )], | 67 | )], |
68 | evp => [qw( | ||
69 | EVP_MD_CTRL_DIGALGID | ||
70 | EVP_MD_CTX_FLAG_NON_FIPS_ALLOW EVP_MD_CTX_FLAG_PAD_MASK | ||
71 | EVP_MD_CTX_FLAG_PAD_PKCS1 EVP_MD_CTX_FLAG_PAD_PSS | ||
72 | )], | ||
64 | ); | 73 | ); |
65 | 74 | ||
66 | my %postponed = ( | 75 | my %postponed = ( |
@@ -267,7 +276,7 @@ try_again: | |||
267 | print "D- $line\n" if $verbose; | 276 | print "D- $line\n" if $verbose; |
268 | next; | 277 | next; |
269 | } | 278 | } |
270 | if ($id =~ /^(?:ASN1|BIO|BN|X509(?:V3)?)_[FR]_\w+$/) { | 279 | if ($id =~ /^(?:ASN1|BIO|BN|EVP|X509(?:V3)?)_[FR]_\w+$/) { |
271 | print "D- $line\n" if $verbose; | 280 | print "D- $line\n" if $verbose; |
272 | next; | 281 | next; |
273 | } | 282 | } |