diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-02-15 23:03:51 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-02-16 19:34:44 -0600 |
commit | aee319fc9a384e3b75dad304ecebf5ca6aad7730 (patch) | |
tree | 019cdc74702dd3e7dfc3de428553aebbd34ccd5d | |
parent | 432b4cb67e11b5e9ea9fb22b8a39443e11ab7bc1 (diff) | |
download | cryptography-aee319fc9a384e3b75dad304ecebf5ca6aad7730.tar.gz cryptography-aee319fc9a384e3b75dad304ecebf5ca6aad7730.tar.bz2 cryptography-aee319fc9a384e3b75dad304ecebf5ca6aad7730.zip |
update docs to explain CTR generation source
-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..5d448dfa 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 of +the modes were verified with Go. Creation -------- |