diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-11-28 13:23:34 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-11-28 13:23:34 -0600 |
commit | 5dcdd10b0ce56da1d7088d80b4e24c66e5407e35 (patch) | |
tree | fb8eb099222e2fd33ead0c090808a6277d94f2ec /docs/development/test-vectors.rst | |
parent | 7f7fab8f2bb48056149e2717f440b13c3ce5fcf8 (diff) | |
parent | 6c83cc6d867ee8060b4826ca160770fb6968d784 (diff) | |
download | cryptography-5dcdd10b0ce56da1d7088d80b4e24c66e5407e35.tar.gz cryptography-5dcdd10b0ce56da1d7088d80b4e24c66e5407e35.tar.bz2 cryptography-5dcdd10b0ce56da1d7088d80b4e24c66e5407e35.zip |
Merge pull request #2495 from eakret/master
Add support for 160 bit ARC4 keys
Diffstat (limited to 'docs/development/test-vectors.rst')
-rw-r--r-- | docs/development/test-vectors.rst | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/development/test-vectors.rst b/docs/development/test-vectors.rst index 0b249ccb..2f49047d 100644 --- a/docs/development/test-vectors.rst +++ b/docs/development/test-vectors.rst @@ -346,7 +346,9 @@ Symmetric ciphers * AES (CBC, CFB, ECB, GCM, OFB) from `NIST CAVP`_. * AES CTR from :rfc:`3686`. * 3DES (CBC, CFB, ECB, OFB) from `NIST CAVP`_. -* ARC4 from :rfc:`6229`. +* ARC4 (KEY-LENGTH: 40, 56, 64, 80, 128, 192, 256) from :rfc:`6229`. +* ARC4 (KEY-LENGTH: 160) generated by this project. + See: :doc:`/development/custom-vectors/arc4` * Blowfish (CBC, CFB, ECB, OFB) from `Bruce Schneier's vectors`_. * Camellia (ECB) from NTT's `Camellia page`_ as linked by `CRYPTREC`_. * Camellia (CBC, CFB, OFB) from `OpenSSL's test vectors`_. @@ -385,6 +387,7 @@ Custom Symmetric Vectors .. toctree:: :maxdepth: 1 + custom-vectors/arc4 custom-vectors/cast5 custom-vectors/idea custom-vectors/seed |