aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/tcrypt.c
diff options
context:
space:
mode:
authorGilad Ben-Yossef <gilad@benyossef.com>2018-03-06 09:44:43 +0000
committerHerbert Xu <herbert@gondor.apana.org.au>2018-03-16 23:35:50 +0800
commitcd83a8a7c3eaffe985c6c8913c84da06a59fbe5d (patch)
tree5c738963df8604535c528a6e4d90ea89118ef3e9 /crypto/tcrypt.c
parentcrypto: sm4 - introduce SM4 symmetric cipher algorithm (diff)
downloadlinux-dev-cd83a8a7c3eaffe985c6c8913c84da06a59fbe5d.tar.xz
linux-dev-cd83a8a7c3eaffe985c6c8913c84da06a59fbe5d.zip
crypto: testmgr - introduce SM4 tests
Add testmgr tests for the newly introduced SM4 ECB symmetric cipher. Signed-off-by: Gilad Ben-Yossef <gilad@benyossef.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/tcrypt.c')
-rw-r--r--crypto/tcrypt.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/crypto/tcrypt.c b/crypto/tcrypt.c
index 14213a096fd2..51fe7c8744ae 100644
--- a/crypto/tcrypt.c
+++ b/crypto/tcrypt.c
@@ -1983,6 +1983,9 @@ static int do_test(const char *alg, u32 type, u32 mask, int m)
case 190:
ret += tcrypt_test("authenc(hmac(sha512),cbc(des3_ede))");
break;
+ case 191:
+ ret += tcrypt_test("ecb(sm4)");
+ break;
case 200:
test_cipher_speed("ecb(aes)", ENCRYPT, sec, NULL, 0,
speed_template_16_24_32);