diff options
Diffstat (limited to 'crypto/tcrypt.c')
-rw-r--r-- | crypto/tcrypt.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/crypto/tcrypt.c b/crypto/tcrypt.c index de6435ea9bf8..18d489c8b935 100644 --- a/crypto/tcrypt.c +++ b/crypto/tcrypt.c | |||
@@ -955,6 +955,10 @@ static void do_test(void) | |||
955 | AES_LRW_ENC_TEST_VECTORS); | 955 | AES_LRW_ENC_TEST_VECTORS); |
956 | test_cipher("lrw(aes)", DECRYPT, aes_lrw_dec_tv_template, | 956 | test_cipher("lrw(aes)", DECRYPT, aes_lrw_dec_tv_template, |
957 | AES_LRW_DEC_TEST_VECTORS); | 957 | AES_LRW_DEC_TEST_VECTORS); |
958 | test_cipher("xts(aes)", ENCRYPT, aes_xts_enc_tv_template, | ||
959 | AES_XTS_ENC_TEST_VECTORS); | ||
960 | test_cipher("xts(aes)", DECRYPT, aes_xts_dec_tv_template, | ||
961 | AES_XTS_DEC_TEST_VECTORS); | ||
958 | 962 | ||
959 | //CAST5 | 963 | //CAST5 |
960 | test_cipher("ecb(cast5)", ENCRYPT, cast5_enc_tv_template, | 964 | test_cipher("ecb(cast5)", ENCRYPT, cast5_enc_tv_template, |
@@ -1138,6 +1142,10 @@ static void do_test(void) | |||
1138 | AES_LRW_ENC_TEST_VECTORS); | 1142 | AES_LRW_ENC_TEST_VECTORS); |
1139 | test_cipher("lrw(aes)", DECRYPT, aes_lrw_dec_tv_template, | 1143 | test_cipher("lrw(aes)", DECRYPT, aes_lrw_dec_tv_template, |
1140 | AES_LRW_DEC_TEST_VECTORS); | 1144 | AES_LRW_DEC_TEST_VECTORS); |
1145 | test_cipher("xts(aes)", ENCRYPT, aes_xts_enc_tv_template, | ||
1146 | AES_XTS_ENC_TEST_VECTORS); | ||
1147 | test_cipher("xts(aes)", DECRYPT, aes_xts_dec_tv_template, | ||
1148 | AES_XTS_DEC_TEST_VECTORS); | ||
1141 | break; | 1149 | break; |
1142 | 1150 | ||
1143 | case 11: | 1151 | case 11: |
@@ -1313,6 +1321,10 @@ static void do_test(void) | |||
1313 | aes_lrw_speed_template); | 1321 | aes_lrw_speed_template); |
1314 | test_cipher_speed("lrw(aes)", DECRYPT, sec, NULL, 0, | 1322 | test_cipher_speed("lrw(aes)", DECRYPT, sec, NULL, 0, |
1315 | aes_lrw_speed_template); | 1323 | aes_lrw_speed_template); |
1324 | test_cipher_speed("xts(aes)", ENCRYPT, sec, NULL, 0, | ||
1325 | aes_xts_speed_template); | ||
1326 | test_cipher_speed("xts(aes)", DECRYPT, sec, NULL, 0, | ||
1327 | aes_xts_speed_template); | ||
1316 | break; | 1328 | break; |
1317 | 1329 | ||
1318 | case 201: | 1330 | case 201: |