summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-01-07 23:28:15 +0100
committerRichard Levitte <levitte@openssl.org>2016-01-08 01:18:55 +0100
commit0c1badc8af7b92170fbb23be8119072facfdad07 (patch)
treee3c04350fb916d1ad6c234bb2ea58cf9ab6ae2e1 /util
parent21fa90b242b2078bfee324188227de8d02376e68 (diff)
Remove all remaining traces if PEM_Seal
Reviewed-by: Viktor Dukhovni <viktor@openssl.org>
Diffstat (limited to 'util')
-rwxr-xr-xutil/bat.sh3
-rwxr-xr-xutil/mk1mf.pl3
-rwxr-xr-xutil/mkdef.pl1
3 files changed, 2 insertions, 5 deletions
diff --git a/util/bat.sh b/util/bat.sh
index dee56d74a3..da404a7c2d 100755
--- a/util/bat.sh
+++ b/util/bat.sh
@@ -99,8 +99,7 @@ sub var_add
@a=grep(!/(^md5)|(_md5$)/,@a) if $no_md5;
@a=grep(!/(^d2i_r_)|(^i2d_r_)/,@a) if $no_rsa;
- @a=grep(!/(^p_open$)|(^p_seal$)/,@a) if $no_rsa;
- @a=grep(!/(^pem_seal$)/,@a) if $no_rsa;
+ @a=grep(!/(^p_open$)/,@a) if $no_rsa;
@a=grep(!/(m_dss$)|(m_dss1$)/,@a) if $no_dsa;
@a=grep(!/(^d2i_s_)|(^i2d_s_)|(_dsap$)/,@a) if $no_dsa;
diff --git a/util/mk1mf.pl b/util/mk1mf.pl
index 491a1bb276..f4148ff7cb 100755
--- a/util/mk1mf.pl
+++ b/util/mk1mf.pl
@@ -1077,8 +1077,7 @@ sub var_add
@a=grep(!/(rmd)|(ripemd)/,@a) if $no_ripemd;
@a=grep(!/(^d2i_r_)|(^i2d_r_)/,@a) if $no_rsa;
- @a=grep(!/(^p_open$)|(^p_seal$)/,@a) if $no_rsa;
- @a=grep(!/(^pem_seal$)/,@a) if $no_rsa;
+ @a=grep(!/(^p_open$)/,@a) if $no_rsa;
@a=grep(!/(m_dss$)|(m_dss1$)/,@a) if $no_dsa;
@a=grep(!/(^d2i_s_)|(^i2d_s_)|(_dsap$)/,@a) if $no_dsa;
diff --git a/util/mkdef.pl b/util/mkdef.pl
index 08dacf2661..fd36a0d7da 100755
--- a/util/mkdef.pl
+++ b/util/mkdef.pl
@@ -980,7 +980,6 @@ sub do_defs
$a .= ",RC5" if($s =~ /EVP_rc5/);
$a .= ",RMD160" if($s =~ /EVP_ripemd/);
$a .= ",RSA" if($s =~ /EVP_(Open|Seal)(Final|Init)/);
- $a .= ",RSA" if($s =~ /PEM_Seal(Final|Init|Update)/);
$a .= ",RSA" if($s =~ /RSAPrivateKey/);
$a .= ",RSA" if($s =~ /SSLv23?_((client|server)_)?method/);