aboutsummaryrefslogtreecommitdiffstats
path: root/docs/development/custom-vectors/cast5.rst
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2014-04-09 11:21:09 -0500
committerPaul Kehrer <paul.l.kehrer@gmail.com>2014-04-09 11:21:09 -0500
commit36b15c3f7c0d417978bd65df2526092b05df4364 (patch)
tree4378cee22ea86ae112d8890ab89bea5918e3023e /docs/development/custom-vectors/cast5.rst
parentfae681c86a71a478b78dd835353df13ece6fd4fc (diff)
downloadcryptography-36b15c3f7c0d417978bd65df2526092b05df4364.tar.gz
cryptography-36b15c3f7c0d417978bd65df2526092b05df4364.tar.bz2
cryptography-36b15c3f7c0d417978bd65df2526092b05df4364.zip
some small doc fixes
Diffstat (limited to 'docs/development/custom-vectors/cast5.rst')
-rw-r--r--docs/development/custom-vectors/cast5.rst10
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