diff options
Diffstat (limited to 'crypto')
-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 7736a9f05aba..8f147bff0980 100644 --- a/crypto/tcrypt.c +++ b/crypto/tcrypt.c | |||
@@ -1297,6 +1297,18 @@ static int do_test(int m) | |||
1297 | speed_template_16_24_32); | 1297 | speed_template_16_24_32); |
1298 | test_cipher_speed("cbc(camellia)", DECRYPT, sec, NULL, 0, | 1298 | test_cipher_speed("cbc(camellia)", DECRYPT, sec, NULL, 0, |
1299 | speed_template_16_24_32); | 1299 | speed_template_16_24_32); |
1300 | test_cipher_speed("ctr(camellia)", ENCRYPT, sec, NULL, 0, | ||
1301 | speed_template_16_24_32); | ||
1302 | test_cipher_speed("ctr(camellia)", DECRYPT, sec, NULL, 0, | ||
1303 | speed_template_16_24_32); | ||
1304 | test_cipher_speed("lrw(camellia)", ENCRYPT, sec, NULL, 0, | ||
1305 | speed_template_32_40_48); | ||
1306 | test_cipher_speed("lrw(camellia)", DECRYPT, sec, NULL, 0, | ||
1307 | speed_template_32_40_48); | ||
1308 | test_cipher_speed("xts(camellia)", ENCRYPT, sec, NULL, 0, | ||
1309 | speed_template_32_48_64); | ||
1310 | test_cipher_speed("xts(camellia)", DECRYPT, sec, NULL, 0, | ||
1311 | speed_template_32_48_64); | ||
1300 | break; | 1312 | break; |
1301 | 1313 | ||
1302 | case 206: | 1314 | case 206: |