Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openssl/openssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2011-03-25 12:29:46 +0300
committerRichard Levitte <levitte@openssl.org>2011-03-25 12:29:46 +0300
commit30fafdebf34ba8823bc3e528e0a310fc0384b188 (patch)
tree7846e4e2203ba2e9c311d711e26442ee2d72f192 /Configure
parente775bbc46476b2808ce48eed598c874d8676340e (diff)
* Configure, crypto/ec/ec.h, crypto/ec/ecp_nistp224.c, util/mkdef.pl:
Have EC_NISTP224_64_GCC_128 treated like any algorithm, and have disabled by default. If we don't do it this way, it screws up libeay.num. * util/libeay.num: make update
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure3
1 files changed, 2 insertions, 1 deletions
diff --git a/Configure b/Configure
index ad3e51f01c..16fcadb600 100755
--- a/Configure
+++ b/Configure
@@ -696,6 +696,7 @@ my $fips=0;
# All of the following is disabled by default (RC5 was enabled before 0.9.8):
my %disabled = ( # "what" => "comment" [or special keyword "experimental"]
+ "ec-nistp224-64-gcc-218" => "default",
"gmp" => "default",
"jpake" => "experimental",
"md2" => "default",
@@ -1074,7 +1075,7 @@ foreach (sort (keys %disabled))
else
{
my ($ALGO, $algo);
- ($ALGO = $algo = $_) =~ tr/[a-z]/[A-Z]/;
+ ($ALGO = $algo = $_) =~ tr/[\-a-z]/[_A-Z]/;
if (/^asm$/ || /^err$/ || /^hw$/ || /^hw-/)
{