From 36b15c3f7c0d417978bd65df2526092b05df4364 Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Wed, 9 Apr 2014 11:21:09 -0500 Subject: some small doc fixes --- docs/development/custom-vectors/cast5.rst | 10 +++++----- docs/development/custom-vectors/idea.rst | 6 +++--- docs/development/custom-vectors/seed.rst | 4 ++-- 3 files changed, 10 insertions(+), 10 deletions(-) (limited to 'docs/development/custom-vectors') 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