diff options
author | Yura Beznos <[email protected]> | 2013-08-13 19:00:00 +0400 |
---|---|---|
committer | Henrik Nord <[email protected]> | 2013-09-30 15:36:16 +0200 |
commit | 9f2cdf704fa0732817b4c49067cd561dd13ff730 (patch) | |
tree | c276add5ec76f39e222adb9f55ed5d1e439bf7cb /lib/crypto/doc | |
parent | b44a8d0e488be8ecbb018fbdb3926e129caf0ed0 (diff) | |
download | otp-9f2cdf704fa0732817b4c49067cd561dd13ff730.tar.gz otp-9f2cdf704fa0732817b4c49067cd561dd13ff730.tar.bz2 otp-9f2cdf704fa0732817b4c49067cd561dd13ff730.zip |
crypto: Add IGE mode for AES
Diffstat (limited to 'lib/crypto/doc')
-rw-r--r-- | lib/crypto/doc/src/crypto.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/crypto/doc/src/crypto.xml b/lib/crypto/doc/src/crypto.xml index 5bb2365109..49c020dbe5 100644 --- a/lib/crypto/doc/src/crypto.xml +++ b/lib/crypto/doc/src/crypto.xml @@ -118,7 +118,7 @@ <p><code>stream_cipher() = rc4 | aes_ctr </code></p> - <p><code>block_cipher() = aes_cbc128 | aes_cfb128 | blowfish_cbc | + <p><code>block_cipher() = aes_cbc128 | aes_cfb128 | aes_ige256 | blowfish_cbc | blowfish_cfb64 | des_cbc | des_cfb | des3_cbc | des3_cbf | des_ede3 | rc2_cbc </code></p> @@ -142,7 +142,7 @@ Note that both md4 and md5 are recommended only for compatibility with existing applications. </p> <p><code> cipher_algorithms() = des_cbc | des_cfb | des3_cbc | des3_cbf | des_ede3 | - blowfish_cbc | blowfish_cfb64 | aes_cbc128 | aes_cfb128| aes_cbc256 | rc2_cbc | aes_ctr| rc4 </code> </p> + blowfish_cbc | blowfish_cfb64 | aes_cbc128 | aes_cfb128| aes_cbc256 | aes_ige256 | rc2_cbc | aes_ctr| rc4 </code> </p> <p><code> public_key_algorithms() = rsa |dss | ecdsa | dh | ecdh </code> </p> </section> |