diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-01-07 16:24:04 -0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-01-07 16:24:04 -0800 |
commit | e9b2fdd25736e8712589a4aa4bcd2a32ce368326 (patch) | |
tree | e36e8130549bdf2bbd179fc18d1edeb296f90fef /docs/hazmat | |
parent | 960159d5abfbbc480041d405c596be8d4529775c (diff) | |
parent | bb996d7e06fe539cbddee880a1af22df334cd5db (diff) | |
download | cryptography-e9b2fdd25736e8712589a4aa4bcd2a32ce368326.tar.gz cryptography-e9b2fdd25736e8712589a4aa4bcd2a32ce368326.tar.bz2 cryptography-e9b2fdd25736e8712589a4aa4bcd2a32ce368326.zip |
Merge pull request #415 from reaperhulk/remove-cast5-ecb-for-now
remove CAST5 for first release
Diffstat (limited to 'docs/hazmat')
-rw-r--r-- | docs/hazmat/primitives/symmetric-encryption.rst | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/docs/hazmat/primitives/symmetric-encryption.rst b/docs/hazmat/primitives/symmetric-encryption.rst index e05248ff..a1a3ec0d 100644 --- a/docs/hazmat/primitives/symmetric-encryption.rst +++ b/docs/hazmat/primitives/symmetric-encryption.rst @@ -189,15 +189,6 @@ Algorithms ``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 ------------ |