aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/testmgr.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/testmgr.c')
-rw-r--r--crypto/testmgr.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/crypto/testmgr.c b/crypto/testmgr.c
index d5e23a142a04..058ed5eb6620 100644
--- a/crypto/testmgr.c
+++ b/crypto/testmgr.c
@@ -3001,6 +3001,24 @@ static const struct alg_test_desc alg_test_descs[] = {
3001 } 3001 }
3002 } 3002 }
3003 }, { 3003 }, {
3004 .alg = "ecb(speck128)",
3005 .test = alg_test_skcipher,
3006 .suite = {
3007 .cipher = {
3008 .enc = __VECS(speck128_enc_tv_template),
3009 .dec = __VECS(speck128_dec_tv_template)
3010 }
3011 }
3012 }, {
3013 .alg = "ecb(speck64)",
3014 .test = alg_test_skcipher,
3015 .suite = {
3016 .cipher = {
3017 .enc = __VECS(speck64_enc_tv_template),
3018 .dec = __VECS(speck64_dec_tv_template)
3019 }
3020 }
3021 }, {
3004 .alg = "ecb(tea)", 3022 .alg = "ecb(tea)",
3005 .test = alg_test_skcipher, 3023 .test = alg_test_skcipher,
3006 .suite = { 3024 .suite = {