summary refs log tree commit diff
path: root/crypto/testmgr.c
diff options
context:
space:
mode:
authorJussi Kivilinna <jussi.kivilinna@mbnet.fi>2011-10-18 13:33:33 +0300
committerHerbert Xu <herbert@gondor.apana.org.au>2011-11-09 11:57:56 +0800
commitaed265b9fef4a6389e81b98b5c5eb5cd80ef5ead (patch)
treeafdfa814c981e20cfb6da75f04943e2b7cf94f43 /crypto/testmgr.c
parent5209c07ac3601cfdbe2edff016e80ad93cee8dbc (diff)
downloadlinux-aed265b9fef4a6389e81b98b5c5eb5cd80ef5ead.tar.gz
crypto: testmgr - add xts(twofish) test vectors
Add test vectors for xts(twofish). These are generated from xts(twofish) test vectors.

Signed-off-by: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/testmgr.c')
-rw-r--r--crypto/testmgr.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/crypto/testmgr.c b/crypto/testmgr.c
index 5e349a6bc98a..01553a6754b7 100644
--- a/crypto/testmgr.c
+++ b/crypto/testmgr.c
@@ -2589,6 +2589,21 @@ static const struct alg_test_desc alg_test_descs[] = {
 			}
 		}
 	}, {
+		.alg = "xts(twofish)",
+		.test = alg_test_skcipher,
+		.suite = {
+			.cipher = {
+				.enc = {
+					.vecs = tf_xts_enc_tv_template,
+					.count = TF_XTS_ENC_TEST_VECTORS
+				},
+				.dec = {
+					.vecs = tf_xts_dec_tv_template,
+					.count = TF_XTS_DEC_TEST_VECTORS
+				}
+			}
+		}
+	}, {
 		.alg = "zlib",
 		.test = alg_test_pcomp,
 		.suite = {