Shave a few lines in the ChangeLog file

This commit is contained in:
Frank Denis 2014-07-01 16:35:34 -07:00
parent 70c731c95f
commit 1089ab4824

View File

@ -1,7 +1,6 @@
* Version 0.6.0 * Version 0.6.0
- The ChaCha20 stream cipher has been added, as - The ChaCha20 stream cipher has been added, as crypto_stream_chacha20_*
crypto_stream_chacha20_*
- The ChaCha20Poly1305 AEAD construction has been implemented, as - The ChaCha20Poly1305 AEAD construction has been implemented, as
crypto_aead_chacha20poly1305_* crypto_aead_chacha20poly1305_*
- The _easy API does not require any heap allocations any more and - The _easy API does not require any heap allocations any more and
@ -17,15 +16,14 @@ allows setting individual parameters of the scrypt function.
- New macros and functions for recommended crypto_pwhash_* parameters - New macros and functions for recommended crypto_pwhash_* parameters
have been added. have been added.
- Similarly to crypto_sign_seed_keypair(), crypto_box_seed_keypair() - Similarly to crypto_sign_seed_keypair(), crypto_box_seed_keypair()
has been introduced to deterministically generate a key pair from a has been introduced to deterministically generate a key pair from a seed.
seed.
- crypto_onetimeauth() now provides a streaming interface. - crypto_onetimeauth() now provides a streaming interface.
- crypto_stream_chacha20_xor_ic() and crypto_stream_salsa20_xor_ic() - crypto_stream_chacha20_xor_ic() and crypto_stream_salsa20_xor_ic()
have been added to use a non-zero initial block counter. have been added to use a non-zero initial block counter.
- On Windows, CryptGenRandom() was replaced by RtlGenRandom(), which - On Windows, CryptGenRandom() was replaced by RtlGenRandom(), which
doesn't require the Crypt API. doesn't require the Crypt API.
- The high bit in curve25519 is masked instead of processing the - The high bit in curve25519 is masked instead of processing the key as
key as a 256-bit value. a 256-bit value.
- The curve25519 ref implementation was replaced by the latest ref10 - The curve25519 ref implementation was replaced by the latest ref10
implementation from Supercop. implementation from Supercop.
- sodium_mlock() now prevents memory from being included in coredumps - sodium_mlock() now prevents memory from being included in coredumps