diff options
author | Martin Willi <martin@strongswan.org> | 2015-06-01 14:44:03 +0300 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2015-06-04 10:04:54 +0300 |
commit | 5900758df19afa91026ad61f60a65164a41aac48 (patch) | |
tree | ffa4410e25e3d221f56af365d3fa0407c09bc71a /crypto/testmgr.c | |
parent | 4db4ad26096c4c1e579f9a957ca7752fe02bf7b4 (diff) | |
download | linux-5900758df19afa91026ad61f60a65164a41aac48.tar.xz |
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>
Diffstat (limited to 'crypto/testmgr.c')
-rw-r--r-- | crypto/testmgr.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/crypto/testmgr.c b/crypto/testmgr.c index 915a9effd838..ccd19cfee995 100644 --- a/crypto/testmgr.c +++ b/crypto/testmgr.c @@ -3402,6 +3402,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, .suite = { |