Do not recommend AES128 over AES256.

This commit is contained in:
Frank Denis 2014-07-30 22:42:53 -07:00
parent 1089114026
commit e907196101

View File

@ -7,9 +7,8 @@
* provide any security against active attacks. * provide any security against active attacks.
* Furthermore, this implementation was not part of NaCl. * Furthermore, this implementation was not part of NaCl.
* *
* If you are looking for a stream cipher, you might consider * If you are looking for a stream cipher, you might consider crypto_stream_chacha20
* crypto_stream_aes128ctr, crypto_stream_chacha20 or crypto_stream_(x)salsa20 * or crypto_stream_(x)salsa20 which are timing-attack resistant instead.
* which are timing-attack resistant.
* *
* But unless you know what you're doing, what you are looking for is probably * But unless you know what you're doing, what you are looking for is probably
* the crypto_box or crypto_secretbox functions. * the crypto_box or crypto_secretbox functions.