aboutsummaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2016-01-08 01:25:36 +0000
committerDr. Stephen Henson <steve@openssl.org>2016-01-09 21:52:03 +0000
commita9988d54f6e49db46671c3b90b7832c1c923b2b1 (patch)
treec856b1d46c149dfadd5ec3bd3eb8f0598123e93b /util
parent2854c7989db45d528b7e9b1f9f7f40112c316933 (diff)
downloadopenssl-a9988d54f6e49db46671c3b90b7832c1c923b2b1.tar.gz
remove hard coded algorithms
Reviewed-by: Viktor Dukhovni <viktor@openssl.org>
Diffstat (limited to 'util')
-rwxr-xr-xutil/mkdef.pl15
1 files changed, 0 insertions, 15 deletions
diff --git a/util/mkdef.pl b/util/mkdef.pl
index c0ca92cf21..c21b46f874 100755
--- a/util/mkdef.pl
+++ b/util/mkdef.pl
@@ -912,21 +912,6 @@ sub do_defs
$p = $plats;
$a = $algs;
- $a .= ",BF" if($s =~ /EVP_bf/);
- $a .= ",CAST" if($s =~ /EVP_cast/);
- $a .= ",DES" if($s =~ /EVP_des/);
- $a .= ",DSA" if($s =~ /EVP_dss/);
- $a .= ",IDEA" if($s =~ /EVP_idea/);
- $a .= ",MD2" if($s =~ /EVP_md2/);
- $a .= ",MD4" if($s =~ /EVP_md4/);
- $a .= ",MD5" if($s =~ /EVP_md5/);
- $a .= ",RC2" if($s =~ /EVP_rc2/);
- $a .= ",RC4" if($s =~ /EVP_rc4/);
- $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 =~ /RSAPrivateKey/);
- $a .= ",RSA" if($s =~ /SSLv23?_((client|server)_)?method/);
$platform{$s} =
&reduce_platforms((defined($platform{$s})?$platform{$s}.',':"").$p);