[svn] gcry - r1419 - in trunk: . cipher src

svn author wk cvs at cvs.gnupg.org
Thu Jan 21 14:33:34 CET 2010


Author: wk
Date: 2010-01-21 14:33:34 +0100 (Thu, 21 Jan 2010)
New Revision: 1419

Modified:
   trunk/NEWS
   trunk/THANKS
   trunk/cipher/Makefile.am
   trunk/cipher/sha256.c
   trunk/cipher/sha512.c
   trunk/src/ChangeLog
   trunk/src/gcrypt.h.in
Log:
Add an identifier for ECDH.
Fixed some NEWS entries.
Updated copyright lines.


Modified: trunk/src/ChangeLog
===================================================================
--- trunk/src/ChangeLog	2009-12-11 17:48:06 UTC (rev 1418)
+++ trunk/src/ChangeLog	2010-01-21 13:33:34 UTC (rev 1419)
@@ -1,3 +1,7 @@
+2010-01-05  Werner Koch  <wk at g10code.com>
+
+	* gcrypt.h.in (GCRY_PK_ECDH): New.
+
 2009-12-08  Werner Koch  <wk at g10code.com>
 
 	* gcrypt.h.in (GCRY_CIPHER_MODE_AESWRAP): New.

Modified: trunk/NEWS
===================================================================
--- trunk/NEWS	2009-12-11 17:48:06 UTC (rev 1418)
+++ trunk/NEWS	2010-01-21 13:33:34 UTC (rev 1419)
@@ -3,20 +3,21 @@
 
  * 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)

Modified: trunk/THANKS
===================================================================
--- trunk/THANKS	2009-12-11 17:48:06 UTC (rev 1418)
+++ trunk/THANKS	2010-01-21 13:33:34 UTC (rev 1419)
@@ -18,7 +18,7 @@
 Cees van de Griend	   cees-list at griend.xs4all.nl
 Charles Levert		   charles at comm.polymtl.ca
 Christian Biere            christianbiere at gmx.de
-Christian Grothoff         grothoff at cs.purdue.edu
+Christian Grothoff         christian at grothoff org
 Christian von Roques	   roques at pond.sub.org
 Christopher Oliver	   oliver at fritz.traverse.net
 Christian Recktenwald	   chris at citecs.de

Modified: trunk/cipher/Makefile.am
===================================================================
--- trunk/cipher/Makefile.am	2009-12-11 17:48:06 UTC (rev 1418)
+++ trunk/cipher/Makefile.am	2010-01-21 13:33:34 UTC (rev 1419)
@@ -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.
 #

Modified: trunk/cipher/sha256.c
===================================================================
--- trunk/cipher/sha256.c	2009-12-11 17:48:06 UTC (rev 1418)
+++ trunk/cipher/sha256.c	2010-01-21 13:33:34 UTC (rev 1419)
@@ -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.
  *

Modified: trunk/cipher/sha512.c
===================================================================
--- trunk/cipher/sha512.c	2009-12-11 17:48:06 UTC (rev 1418)
+++ trunk/cipher/sha512.c	2010-01-21 13:33:34 UTC (rev 1419)
@@ -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.
  *

Modified: trunk/src/gcrypt.h.in
===================================================================
--- trunk/src/gcrypt.h.in	2009-12-11 17:48:06 UTC (rev 1418)
+++ trunk/src/gcrypt.h.in	2010-01-21 13:33:34 UTC (rev 1419)
@@ -970,7 +970,8 @@
     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. */




More information about the Gnupg-commits mailing list