summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2011-05-13 12:38:02 +0000
committerDr. Stephen Henson <steve@openssl.org>2011-05-13 12:38:02 +0000
commit64ca6ac26bd88c92c3b1cd459c0dfa08d256ea24 (patch)
tree1503f8f46a24e08e40980fbfed7e448f6a73dc24 /util
parent4fe4c00eca07c02a8700ca6a2af6b610b02b50f3 (diff)
Recognise NO_NISTP224-64-GCC-128
Diffstat (limited to 'util')
-rwxr-xr-xutil/mkdef.pl5
1 files changed, 4 insertions, 1 deletions
diff --git a/util/mkdef.pl b/util/mkdef.pl
index 7d2e3e12ac..f10a0c83e0 100755
--- a/util/mkdef.pl
+++ b/util/mkdef.pl
@@ -131,7 +131,7 @@ my $no_rsa; my $no_dsa; my $no_dh; my $no_hmac=0; my $no_aes; my $no_krb5;
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_srp; my $no_ssl2;
+my $no_jpake; my $no_srp; my $no_ssl2; my $no_nistp_gcc;
my $zlib;
@@ -219,6 +219,7 @@ foreach (@ARGV, split(/ /, $options))
elsif (/^no-rfc3779$/) { $no_rfc3779=1; }
elsif (/^no-tlsext$/) { $no_tlsext=1; }
elsif (/^no-cms$/) { $no_cms=1; }
+ elsif (/^no-nistp224-64-gcc-128$/) { $no_nistp_gcc=1; }
elsif (/^no-ssl2$/) { $no_ssl2=1; }
elsif (/^no-capieng$/) { $no_capieng=1; }
elsif (/^no-jpake$/) { $no_jpake=1; }
@@ -1178,6 +1179,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 "SSL2" && $no_ssl2) { return 0; }
if ($keyword eq "CAPIENG" && $no_capieng) { return 0; }
if ($keyword eq "JPAKE" && $no_jpake) { return 0; }