aboutsummaryrefslogtreecommitdiffstats
path: root/docs/hazmat/primitives
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-10-31 21:10:20 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2013-10-31 21:10:20 -0700
commitc94cdbca7f48095ddbaf15612c7b119b3ca26f73 (patch)
tree24bb6898fca61e4b19065421399ffa589f17b617 /docs/hazmat/primitives
parent3b243187f9ca6bec2bea125cf69dc2ddbbc7285f (diff)
parente833eac23008bc7bcb4db981f7fcc3d508d0381e (diff)
downloadcryptography-c94cdbca7f48095ddbaf15612c7b119b3ca26f73.tar.gz
cryptography-c94cdbca7f48095ddbaf15612c7b119b3ca26f73.tar.bz2
cryptography-c94cdbca7f48095ddbaf15612c7b119b3ca26f73.zip
Merge pull request #202 from reaperhulk/cast128-cipher
CAST5 Support
Diffstat (limited to 'docs/hazmat/primitives')
-rw-r--r--docs/hazmat/primitives/symmetric-encryption.rst10
1 files changed, 9 insertions, 1 deletions
diff --git a/docs/hazmat/primitives/symmetric-encryption.rst b/docs/hazmat/primitives/symmetric-encryption.rst
index 31ceea8a..5852dc21 100644
--- a/docs/hazmat/primitives/symmetric-encryption.rst
+++ b/docs/hazmat/primitives/symmetric-encryption.rst
@@ -107,6 +107,15 @@ Ciphers
``56`` bits long), they can simply be concatenated to
produce the full key. This must be kept secret.
+.. class:: CAST5(key)
+
+ CAST5 (also known as CAST-128) is a block cipher approved for use in the
+ Canadian government by their Communications Security Establishment. It is a
+ variable key length cipher and supports keys from 40-128 bits in length.
+
+ :param bytes key: The secret key, 40-128 bits in length (in increments of
+ 8). This must be kept secret.
+
Weak Ciphers
------------
@@ -126,7 +135,6 @@ Weak Ciphers
:param bytes key: The secret key, 32-448 bits in length (in increments of
8). This must be kept secret.
-
Modes
~~~~~