From 551d59865ca51b0409757cb24338ab6c40431daf Mon Sep 17 00:00:00 2001 From: Didactic Drunk <1479616+didactic-drunk@users.noreply.github.com> Date: Tue, 17 Sep 2019 04:32:10 -0700 Subject: [PATCH] Release 1.1.0 Sodium::Cipher::Aead::Xchacha20Poly1305Ietf New recommended AEAD algorithm. Sodium::Password Create keys based on a time cost. Hashing and Key derivation split in to separate classes. Sodium::*::PublicKey JSON and Yaml converters. Sodium::Cipher::Chalsa Add #random_bytes for use as a CSPRNG. Sodium::Nonce Reuse detection. Sodium::SecureBuffer State transitions with exceptions instead of crashes. Sodium::Kdf Use SecureBuffer to keep key unreadable until used. SecureBuffer uniformly used in most key holding classes with erase param. More documentation. More benchmarks. More specs. --- shard.yml | 2 +- src/sodium/version.cr | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/shard.yml b/shard.yml index c094720..0978cfc 100644 --- a/shard.yml +++ b/shard.yml @@ -1,6 +1,6 @@ --- name: sodium -version: 1.0.1 +version: 1.1.0 authors: - Andrew Hamon - Didactic Drunk <1479616+didactic-drunk@users.noreply.github.com> diff --git a/src/sodium/version.cr b/src/sodium/version.cr index 02e8123..f0bb309 100644 --- a/src/sodium/version.cr +++ b/src/sodium/version.cr @@ -1,3 +1,3 @@ module Sodium - VERSION = "1.0.1" + VERSION = "1.1.0" end