From: Richard Levitte Date: Fri, 25 Mar 2011 08:48:26 +0000 (+0000) Subject: * fips/fipsalgtest.pl: Test the testvectors for all the CMAC ciphers X-Git-Tag: OpenSSL-fips-2_0-rc1~640 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d8ba2a42e9bca32696fc2f7be4f04e7b4f54f0c6;p=openssl * fips/fipsalgtest.pl: Test the testvectors for all the CMAC ciphers we support. --- diff --git a/fips/fipsalgtest.pl b/fips/fipsalgtest.pl index 24467e0153..18e801f6a4 100644 --- a/fips/fipsalgtest.pl +++ b/fips/fipsalgtest.pl @@ -101,8 +101,14 @@ my @fips_cmac_test_list = ( "CMAC", - [ "CMACGenAES256", "fips_cmactest -g" ], - [ "CMACVerAES256", "fips_cmactest -v" ] + [ "CMACGenAES128", "fips_cmactest -a aes128 -g" ], + [ "CMACVerAES128", "fips_cmactest -a aes128 -v" ], + [ "CMACGenAES192", "fips_cmactest -a aes192 -g" ], + [ "CMACVerAES192", "fips_cmactest -a aes192 -v" ], + [ "CMACGenAES256", "fips_cmactest -a aes256 -g" ], + [ "CMACVerAES256", "fips_cmactest -a aes256 -v" ], + [ "CMACGenTDES3", "fips_cmactest -a tdes3 -g" ], + [ "CMACVerTDES3", "fips_cmactest -a tdes3 -v" ], );