summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2008-09-03 10:42:11 +0000
committerWerner Koch <wk@gnupg.org>2008-09-03 10:42:11 +0000
commit5109c0c8041b1d5453feebc3ae3df74a65d9d890 (patch)
tree229564f3453de0560626be0751ef3b7726946041
parentf2f48e70e7b3c8d48272594843474236311a23e2 (diff)
downloadlibgcrypt-5109c0c8041b1d5453feebc3ae3df74a65d9d890.tar.gz
Updated the NEWS file.
-rw-r--r--NEWS11
-rw-r--r--configure.ac4
-rw-r--r--doc/gcrypt.texi8
3 files changed, 16 insertions, 7 deletions
diff --git a/NEWS b/NEWS
index 86999396..bd081749 100644
--- a/NEWS
+++ b/NEWS
@@ -1,9 +1,12 @@
Noteworthy changes in version 1.4.2 (unreleased)
------------------------------------------------
- * The library may now be switched into a FIPS mode.
+ * The long missing gcry_mpi_lshift function has been added.
+
+ * RSA key generation now supports a "transient-key" flag.
- * More runtime selftests.
+ * The keygrip computation for ECDSA has been implemented thus ECDSA
+ is now fully supported.
* A few macros have been replaced by functions for better type
checking.
@@ -11,9 +14,9 @@ Noteworthy changes in version 1.4.2 (unreleased)
* The thread initialization structure now carries version
information.
- * The long missing gcry_mpi_lshift function has been added.
+ * The manual describes more clearly how to initialize Libgcrypt.
- * RSA key generation now supports a "transient-key" flag.
+ * The library may now be switched into a FIPS mode.
* Interface changes relative to the 1.3.0 release:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
diff --git a/configure.ac b/configure.ac
index c84530e1..da640b99 100644
--- a/configure.ac
+++ b/configure.ac
@@ -26,8 +26,8 @@ min_automake_version="1.10"
# Remember to change the version number immediately *after* a release.
# Set my_issvn to "yes" for non-released code. Remember to run an
# "svn up" and "autogen.sh" right before creating a distribution.
-m4_define([my_version], [1.4.2rc2])
-m4_define([my_issvn], [no])
+m4_define([my_version], [1.4.2])
+m4_define([my_issvn], [yes])
m4_define([svn_revision], m4_esyscmd([printf "%d" $(svn info 2>/dev/null \
| sed -n '/^Revision:/ s/[^0-9]//gp'|head -1)]))
diff --git a/doc/gcrypt.texi b/doc/gcrypt.texi
index 55fae683..5d63fea6 100644
--- a/doc/gcrypt.texi
+++ b/doc/gcrypt.texi
@@ -2634,7 +2634,7 @@ are allowed. When specifying Q all values of N in the range 512 to
This is only meaningful for RSA keys. This is a flag with no value. If
given the RSA key is created using a faster and a somewhat less secure
random number generator. This flag may be used for keys which are only
-used for a short time and do not require full cryptograohic strength.
+used for a short time and do not require full cryptographic strength.
@end table
@@ -4338,6 +4338,12 @@ Shift the value of @var{a} by @var{n} bits to the right and store the
result in @var{x}.
@end deftypefun
+@deftypefun void gcry_mpi_lshift (@w{gcry_mpi_t @var{x}}, @w{gcry_mpi_t @var{a}}, @w{unsigned int @var{n}})
+
+Shift the value of @var{a} by @var{n} bits to the left and store the
+result in @var{x}.
+@end deftypefun
+
@node Miscellaneous
@section Miscellaneous