projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0b2a155
)
crypto: tcrypt - add lrw(twofish) tests
author
Jussi Kivilinna
<jussi.kivilinna@mbnet.fi>
Tue, 18 Oct 2011 10:32:56 +0000
(13:32 +0300)
committer
Herbert Xu
<herbert@gondor.apana.org.au>
Wed, 9 Nov 2011 03:53:32 +0000
(11:53 +0800)
Signed-off-by: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
crypto/tcrypt.c
patch
|
blob
|
history
diff --git
a/crypto/tcrypt.c
b/crypto/tcrypt.c
index 9a9e170035d13c4621e72c953d21d5aded22cb30..01203833ccc297c1c1a0a1090d1af8c338b536a4 100644
(file)
--- a/
crypto/tcrypt.c
+++ b/
crypto/tcrypt.c
@@
-990,6
+990,7
@@
static int do_test(int m)
ret += tcrypt_test("ecb(twofish)");
ret += tcrypt_test("cbc(twofish)");
ret += tcrypt_test("ctr(twofish)");
+ ret += tcrypt_test("lrw(twofish)");
break;
case 9:
@@
-1249,6
+1250,10
@@
static int do_test(int m)
speed_template_16_24_32);
test_cipher_speed("ctr(twofish)", DECRYPT, sec, NULL, 0,
speed_template_16_24_32);
+ test_cipher_speed("lrw(twofish)", ENCRYPT, sec, NULL, 0,
+ speed_template_32_40_48);
+ test_cipher_speed("lrw(twofish)", DECRYPT, sec, NULL, 0,
+ speed_template_32_40_48);
break;
case 203: