diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-04-09 09:12:29 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-04-09 11:15:15 -0500 |
commit | 7e914c90611a2fc6c62d4697d40d0215dc33ce57 (patch) | |
tree | f310c9e42f64a177595d9add0f5409513af4982f /docs | |
parent | 65a890d0f66bc611cb1ff1be979345c4933160d8 (diff) | |
download | cryptography-7e914c90611a2fc6c62d4697d40d0215dc33ce57.tar.gz cryptography-7e914c90611a2fc6c62d4697d40d0215dc33ce57.tar.bz2 cryptography-7e914c90611a2fc6c62d4697d40d0215dc33ce57.zip |
add SEED docs, tests, small fixes
Diffstat (limited to 'docs')
-rw-r--r-- | docs/hazmat/primitives/symmetric-encryption.rst | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/docs/hazmat/primitives/symmetric-encryption.rst b/docs/hazmat/primitives/symmetric-encryption.rst index 28de611e..1a4df222 100644 --- a/docs/hazmat/primitives/symmetric-encryption.rst +++ b/docs/hazmat/primitives/symmetric-encryption.rst @@ -130,6 +130,17 @@ Algorithms :param bytes key: The secret key, This must be kept secret. 40 to 128 bits in length in increments of 8 bits. +.. class:: SEED(key) + + .. versionadded:: 0.4 + + SEED is a block cipher developed by the Korea Information Security Agency ( + KISA). It is defined in :rfc:`4269` and is used broadly throughout South + Korean industry, but rarely found elsewhere. + + :param bytes key: The secret key. This must be kept secret. ``128`` bits in + length. + Weak ciphers ------------ @@ -176,7 +187,7 @@ Weak ciphers is susceptible to attacks when using weak keys. It is recommended that you do not use this cipher for new applications. - :param bytes key: The secret key This must be kept secret. ``128`` bits in + :param bytes key: The secret key. This must be kept secret. ``128`` bits in length. |