crypto: testmgr - Add draft-ietf-ipsecme-chacha20-poly1305 test vector

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>
This commit is contained in:
Martin Willi
2015-06-01 13:44:03 +02:00
committed by Herbert Xu
parent 4db4ad2609
commit 5900758df1
2 changed files with 194 additions and 0 deletions

View File

@@ -3401,6 +3401,21 @@ static const struct alg_test_desc alg_test_descs[] = {
},
}
}
}, {
.alg = "rfc7539esp(chacha20,poly1305)",
.test = alg_test_aead,
.suite = {
.aead = {
.enc = {
.vecs = rfc7539esp_enc_tv_template,
.count = RFC7539ESP_ENC_TEST_VECTORS
},
.dec = {
.vecs = rfc7539esp_dec_tv_template,
.count = RFC7539ESP_DEC_TEST_VECTORS
},
}
}
}, {
.alg = "rmd128",
.test = alg_test_hash,