diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2017-06-04 11:09:03 -1000 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2017-06-04 17:09:03 -0400 |
commit | 66dcd38fadc9ec8785de19aedc698cade93cbe26 (patch) | |
tree | bfc9d86afe796c9dc488cc8672f5e0913246618d /docs | |
parent | 3ff51d49aa5362e6e870380b3fa7b0fdf17a18ce (diff) | |
download | cryptography-66dcd38fadc9ec8785de19aedc698cade93cbe26.tar.gz cryptography-66dcd38fadc9ec8785de19aedc698cade93cbe26.tar.bz2 cryptography-66dcd38fadc9ec8785de19aedc698cade93cbe26.zip |
add ChaCha20Poly1305 test vectors from OpenSSL/RFC7539 (#3673)
* add ChaCha20Poly1305 test vectors from OpenSSL/RFC7539
* add the boringssl tests as well
* highlight the lines
Diffstat (limited to 'docs')
-rw-r--r-- | docs/development/test-vectors.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/development/test-vectors.rst b/docs/development/test-vectors.rst index a1d8b11e..84aa30d2 100644 --- a/docs/development/test-vectors.rst +++ b/docs/development/test-vectors.rst @@ -419,6 +419,8 @@ Symmetric ciphers * CAST5 (ECB) from :rfc:`2144`. * CAST5 (CBC, CFB, OFB) generated by this project. See: :doc:`/development/custom-vectors/cast5` +* ChaCha20Poly1305 from :rfc:`7539`, `OpenSSL's evpciph.txt`_, and the + `BoringSSL ChaCha20Poly1305 tests`_. * IDEA (ECB) from the `NESSIE IDEA vectors`_ created by `NESSIE`_. * IDEA (CBC, CFB, OFB) generated by this project. See: :doc:`/development/custom-vectors/idea` @@ -476,6 +478,8 @@ header format (substituting the correct information): .. _`Camellia page`: https://info.isl.ntt.co.jp/crypt/eng/camellia/ .. _`CRYPTREC`: https://www.cryptrec.go.jp .. _`OpenSSL's test vectors`: https://github.com/openssl/openssl/blob/97cf1f6c2854a3a955fd7dd3a1f113deba00c9ef/crypto/evp/evptests.txt#L232 +.. _`OpenSSL's evpciph.txt`: https://github.com/openssl/openssl/blob/5a7bc0be97dee9ac715897fe8180a08e211bc6ea/test/evpciph.txt#L2362-L2403 +.. _`BoringSSL ChaCha20Poly1305 tests`: https://boringssl.googlesource.com/boringssl/+/2e2a226ac9201ac411a84b5e79ac3a7333d8e1c9/crypto/cipher_extra/test/chacha20_poly1305_tests.txt .. _`RIPEMD website`: https://homes.esat.kuleuven.be/~bosselae/ripemd160.html .. _`Whirlpool website`: http://www.larc.usp.br/~pbarreto/WhirlpoolPage.html .. _`draft RFC`: https://tools.ietf.org/html/draft-josefsson-scrypt-kdf-01 |