summaryrefslogtreecommitdiff
path: root/src/regress/lib
diff options
context:
space:
mode:
authorschwarze <>2021-12-07 17:01:08 +0000
committerschwarze <>2021-12-07 17:01:08 +0000
commit37478ab41258570ca38b8492059e8b6f13047149 (patch)
tree35e74b7272bc1ff043c97b10a075c2aaf2cb662f /src/regress/lib
parent12bd85dc5366a7b11a496529fcd2963a4d0ef55b (diff)
downloadopenbsd-37478ab41258570ca38b8492059e8b6f13047149.tar.gz
openbsd-37478ab41258570ca38b8492059e8b6f13047149.tar.bz2
openbsd-37478ab41258570ca38b8492059e8b6f13047149.zip
be more specific which NETSCAPE stuff to ignore, and why
Diffstat (limited to 'src/regress/lib')
-rwxr-xr-xsrc/regress/lib/libcrypto/man/check_complete.pl17
1 files changed, 7 insertions, 10 deletions
diff --git a/src/regress/lib/libcrypto/man/check_complete.pl b/src/regress/lib/libcrypto/man/check_complete.pl
index 142413867c..3af44218b6 100755
--- a/src/regress/lib/libcrypto/man/check_complete.pl
+++ b/src/regress/lib/libcrypto/man/check_complete.pl
@@ -20,13 +20,14 @@ use warnings;
20my @obsolete = qw( 20my @obsolete = qw(
21 d2i_PBEPARAM d2i_PBE2PARAM d2i_PBKDF2PARAM 21 d2i_PBEPARAM d2i_PBE2PARAM d2i_PBKDF2PARAM
22 i2d_PBEPARAM i2d_PBE2PARAM i2d_PBKDF2PARAM 22 i2d_PBEPARAM i2d_PBE2PARAM i2d_PBKDF2PARAM
23 NETSCAPE_SPKAC NETSCAPE_SPKI
23 PBEPARAM PBEPARAM_free PBEPARAM_new 24 PBEPARAM PBEPARAM_free PBEPARAM_new
24 PBE2PARAM PBE2PARAM_free PBE2PARAM_new 25 PBE2PARAM PBE2PARAM_free PBE2PARAM_new
25 PBKDF2PARAM PBKDF2PARAM_free PBKDF2PARAM_new 26 PBKDF2PARAM PBKDF2PARAM_free PBKDF2PARAM_new
26 PKCS5_pbe_set PKCS5_pbe_set0_algor 27 PKCS5_pbe_set PKCS5_pbe_set0_algor
27 PKCS5_pbe2_set PKCS5_pbe2_set_iv 28 PKCS5_pbe2_set PKCS5_pbe2_set_iv
28 PKCS5_pbkdf2_set 29 PKCS5_pbkdf2_set
29 X509_EX_V_INIT 30 X509_EX_V_INIT X509_EX_V_NETSCAPE_HACK
30 X509_EXT_PACK_STRING X509_EXT_PACK_UNKNOWN 31 X509_EXT_PACK_STRING X509_EXT_PACK_UNKNOWN
31 X509_VERIFY_PARAM_ID 32 X509_VERIFY_PARAM_ID
32); 33);
@@ -106,10 +107,6 @@ try_again:
106 print "Vt $line\n" if $verbose; 107 print "Vt $line\n" if $verbose;
107 next; 108 next;
108 } 109 }
109 if ($id =~ /NETSCAPE/) {
110 print "V- $line\n" if $verbose;
111 next;
112 }
113 if (grep { $_ eq $id } @obsolete) { 110 if (grep { $_ eq $id } @obsolete) {
114 print "V- $line\n" if $verbose; 111 print "V- $line\n" if $verbose;
115 next; 112 next;
@@ -188,10 +185,6 @@ try_again:
188 print "D- $line\n" if $verbose; 185 print "D- $line\n" if $verbose;
189 next; 186 next;
190 } 187 }
191 if ($id =~ /NETSCAPE/) {
192 print "D- $line\n" if $verbose;
193 next;
194 }
195 if ($id =~ /^(?:ASN1|X509(?:V3)?)_[FR]_\w+$/) { 188 if ($id =~ /^(?:ASN1|X509(?:V3)?)_[FR]_\w+$/) {
196 print "D- $line\n" if $verbose; 189 print "D- $line\n" if $verbose;
197 next; 190 next;
@@ -285,7 +278,11 @@ try_again:
285 print "Fn $line\n" if $verbose; 278 print "Fn $line\n" if $verbose;
286 next; 279 next;
287 } 280 }
288 if ($id =~ /NETSCAPE/) { 281 # These functions are still provided by OpenSSL
282 # and still used by the Python test suite,
283 # but intentionally undocumented because nothing
284 # else uses them according to tb@, Dec 3, 2021.
285 if ($id =~ /NETSCAPE_(?:CERT_SEQUENCE|SPKAC|SPKI)/) {
289 print "F- $line\n" if $verbose; 286 print "F- $line\n" if $verbose;
290 next; 287 next;
291 } 288 }