diff options
author | Daiki Ueno <dueno@redhat.com> | 2020-02-02 14:44:05 +0100 |
---|---|---|
committer | Daiki Ueno <dueno@redhat.com> | 2020-02-04 10:29:36 +0100 |
commit | 623058337490b847d27b736c67b6e710efb980a7 (patch) | |
tree | bebc7927a88e16439d60834312729ca0ca0fb403 /NEWS | |
parent | b4c52d8ad4a063d05100980f895e330ff6076de5 (diff) | |
download | gnutls-623058337490b847d27b736c67b6e710efb980a7.tar.gz |
crypto-api: add generic crypto functions for KDF
This exposes HKDF and PBKDF2 functions from the library. Instead of
defining a single KDF interface as in PKCS #11, this patch defines 3
distinct functions for HKDF-Extract, HKDF-Expand, and PBKDF2
derivation, so that we can take advantage of compile time checking of
necesssary parameters.
Signed-off-by: Daiki Ueno <dueno@redhat.com>
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -5,6 +5,15 @@ Copyright (C) 2000-2016 Free Software Foundation, Inc. Copyright (C) 2013-2019 Nikos Mavrogiannopoulos See the end for copying conditions. +* Version 3.6.13 (unreleased) + +** libgnutls: Added new APIs to access KDF algorithms (#813). + +** API and ABI modifications: +gnutls_hkdf_extract: Added +gnutls_hkdf_expand: Added +gnutls_pbkdf2: Added + * Version 3.6.12 (released 2020-02-01) ** libgnutls: Introduced TLS session flag (gnutls_session_get_flags()) |