mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
crypto: tcrypt - add more camellia tests
Add tests for CTR, LRW and XTS modes. Signed-off-by: Jussi Kivilinna <jussi.kivilinna@mbnet.fi> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
0840605eb4
commit
4de5933780
1 changed files with 12 additions and 0 deletions
|
@ -1297,6 +1297,18 @@ static int do_test(int m)
|
||||||
speed_template_16_24_32);
|
speed_template_16_24_32);
|
||||||
test_cipher_speed("cbc(camellia)", DECRYPT, sec, NULL, 0,
|
test_cipher_speed("cbc(camellia)", DECRYPT, sec, NULL, 0,
|
||||||
speed_template_16_24_32);
|
speed_template_16_24_32);
|
||||||
|
test_cipher_speed("ctr(camellia)", ENCRYPT, sec, NULL, 0,
|
||||||
|
speed_template_16_24_32);
|
||||||
|
test_cipher_speed("ctr(camellia)", DECRYPT, sec, NULL, 0,
|
||||||
|
speed_template_16_24_32);
|
||||||
|
test_cipher_speed("lrw(camellia)", ENCRYPT, sec, NULL, 0,
|
||||||
|
speed_template_32_40_48);
|
||||||
|
test_cipher_speed("lrw(camellia)", DECRYPT, sec, NULL, 0,
|
||||||
|
speed_template_32_40_48);
|
||||||
|
test_cipher_speed("xts(camellia)", ENCRYPT, sec, NULL, 0,
|
||||||
|
speed_template_32_48_64);
|
||||||
|
test_cipher_speed("xts(camellia)", DECRYPT, sec, NULL, 0,
|
||||||
|
speed_template_32_48_64);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 206:
|
case 206:
|
||||||
|
|
Loading…
Reference in a new issue