summaryrefslogtreecommitdiffstats
path: root/fips
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2011-11-11 19:01:25 +0000
committerDr. Stephen Henson <steve@openssl.org>2011-11-11 19:01:25 +0000
commit33387d4a881882859ecd783a21f28de322f3ab2b (patch)
treebaa8b16e1c34bd930a91d6af8fc867f1ad89e643 /fips
parent60d4e99cf36dae0693da9be0db9b7c9e7a0c5202 (diff)
portability fix for some perl versions
Diffstat (limited to 'fips')
-rw-r--r--fips/fipsalgtest.pl26
1 files changed, 13 insertions, 13 deletions
diff --git a/fips/fipsalgtest.pl b/fips/fipsalgtest.pl
index cd6ba8c116..30cd9c0ebd 100644
--- a/fips/fipsalgtest.pl
+++ b/fips/fipsalgtest.pl
@@ -513,29 +513,29 @@ my $mkcmd = "mkdir";
my $cmpall = 0;
my %fips_enabled = (
- dsa => 1,
- dsa2 => 2,
+ "dsa" => 1,
+ "dsa2" => 2,
"dsa-pqgver" => 2,
- ecdsa => 2,
- rsa => 1,
+ "ecdsa" => 2,
+ "rsa" => 1,
"rsa-pss0" => 2,
"rsa-pss62" => 1,
- sha => 1,
- hmac => 1,
- cmac => 2,
+ "sha" => 1,
+ "hmac" => 1,
+ "cmac" => 2,
"rand-aes" => 1,
"rand-des2" => 0,
- aes => 1,
+ "aes" => 1,
"aes-cfb1" => 2,
- des3 => 1,
+ "des3" => 1,
"des3-cfb1" => 2,
- drbg => 2,
+ "drbg" => 2,
"aes-ccm" => 2,
"aes-xts" => 2,
"aes-gcm" => 2,
- dh => 0,
- ecdh => 2,
- v2 => 1,
+ "dh" => 0,
+ "ecdh" => 2,
+ "v2" => 1,
);
foreach (@ARGV) {