* fips/cmac/fips_cmactest.c: Some say TDEA, others say TDES. Support

both names.
This commit is contained in:
Richard Levitte 2011-03-25 08:44:37 +00:00
parent d15467d582
commit af267e4315

View File

@ -130,7 +130,7 @@ int main(int argc, char **argv)
cipher = EVP_aes_192_cbc();
else if (!strcmp(p, "aes256"))
cipher = EVP_aes_256_cbc();
else if (!strcmp(p, "tdea3"))
else if (!strcmp(p, "tdea3") || !strcmp(p, "tdes3"))
{
cipher = EVP_des_ede3_cbc();
Klen_counts_keys = 1;