diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-02-20 16:19:32 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-03-11 10:49:59 -0400 |
commit | e5dc122b74b9335454cb4e9321b21a20e756dc96 (patch) | |
tree | f7366e0798fd48f4c473d6601def331d15c2653c /docs/hazmat/primitives/symmetric-encryption.rst | |
parent | c99c2148fa8f27678acab4d9d02297cf097c77cf (diff) | |
download | cryptography-e5dc122b74b9335454cb4e9321b21a20e756dc96.tar.gz cryptography-e5dc122b74b9335454cb4e9321b21a20e756dc96.tar.bz2 cryptography-e5dc122b74b9335454cb4e9321b21a20e756dc96.zip |
basic IDEA ECB support for OpenSSL backend
Diffstat (limited to 'docs/hazmat/primitives/symmetric-encryption.rst')
-rw-r--r-- | docs/hazmat/primitives/symmetric-encryption.rst | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/hazmat/primitives/symmetric-encryption.rst b/docs/hazmat/primitives/symmetric-encryption.rst index 2ee5085b..daa4b36f 100644 --- a/docs/hazmat/primitives/symmetric-encryption.rst +++ b/docs/hazmat/primitives/symmetric-encryption.rst @@ -165,6 +165,16 @@ Weak Ciphers >>> decryptor.update(ct) 'a secret message' +.. class:: IDEA(key) + + IDEA (`International Data Encryption Algorithm`_) is a block cipher created + in 1991. It is an optional component of the `OpenPGP`_ standard. This cipher + 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, 128 bits in length. This must be kept + secret. + .. _symmetric-encryption-modes: @@ -468,3 +478,5 @@ Interfaces .. _`encrypt`: https://ssd.eff.org/tech/encryption .. _`CRYPTREC`: http://www.cryptrec.go.jp/english/ .. _`significant patterns in the output`: http://en.wikipedia.org/wiki/Cipher_block_chaining#Electronic_codebook_.28ECB.29 +.. _`International Data Encryption Algorithm`: https://en.wikipedia.org/wiki/International_Data_Encryption_Algorithm +.. _`OpenPGP`: http://www.openpgp.org |