summaryrefslogtreecommitdiffstats
path: root/crypto/testmgr.c
diff options
context:
space:
mode:
authorMartin Willi2015-06-01 13:43:59 +0200
committerHerbert Xu2015-06-04 09:04:51 +0200
commiteee9dc6162c537641a9259ae595193fa3c68c96e (patch)
tree8eb5a24eaba51d85dcdb98c1ad5ff399d7aca895 /crypto/testmgr.c
parentcrypto: poly1305 - Add a generic Poly1305 authenticator implementation (diff)
downloadkernel-qcow2-linux-eee9dc6162c537641a9259ae595193fa3c68c96e.tar.gz
kernel-qcow2-linux-eee9dc6162c537641a9259ae595193fa3c68c96e.tar.xz
kernel-qcow2-linux-eee9dc6162c537641a9259ae595193fa3c68c96e.zip
crypto: testmgr - Add Poly1305 test vectors from RFC7539
Signed-off-by: Martin Willi <martin@strongswan.org> Acked-by: Steffen Klassert <steffen.klassert@secunet.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 abd09c2489fa..faf93a6696e2 100644
--- a/crypto/testmgr.c
+++ b/crypto/testmgr.c
@@ -3315,6 +3315,15 @@ static const struct alg_test_desc alg_test_descs[] = {
}
}
}, {
+ .alg = "poly1305",
+ .test = alg_test_hash,
+ .suite = {
+ .hash = {
+ .vecs = poly1305_tv_template,
+ .count = POLY1305_TEST_VECTORS
+ }
+ }
+ }, {
.alg = "rfc3686(ctr(aes))",
.test = alg_test_skcipher,
.fips_allowed = 1,