diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-02-16 19:54:10 -0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-02-16 19:54:10 -0800 |
commit | 3c93e511eed890d397b21fdb6040d252061268ea (patch) | |
tree | 7fa40778e253b080124564e7ed7ce184282a33e3 /docs/development/custom-vectors/cast5.rst | |
parent | f4c1429a705f0d77ea860f0a765602cb97a2d35a (diff) | |
parent | e1dbd3a3ca82d5f6aa3c5da6f7e29d0d487a9c61 (diff) | |
download | cryptography-3c93e511eed890d397b21fdb6040d252061268ea.tar.gz cryptography-3c93e511eed890d397b21fdb6040d252061268ea.tar.bz2 cryptography-3c93e511eed890d397b21fdb6040d252061268ea.zip |
Merge pull request #626 from reaperhulk/cast5-ctr-vectors
CAST5 CTR vectors
Diffstat (limited to 'docs/development/custom-vectors/cast5.rst')
-rw-r--r-- | docs/development/custom-vectors/cast5.rst | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/docs/development/custom-vectors/cast5.rst b/docs/development/custom-vectors/cast5.rst index 09b3bdb1..f5400270 100644 --- a/docs/development/custom-vectors/cast5.rst +++ b/docs/development/custom-vectors/cast5.rst @@ -1,10 +1,11 @@ CAST5 Vector Creation ===================== -This page documents the code that was used to generate the CAST5 CBC, CFB, and -OFB test vectors as well as the code used to verify them against another -implementation. For CAST5 the vectors were generated using OpenSSL and verified -with Go. +This page documents the code that was used to generate the CAST5 CBC, CFB, OFB, +and CTR test vectors as well as the code used to verify them against another +implementation. For CAST5 the CBC, CFB, and OFB vectors were generated using +OpenSSL and the CTR vectors were generated using Apple's CommonCrypto. All the +generated vectors were verified with Go. Creation -------- |