From 463cae05d511315f587829dc796e29802d85c46f Mon Sep 17 00:00:00 2001 From: Jesper Louis Andersen Date: Fri, 17 Jan 2020 16:03:16 +0100 Subject: [PATCH] Bump for first additions --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ef4421d..6727dd2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Added Win32 build support (Tino Breddin) - Added a nix shell for easier development +### Changed +- Split the C code over multiple files for easier maintenance. +- Rewrote the generichash routines to be more consistent. We are now more-or-less + following the style of the Erlang/OTP `crypto` library. While here, make sure + we clean up correctly and that we don't accidentally mis-ref-count data. The + code is a bit more goto heavy, but this style is surprisingly common in C code. + ### Fixes - Fix a resource leak in generichash/sign init/update/final. - Clang static analysis warnings (Thomas Arts)