aboutsummaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
Diffstat (limited to 'crypto')
-rw-r--r--crypto/tcrypt.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/crypto/tcrypt.c b/crypto/tcrypt.c
index 72073ef4a06d..1ab8c017a011 100644
--- a/crypto/tcrypt.c
+++ b/crypto/tcrypt.c
@@ -1608,11 +1608,17 @@ static void do_test(void)
1608 test_hash("hmac(sha512)", hmac_sha512_tv_template, 1608 test_hash("hmac(sha512)", hmac_sha512_tv_template,
1609 HMAC_SHA512_TEST_VECTORS); 1609 HMAC_SHA512_TEST_VECTORS);
1610 break; 1610 break;
1611
1611 case 105: 1612 case 105:
1612 test_hash("hmac(sha224)", hmac_sha224_tv_template, 1613 test_hash("hmac(sha224)", hmac_sha224_tv_template,
1613 HMAC_SHA224_TEST_VECTORS); 1614 HMAC_SHA224_TEST_VECTORS);
1614 break; 1615 break;
1615 1616
1617 case 106:
1618 test_hash("xcbc(aes)", aes_xcbc128_tv_template,
1619 XCBC_AES_TEST_VECTORS);
1620 break;
1621
1616 case 200: 1622 case 200:
1617 test_cipher_speed("ecb(aes)", ENCRYPT, sec, NULL, 0, 1623 test_cipher_speed("ecb(aes)", ENCRYPT, sec, NULL, 0,
1618 aes_speed_template); 1624 aes_speed_template);