aboutsummaryrefslogtreecommitdiffstats
path: root/docs/development/custom-vectors
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
parentfae681c86a71a478b78dd835353df13ece6fd4fc (diff)
downloadcryptography-36b15c3f7c0d417978bd65df2526092b05df4364.tar.gz
cryptography-36b15c3f7c0d417978bd65df2526092b05df4364.tar.bz2
cryptography-36b15c3f7c0d417978bd65df2526092b05df4364.zip
some small doc fixes
Diffstat (limited to 'docs/development/custom-vectors')
-rw-r--r--docs/development/custom-vectors/cast5.rst10
-rw-r--r--docs/development/custom-vectors/idea.rst6
-rw-r--r--docs/development/custom-vectors/seed.rst4
3 files changed, 10 insertions, 10 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
diff --git a/docs/development/custom-vectors/idea.rst b/docs/development/custom-vectors/idea.rst
index e0db58d9..c2268634 100644
--- a/docs/development/custom-vectors/idea.rst
+++ b/docs/development/custom-vectors/idea.rst
@@ -3,8 +3,8 @@ IDEA vector creation
This page documents the code that was used to generate the IDEA CBC, CFB, and
OFB test vectors as well as the code used to verify them against another
-implementation. For IDEA the vectors were generated using OpenSSL and verified
-with Go.
+implementation. The vectors were generated using OpenSSL and verified with
+`Botan`_.
Creation
--------
@@ -20,7 +20,7 @@ Download link: :download:`generate_idea.py </development/custom-vectors/idea/gen
Verification
------------
-The following python code was used to verify the vectors using the `Botan`_
+The following Python code was used to verify the vectors using the `Botan`_
project's Python bindings.
.. literalinclude:: /development/custom-vectors/idea/verify_idea.py
diff --git a/docs/development/custom-vectors/seed.rst b/docs/development/custom-vectors/seed.rst
index e8fda542..5ea4295b 100644
--- a/docs/development/custom-vectors/seed.rst
+++ b/docs/development/custom-vectors/seed.rst
@@ -3,7 +3,7 @@ SEED vector creation
This page documents the code that was used to generate the SEED CFB and OFB
test vectors as well as the code used to verify them against another
-implementation. For SEED the vectors were generated using OpenSSL and verified
+implementation. The vectors were generated using OpenSSL and verified
with `Botan`_.
Creation
@@ -20,7 +20,7 @@ Download link: :download:`generate_seed.py </development/custom-vectors/seed/gen
Verification
------------
-The following python code was used to verify the vectors using the `Botan`_
+The following Python code was used to verify the vectors using the `Botan`_
project's Python bindings.
.. literalinclude:: /development/custom-vectors/seed/verify_seed.py