From df9209a23521f57c7613b0c85fdeaa39b53740e5 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Mon, 1 Jun 2015 10:32:53 +0200 Subject: [PATCH] Document IETF-compatible ChaCha20 --- ChangeLog | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/ChangeLog b/ChangeLog index 5ac0afe0..7d2ca89d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,13 @@ +* Version 1.0.4 + - ChaCha20 with an extended (96 bit) nonce and a 32-bit counter has +been implemented as crypto_stream_chacha20_ietf(), +crypto_stream_chacha20_ietf_xor() and crypto_stream_chacha20_ietf_xor_ic(). +An IETF-compatible version of ChaCha20Poly1305 is available as +crypto_aead_chacha20poly1305_ietf_npubbytes(), +crypto_aead_chacha20poly1305_ietf_encrypt() and +crypto_aead_chacha20poly1305_ietf_decrypt(). + * Version 1.0.3 - In addition to sodium_bin2hex(), sodium_hex2bin() is now a constant-time function.