diff options
author | David Reid <dreid@dreid.org> | 2014-04-12 09:01:21 -0400 |
---|---|---|
committer | David Reid <dreid@dreid.org> | 2014-04-12 09:01:21 -0400 |
commit | 762f660a93921abfbc82faa3a02a385810dde9dd (patch) | |
tree | fc47c36b0ab7ea46f9adfa6fcf6208c6d566e126 /docs | |
parent | ec53c7158e6b879f0706ef0360556c6a0e768fa4 (diff) | |
parent | 7e914c90611a2fc6c62d4697d40d0215dc33ce57 (diff) | |
download | cryptography-762f660a93921abfbc82faa3a02a385810dde9dd.tar.gz cryptography-762f660a93921abfbc82faa3a02a385810dde9dd.tar.bz2 cryptography-762f660a93921abfbc82faa3a02a385810dde9dd.zip |
Merge pull request #908 from reaperhulk/seed-support
SEED support
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. |