summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2010-01-21 13:33:34 +0000
committerWerner Koch <wk@gnupg.org>2010-01-21 13:33:34 +0000
commitc9a727088a4a763ff368e4f10d98d3a0c3a8d3b2 (patch)
treec03397e0cb9c7bccbabd8b0521b79104c51b540d
parentd760646f3fb148959d99c17f4633aee6ed01e4ae (diff)
downloadlibgcrypt-c9a727088a4a763ff368e4f10d98d3a0c3a8d3b2.tar.gz
Add an identifier for ECDH.
Fixed some NEWS entries. Updated copyright lines.
-rw-r--r--NEWS13
-rw-r--r--THANKS2
-rw-r--r--cipher/Makefile.am2
-rw-r--r--cipher/sha256.c2
-rw-r--r--cipher/sha512.c2
-rw-r--r--src/ChangeLog4
-rw-r--r--src/gcrypt.h.in3
7 files changed, 17 insertions, 11 deletions
diff --git a/NEWS b/NEWS
index a4593a81..9e981237 100644
--- a/NEWS
+++ b/NEWS
@@ -3,20 +3,21 @@ Noteworthy changes in version 1.5.x (unreleased)
* New cipher algorithm mode for AES-WRAP.
- * Fix minor memory leak in DSA key generation.
+ * Fixed minor memory leak in DSA key generation.
- * No switch into FIPS mode if /proc/version is not readable.
+ * No more switching to FIPS mode if /proc/version is not readable.
- * Fix sigill during Padlock detection on old CPUs.
+ * Fixed sigill during Padlock detection on old CPUs.
- * Fix a hang on some W2000 machines.
+ * Fixed a hang on some W2000 machines.
- * Boost SHA-512 performance by 30% on ia32 boxes and gcc 4.3; SHA-256
- goes up by 25%.
+ * Boosted SHA-512 performance by 30% on ia32 boxes and gcc 4.3;
+ SHA-256 went up by 25%.
* Interface changes relative to the 1.4.2 release:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
GCRY_CIPHER_MODE_AESWRAP NEW.
+ GCRY_PK_ECDH NEW.
Noteworthy changes in version 1.4.4 (2009-01-22)
diff --git a/THANKS b/THANKS
index 4ba2a6c9..861ac555 100644
--- a/THANKS
+++ b/THANKS
@@ -18,7 +18,7 @@ Caskey L. Dickson caskey@technocage.com
Cees van de Griend cees-list@griend.xs4all.nl
Charles Levert charles@comm.polymtl.ca
Christian Biere christianbiere@gmx.de
-Christian Grothoff grothoff@cs.purdue.edu
+Christian Grothoff christian at grothoff org
Christian von Roques roques@pond.sub.org
Christopher Oliver oliver@fritz.traverse.net
Christian Recktenwald chris@citecs.de
diff --git a/cipher/Makefile.am b/cipher/Makefile.am
index 94748487..44704339 100644
--- a/cipher/Makefile.am
+++ b/cipher/Makefile.am
@@ -1,6 +1,6 @@
# Makefile for cipher modules
# Copyright (C) 1998, 1999, 2000, 2001, 2002,
-# 2003 Free Software Foundation, Inc.
+# 2003, 2009 Free Software Foundation, Inc.
#
# This file is part of Libgcrypt.
#
diff --git a/cipher/sha256.c b/cipher/sha256.c
index afb08050..8063592f 100644
--- a/cipher/sha256.c
+++ b/cipher/sha256.c
@@ -1,5 +1,5 @@
/* sha256.c - SHA256 hash function
- * Copyright (C) 2003, 2006, 2008 Free Software Foundation, Inc.
+ * Copyright (C) 2003, 2006, 2008, 2009 Free Software Foundation, Inc.
*
* This file is part of Libgcrypt.
*
diff --git a/cipher/sha512.c b/cipher/sha512.c
index 1951c32e..59c3e658 100644
--- a/cipher/sha512.c
+++ b/cipher/sha512.c
@@ -1,5 +1,5 @@
/* sha512.c - SHA384 and SHA512 hash functions
- * Copyright (C) 2003, 2008 Free Software Foundation, Inc.
+ * Copyright (C) 2003, 2008, 2009 Free Software Foundation, Inc.
*
* This file is part of Libgcrypt.
*
diff --git a/src/ChangeLog b/src/ChangeLog
index bfd616de..9f7c7e8c 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
+2010-01-05 Werner Koch <wk@g10code.com>
+
+ * gcrypt.h.in (GCRY_PK_ECDH): New.
+
2009-12-08 Werner Koch <wk@g10code.com>
* gcrypt.h.in (GCRY_CIPHER_MODE_AESWRAP): New.
diff --git a/src/gcrypt.h.in b/src/gcrypt.h.in
index 33dc1456..f8c75b60 100644
--- a/src/gcrypt.h.in
+++ b/src/gcrypt.h.in
@@ -970,7 +970,8 @@ enum gcry_pk_algos
GCRY_PK_ELG_E = 16,
GCRY_PK_DSA = 17,
GCRY_PK_ELG = 20,
- GCRY_PK_ECDSA = 301
+ GCRY_PK_ECDSA = 301,
+ GCRY_PK_ECDH = 302
};
/* Flags describing usage capabilities of a PK algorithm. */