summaryrefslogtreecommitdiffstats
path: root/fips
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2009-04-19 14:04:55 +0000
committerDr. Stephen Henson <steve@openssl.org>2009-04-19 14:04:55 +0000
commit3c17fa3325177f9e63f26a8d48e88978fe6166f1 (patch)
treef0bc6e633be3cb106e522ad0052c2b89864feecd /fips
parente3424084a02ad0735bb74aaae0716869d9521aa8 (diff)
PQGVer support.
Diffstat (limited to 'fips')
-rw-r--r--fips/fipsalgtest.pl10
1 files changed, 9 insertions, 1 deletions
diff --git a/fips/fipsalgtest.pl b/fips/fipsalgtest.pl
index 63f0088a45..c0366149e7 100644
--- a/fips/fipsalgtest.pl
+++ b/fips/fipsalgtest.pl
@@ -19,6 +19,12 @@ my @fips_dsa_test_list = (
);
+my @fips_dsa_pqgver_test_list = (
+
+ [ "PQGVer", "fips_dssvs pqgver" ]
+
+);
+
# RSA tests
my @fips_rsa_test_list = (
@@ -360,6 +366,7 @@ my $list_tests = 0;
my %fips_enabled = (
dsa => 1,
+ "dsa-pqgver" => 0,
rsa => 1,
"rsa-pss0" => 0,
"rsa-pss62" => 1,
@@ -370,7 +377,7 @@ my %fips_enabled = (
aes => 1,
"aes-cfb1" => 0,
des3 => 1,
- "des3-cfb1" => 0
+ "des3-cfb1" => 0
);
foreach (@ARGV) {
@@ -436,6 +443,7 @@ foreach (@ARGV) {
my @fips_test_list;
push @fips_test_list, @fips_dsa_test_list if $fips_enabled{"dsa"};
+push @fips_test_list, @fips_dsa_pqgver_test_list if $fips_enabled{"dsa-pqgver"};
push @fips_test_list, @fips_rsa_test_list if $fips_enabled{"rsa"};
push @fips_test_list, @fips_rsa_pss0_test_list if $fips_enabled{"rsa-pss0"};
push @fips_test_list, @fips_rsa_pss62_test_list if $fips_enabled{"rsa-pss62"};