summaryrefslogtreecommitdiff
path: root/crypto/testmgr.c
diff options
context:
space:
mode:
authorEric Biggers <ebiggers@google.com>2018-02-14 10:42:23 -0800
committerHerbert Xu <herbert@gondor.apana.org.au>2018-02-22 22:16:56 +0800
commitc3fdb33ea19c16247682306359d045560915d037 (patch)
treeec93ba69754e9e29192f1e38369fa17917dda0fc /crypto/testmgr.c
parent8935aab260920264def1fc9053f59b82a628d637 (diff)
downloadlinux-crypto-c3fdb33ea19c16247682306359d045560915d037.tar.gz
linux-crypto-c3fdb33ea19c16247682306359d045560915d037.zip
crypto: speck - add test vectors for Speck64-XTS
Add test vectors for Speck64-XTS, generated in userspace using C code. The inputs were borrowed from the AES-XTS test vectors, with key lengths adjusted. xts-speck64-neon passes these tests. However, they aren't currently applicable for the generic XTS template, as that only supports a 128-bit block size. Signed-off-by: Eric Biggers <ebiggers@google.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/testmgr.c')
-rw-r--r--crypto/testmgr.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/crypto/testmgr.c b/crypto/testmgr.c
index e011a347..9f82e7bc 100644
--- a/crypto/testmgr.c
+++ b/crypto/testmgr.c
@@ -3585,6 +3585,15 @@ static const struct alg_test_desc alg_test_descs[] = {
}
}
}, {
+ .alg = "xts(speck64)",
+ .test = alg_test_skcipher,
+ .suite = {
+ .cipher = {
+ .enc = __VECS(speck64_xts_enc_tv_template),
+ .dec = __VECS(speck64_xts_dec_tv_template)
+ }
+ }
+ }, {
.alg = "xts(twofish)",
.test = alg_test_skcipher,
.suite = {