aboutsummaryrefslogtreecommitdiffstats
path: root/util/mkdef.pl
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2011-05-13 12:35:05 +0000
committerDr. Stephen Henson <steve@openssl.org>2011-05-13 12:35:05 +0000
commita75829deefe25b289995a8fd977537ef3cca0d31 (patch)
treebbcf67634b2fc7ad49a7ffd479f2cd702d6a483b /util/mkdef.pl
parentd39c4951306bf7cc805a87e9cc81a522c7b863e0 (diff)
downloadopenssl-a75829deefe25b289995a8fd977537ef3cca0d31.tar.gz
Recognise NO_NISTP224-64-GCC-128
Diffstat (limited to 'util/mkdef.pl')
-rwxr-xr-xutil/mkdef.pl6
1 files changed, 5 insertions, 1 deletions
diff --git a/util/mkdef.pl b/util/mkdef.pl
index aefc6d624c..8d3f97060e 100755
--- a/util/mkdef.pl
+++ b/util/mkdef.pl
@@ -134,7 +134,7 @@ my $no_ec; my $no_ecdsa; my $no_ecdh; my $no_engine; my $no_hw;
my $no_fp_api; my $no_static_engine=1; my $no_gmp; my $no_deprecated;
my $no_rfc3779; my $no_psk; my $no_tlsext; my $no_cms; my $no_capieng;
my $no_jpake; my $no_ssl2; my $no_ec2m; my $no_nextprotoneg;
-my $no_srp;
+my $no_srp; my $no_nistp_gcc;
my $fips;
@@ -226,6 +226,8 @@ foreach (@ARGV, split(/ /, $options))
elsif (/^no-tlsext$/) { $no_tlsext=1; }
elsif (/^no-cms$/) { $no_cms=1; }
elsif (/^no-ec2m$/) { $no_ec2m=1; }
+ elsif (/^no-nistp224-64-gcc-128$/) { $no_nistp_gcc=1; }
+ elsif (/^no-ec2m$/) { $no_nistp_gcc=1; }
elsif (/^no-nextprotoneg$/) { $no_nextprotoneg=1; }
elsif (/^no-ssl2$/) { $no_ssl2=1; }
elsif (/^no-capieng$/) { $no_capieng=1; }
@@ -1184,6 +1186,8 @@ 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 "NISTP224-64-GCC-128" && $no_nistp_gcc)
+ { return 0; }
if ($keyword eq "EC2M" && $no_ec2m) { return 0; }
if ($keyword eq "NEXTPROTONEG" && $no_nextprotoneg) { return 0; }
if ($keyword eq "SSL2" && $no_ssl2) { return 0; }