gnutls-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] GNU gnutls branch, gnutls_2_12_x, updated. gnutls_2_12_16-2-gcfea3


From: Nikos Mavrogiannopoulos
Subject: [SCM] GNU gnutls branch, gnutls_2_12_x, updated. gnutls_2_12_16-2-gcfea38b
Date: Mon, 09 Jan 2012 22:47:01 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU gnutls".

http://git.savannah.gnu.org/cgit/gnutls.git/commit/?id=cfea38b5482c21fe6ddffaddc59a0040f80bd578

The branch, gnutls_2_12_x has been updated
       via  cfea38b5482c21fe6ddffaddc59a0040f80bd578 (commit)
       via  f3d17dbbbc94e32dda87b7eaea833773c7eedab6 (commit)
      from  8fad624a274df3030cf65ceaaedf0b30dcd9fbbe (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit cfea38b5482c21fe6ddffaddc59a0040f80bd578
Author: Nikos Mavrogiannopoulos <address@hidden>
Date:   Mon Jan 9 23:48:29 2012 +0100

    added sanity for parameters in _gnutls_pkcs1_rsa_decrypt().

commit f3d17dbbbc94e32dda87b7eaea833773c7eedab6
Author: Nikos Mavrogiannopoulos <address@hidden>
Date:   Mon Jan 9 23:47:42 2012 +0100

    released 2.12.16.

-----------------------------------------------------------------------

Summary of changes:
 NEWS                  |   11 +++++++++++
 configure.ac          |    2 +-
 lib/configure.ac      |    2 +-
 lib/gnutls_pk.c       |    3 +++
 libextra/configure.ac |    2 +-
 5 files changed, 17 insertions(+), 3 deletions(-)

diff --git a/NEWS b/NEWS
index eb34775..398c5e9 100644
--- a/NEWS
+++ b/NEWS
@@ -3,6 +3,16 @@ Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005,
               2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
 See the end for copying conditions.
 
+Version 2.12.16 (released 2011-01-06)
+
+** libgnutls: Corrected functionality of
+gnutls_record_get_direction(). Reported by Philip Allison.
+
+** API and ABI modifications:
+
+No changes since last version.
+
+
 Version 2.12.15 (released 2011-01-06)
 
 ** libgnutls: Disable signature algorithms that are not supported
@@ -14,6 +24,7 @@ for client certificate verification. Reported by Florian 
Weimer.
 
 No changes since last version.
 
+
 Version 2.12.14 (released 2011-11-08)
 
 ** libgnutls: Corrected fix in gnutls_session_get_data()
diff --git a/configure.ac b/configure.ac
index 16fc2e1..a41dac5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -22,7 +22,7 @@ dnl Process this file with autoconf to produce a configure 
script.
 # USA
 
 AC_PREREQ(2.61)
-AC_INIT([GnuTLS], [2.12.15], address@hidden)
+AC_INIT([GnuTLS], [2.12.16], address@hidden)
 AC_CONFIG_AUX_DIR([build-aux])
 AC_CONFIG_MACRO_DIR([m4])
 
diff --git a/lib/configure.ac b/lib/configure.ac
index 3f5b2ec..f822d50 100644
--- a/lib/configure.ac
+++ b/lib/configure.ac
@@ -22,7 +22,7 @@ dnl Process this file with autoconf to produce a configure 
script.
 # MA 02110-1301, USA
 
 AC_PREREQ(2.61)
-AC_INIT([libgnutls], [2.12.15], address@hidden)
+AC_INIT([libgnutls], [2.12.16], address@hidden)
 AC_CONFIG_AUX_DIR([build-aux])
 AC_CONFIG_MACRO_DIR([m4])
 
diff --git a/lib/gnutls_pk.c b/lib/gnutls_pk.c
index 337204b..43d1893 100644
--- a/lib/gnutls_pk.c
+++ b/lib/gnutls_pk.c
@@ -216,6 +216,9 @@ _gnutls_pkcs1_rsa_decrypt (gnutls_datum_t * plaintext,
   size_t esize, mod_bits;
   gnutls_pk_params_st pk_params;
 
+  if (params_len > GNUTLS_MAX_PK_PARAMS)
+    return gnutls_assert_val(GNUTLS_E_INTERNAL_ERROR);
+
   for (i = 0; i < params_len; i++)
     pk_params.params[i] = params[i];
   pk_params.params_nr = params_len;
diff --git a/libextra/configure.ac b/libextra/configure.ac
index 89752c8..91c78f0 100644
--- a/libextra/configure.ac
+++ b/libextra/configure.ac
@@ -22,7 +22,7 @@ dnl Process this file with autoconf to produce a configure 
script.
 # 02110-1301, USA.
 
 AC_PREREQ(2.61)
-AC_INIT([libgnutls-extra], [2.12.15], address@hidden)
+AC_INIT([libgnutls-extra], [2.12.16], address@hidden)
 AC_CONFIG_AUX_DIR([build-aux])
 AC_CONFIG_MACRO_DIR([m4])
 


hooks/post-receive
-- 
GNU gnutls



reply via email to

[Prev in Thread] Current Thread [Next in Thread]