summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>2000-05-15 19:20:10 +0000
committerUlf Möller <ulf@openssl.org>2000-05-15 19:20:10 +0000
commitc22e4b19e69c18e5d99bc29c8321b3fde6b5570c (patch)
tree362726f5903e3b71c57af64fbb11686bd7e84f4c /util
parent991f0706d874c15fed9fd9e6490c4ecb89ae3cf6 (diff)
downloadopenssl-new-c22e4b19e69c18e5d99bc29c8321b3fde6b5570c.tar.gz
Missing cases when no_rsa is defined
Submitted by: Zeroknowledge
Diffstat (limited to 'util')
-rwxr-xr-xutil/mkdef.pl31
1 files changed, 22 insertions, 9 deletions
diff --git a/util/mkdef.pl b/util/mkdef.pl
index 57c3124324..9f5fba9146 100755
--- a/util/mkdef.pl
+++ b/util/mkdef.pl
@@ -102,10 +102,10 @@ $crypto.=" crypto/dsa/dsa.h" unless $no_dsa;
$crypto.=" crypto/dh/dh.h" unless $no_dh;
$crypto.=" crypto/hmac/hmac.h" unless $no_hmac;
-$crypto.=" crypto/dso/dso.h";
$crypto.=" crypto/stack/stack.h";
$crypto.=" crypto/buffer/buffer.h";
$crypto.=" crypto/bio/bio.h";
+$crypto.=" crypto/dso/dso.h";
$crypto.=" crypto/lhash/lhash.h";
$crypto.=" crypto/conf/conf.h";
$crypto.=" crypto/txt_db/txt_db.h";
@@ -296,18 +296,26 @@ sub do_defs
$funcs{"i2d_ASN1_SET_OF_${1}"} = 1;
} elsif (/^DECLARE_PEM_rw\s*\(\s*(\w*)\s*,/ ||
/^DECLARE_PEM_rw_cb\s*\(\s*(\w*)\s*,/ ) {
- if($W32) {
- $funcs{"PEM_read_${1}"} = 1;
- $funcs{"PEM_write_${1}"} = 1;
+ if (!($no_rsa && ($1 eq "RSAPrivateKey" ||
+ $1 eq "RSAPublicKey" ||
+ $1 eq "RSA_PUBKEY"))) {
+ if($W32) {
+ $funcs{"PEM_read_${1}"} = 1;
+ $funcs{"PEM_write_${1}"} = 1;
+ }
+ $funcs{"PEM_read_bio_${1}"} = 1;
+ $funcs{"PEM_write_bio_${1}"} = 1;
}
- $funcs{"PEM_read_bio_${1}"} = 1;
- $funcs{"PEM_write_bio_${1}"} = 1;
} elsif (/^DECLARE_PEM_write\s*\(\s*(\w*)\s*,/ ||
/^DECLARE_PEM_write_cb\s*\(\s*(\w*)\s*,/ ) {
- if($W32) {
- $funcs{"PEM_write_${1}"} = 1;
+ if (!($no_rsa && ($1 eq "RSAPrivateKey" ||
+ $1 eq "RSAPublicKey" ||
+ $1 eq "RSA_PUBKEY"))) {
+ if($W32) {
+ $funcs{"PEM_write_${1}"} = 1;
+ }
+ $funcs{"PEM_write_bio_${1}"} = 1;
}
- $funcs{"PEM_write_bio_${1}"} = 1;
} elsif (/^DECLARE_PEM_read\s*\(\s*(\w*)\s*,/ ||
/^DECLARE_PEM_read_cb\s*\(\s*(\w*)\s*,/ ) {
if($W32) {
@@ -368,6 +376,11 @@ sub do_defs
next if(/EVP_rc5/ and $no_rc5);
next if(/EVP_ripemd/ and $no_ripemd);
next if(/EVP_sha/ and $no_sha);
+ next if(/EVP_(Open|Seal)(Final|Init)/ and $no_rsa);
+ next if(/PEM_Seal(Final|Init|Update)/ and $no_rsa);
+ next if(/RSAPrivateKey/ and $no_rsa);
+ next if(/SSLv23?_((client|server)_)?method/ and $no_rsa);
+
if (/\(\*(\w*)\([^\)]+/) {
$funcs{$1} = 1;
} elsif (/\w+\W+(\w+)\W*\(\s*\)$/s) {