summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--AUTHORS9
-rw-r--r--NEWS25
-rw-r--r--README4
-rw-r--r--compat/compat.c4
-rw-r--r--configure.ac2
-rw-r--r--src/gcrypt.h.in5
-rw-r--r--src/versioninfo.rc.in4
7 files changed, 39 insertions, 14 deletions
diff --git a/AUTHORS b/AUTHORS
index ee336b2e..dec34f2b 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -6,8 +6,9 @@ Repository: git://git.gnupg.org/libgcrypt.git
Maintainer: Werner Koch <wk@gnupg.org>
Bug reports: https://bugs.gnupg.org
Security related bug reports: <security@gnupg.org>
-License (library): LGPLv2.1+
-License (manual and tools): GPLv2+
+End-of-life: 2024-12-31 or later
+License (library): LGPL-2.1-or-later
+License (manual and tools): GPL-2.0-or-later
Libgcrypt is free software. See the files COPYING.LIB and COPYING for
@@ -21,6 +22,8 @@ year that would otherwise be listed individually.
List of Copyright holders
=========================
+ Copyright (C) 2012-2021 g10 Code GmbH
+ Copyright (C) 2013-2018 Jussi Kivilinna
Copyright (C) 1989,1991-2019 Free Software Foundation, Inc.
Copyright (C) 1994 X Consortium
Copyright (C) 1996 L. Peter Deutsch
@@ -30,11 +33,9 @@ List of Copyright holders
Copyright (C) 1996-2006 Peter Gutmann, Matt Thomlinson and Blake Coverett
Copyright (C) 2003 Nikos Mavroyanopoulos
Copyright (C) 2006-2007 NTT (Nippon Telegraph and Telephone Corporation)
- Copyright (C) 2012-2019 g10 Code GmbH
Copyright (C) 2012 Simon Josefsson, Niels Möller
Copyright (c) 2012 Intel Corporation
Copyright (C) 2013 Christian Grothoff
- Copyright (C) 2013-2017 Jussi Kivilinna
Copyright (C) 2013-2014 Dmitry Eremin-Solenikov
Copyright (C) 2014 Stephan Mueller
Copyright (C) 2017 Bundesamt für Sicherheit in der Informationstechnik
diff --git a/NEWS b/NEWS
index 35243671..3b5be08a 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,29 @@
-Noteworthy changes in version 1.8.8 (unreleased) [C22/A2/R_]
+Noteworthy changes in version 1.8.8 (2021-06-02) [C22/A2/R9]
------------------------------------------------
+ * Bug fixes:
+
+ - Improve ECDSA key checks. [#5282]
+
+ - Make sure the grcy_get_config string is always null-terminated.
+ [a5799f1618]
+
+ - Check the input length of ECDH to make trial ddecryption in GnuPG
+ work correctly. [3f48e3ea37]
+
+ - Fix Elgamal encryption for other implementations.
+ [#5328,CVE-2021-33560]
+
+ - Fix alignment problem on macOS. [#5440]
+
+ - Fix hardware capability check for SHA1 and SHA2 on AArch32. [#5195]
+
+ * Other features:
+
+ - Add GCM and CCM to OID mapping table for AES. [1ceac721ab]
+
+ Release-info: https://dev.gnupg.org/T5466
+
Noteworthy changes in version 1.8.7 (2020-10-23) [C22/A2/R8]
------------------------------------------------
diff --git a/README b/README
index e73c8d00..135adbdb 100644
--- a/README
+++ b/README
@@ -2,9 +2,9 @@
------------------------------------
Version 1.8
- Copyright (C) 1989,1991-2018 Free Software Foundation, Inc.
- Copyright (C) 2012-2018 g10 Code GmbH
+ Copyright (C) 2012-2021 g10 Code GmbH
Copyright (C) 2013-2018 Jussi Kivilinna
+ Copyright (C) 1989,1991-2018 Free Software Foundation, Inc.
Libgcrypt is free software. See the file AUTHORS for full copying
notices, and LICENSES for notices about contributions that require
diff --git a/compat/compat.c b/compat/compat.c
index 1feb5f9d..c7ad1a45 100644
--- a/compat/compat.c
+++ b/compat/compat.c
@@ -30,9 +30,9 @@ _gcry_compat_identification (void)
static const char blurb[] =
"\n\n"
"This is Libgcrypt " PACKAGE_VERSION " - The GNU Crypto Library\n"
- "Copyright (C) 2000-2019 Free Software Foundation, Inc.\n"
- "Copyright (C) 2012-2019 g10 Code GmbH\n"
+ "Copyright (C) 2012-2021 g10 Code GmbH\n"
"Copyright (C) 2013-2018 Jussi Kivilinna\n"
+ "Copyright (C) 2000-2019 Free Software Foundation, Inc.\n"
"\n"
"(" BUILD_REVISION " " BUILD_TIMESTAMP ")\n"
"\n\n";
diff --git a/configure.ac b/configure.ac
index a679cab3..fb4f1869 100644
--- a/configure.ac
+++ b/configure.ac
@@ -56,7 +56,7 @@ AC_INIT([libgcrypt],[mym4_full_version],[http://bugs.gnupg.org])
# (No interfaces changed: REVISION++)
LIBGCRYPT_LT_CURRENT=22
LIBGCRYPT_LT_AGE=2
-LIBGCRYPT_LT_REVISION=8
+LIBGCRYPT_LT_REVISION=9
# If the API is changed in an incompatible way: increment the next counter.
diff --git a/src/gcrypt.h.in b/src/gcrypt.h.in
index 75c49a0d..08e5e497 100644
--- a/src/gcrypt.h.in
+++ b/src/gcrypt.h.in
@@ -1,6 +1,6 @@
/* gcrypt.h - GNU Cryptographic Library Interface -*- c -*-
- * Copyright (C) 1998-2017 Free Software Foundation, Inc.
- * Copyright (C) 2012-2017 g10 Code GmbH
+ * Copyright (C) 2012-2021 g10 Code GmbH
+ * Copyright (C) 1998-2018 Free Software Foundation, Inc.
*
* This file is part of Libgcrypt.
*
@@ -16,6 +16,7 @@
*
* You should have received a copy of the GNU Lesser General Public
* License along with this program; if not, see <http://www.gnu.org/licenses/>.
+ * SPDX-License-Identifier: LGPL-2.1-or-later
*
* File: @configure_input@
*/
diff --git a/src/versioninfo.rc.in b/src/versioninfo.rc.in
index 2899a6af..397b5428 100644
--- a/src/versioninfo.rc.in
+++ b/src/versioninfo.rc.in
@@ -34,12 +34,12 @@ BEGIN
BEGIN
BLOCK "040904b0"
BEGIN
- VALUE "Comments", "Provided under the terms of the GNU Lesser General Public License (LGPLv2.1+).\0"
+ VALUE "Comments", "Provided under the terms of the GNU Lesser General Public License (LGPL-2.1-or-later).\0"
VALUE "CompanyName", "g10 Code GmbH\0"
VALUE "FileDescription", "Libgcrypt - The GNU Crypto Library\0"
VALUE "FileVersion", "@LIBGCRYPT_LT_CURRENT@.@LIBGCRYPT_LT_AGE@.@LIBGCRYPT_LT_REVISION@.@BUILD_REVISION@\0"
VALUE "InternalName", "libgcrypt\0"
- VALUE "LegalCopyright", "Copyright © 2019 Free Software Foundation, Inc.\0"
+ VALUE "LegalCopyright", "Copyright © 2021 g10 Code GmbH\0"
VALUE "LegalTrademarks", "\0"
VALUE "OriginalFilename", "libgcrypt.dll\0"
VALUE "PrivateBuild", "\0"