summaryrefslogtreecommitdiff
path: root/util/mkdef.pl
diff options
context:
space:
mode:
authorbodo <bodo>2011-10-19 08:59:51 +0000
committerbodo <bodo>2011-10-19 08:59:51 +0000
commita7247aae77cb3cb695a69293b0231b1830234cab (patch)
tree99e2c7d7dc27ce4baa43c3dade118ed1cfb2c7a5 /util/mkdef.pl
parent22c29f690a2a434b7472dac0affe846f70fd2135 (diff)
downloadopenssl-a7247aae77cb3cb695a69293b0231b1830234cab.tar.gz
Fix warnings.
Also, use the common Configure mechanism for enabling/disabling the 64-bit ECC code.
Diffstat (limited to 'util/mkdef.pl')
-rwxr-xr-xutil/mkdef.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/util/mkdef.pl b/util/mkdef.pl
index 696365d08..807e80c2b 100755
--- a/util/mkdef.pl
+++ b/util/mkdef.pl
@@ -87,8 +87,8 @@ my @known_algorithms = ( "RC2", "RC4", "RC5", "IDEA", "DES", "BF",
"SHA256", "SHA512", "RIPEMD",
"MDC2", "WHIRLPOOL", "RSA", "DSA", "DH", "EC", "ECDH", "ECDSA", "EC2M",
"HMAC", "AES", "CAMELLIA", "SEED", "GOST",
- # ECP_NISTP224
- "EC_NISTP224_64_GCC_128",
+ # EC_NISTP_64_GCC_128
+ "EC_NISTP_64_GCC_128",
# Envelope "algorithms"
"EVP", "X509", "ASN1_TYPEDEFS",
# Helper "algorithms"
@@ -1189,7 +1189,7 @@ sub is_valid
if ($keyword eq "TLSEXT" && $no_tlsext) { return 0; }
if ($keyword eq "PSK" && $no_psk) { return 0; }
if ($keyword eq "CMS" && $no_cms) { return 0; }
- if ($keyword eq "EC_NISTP224_64_GCC_128" && $no_nistp_gcc)
+ if ($keyword eq "EC_NISTP_64_GCC_128" && $no_nistp_gcc)
{ return 0; }
if ($keyword eq "EC2M" && $no_ec2m) { return 0; }
if ($keyword eq "NEXTPROTONEG" && $no_nextprotoneg) { return 0; }