diff options
Diffstat (limited to 'docs/development/custom-vectors/cast5.rst')
-rw-r--r-- | docs/development/custom-vectors/cast5.rst | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/development/custom-vectors/cast5.rst b/docs/development/custom-vectors/cast5.rst index 98c5ba75..f045ec1b 100644 --- a/docs/development/custom-vectors/cast5.rst +++ b/docs/development/custom-vectors/cast5.rst @@ -3,15 +3,15 @@ CAST5 vector creation 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. +implementation. 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 -------- ``cryptography`` was modified to support CAST5 in CBC, CFB, and OFB modes. Then -the following python script was run to generate the vector files. +the following Python script was run to generate the vector files. .. literalinclude:: /development/custom-vectors/cast5/generate_cast5.py @@ -21,7 +21,7 @@ Download link: :download:`generate_cast5.py </development/custom-vectors/cast5/g Verification ------------ -The following go code was used to verify the vectors. +The following Go code was used to verify the vectors. .. literalinclude:: /development/custom-vectors/cast5/verify_cast5.go :language: go |