gnutls-commit
[Top][All Lists]
Advanced

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

[SCM] GNU gnutls branch, master, updated. gnutls_2_9_6-19-g01c50c1


From: Daiki Ueno
Subject: [SCM] GNU gnutls branch, master, updated. gnutls_2_9_6-19-g01c50c1
Date: Wed, 30 Sep 2009 20:25:49 +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=01c50c13f7e7a1d676451015ef66c95511d1d734

The branch, master has been updated
       via  01c50c13f7e7a1d676451015ef66c95511d1d734 (commit)
      from  6a8c7c3363f19547274ba996365f3984d0d146ef (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 01c50c13f7e7a1d676451015ef66c95511d1d734
Author: Daiki Ueno <address@hidden>
Date:   Thu Oct 1 05:18:17 2009 +0900

    Reserve enough room for hash buffers.
    
    This fixes x509self self-test.

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

Summary of changes:
 lib/gnutls_sig.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/gnutls_sig.c b/lib/gnutls_sig.c
index b4c6884..04d6154 100644
--- a/lib/gnutls_sig.c
+++ b/lib/gnutls_sig.c
@@ -127,7 +127,7 @@ _gnutls_tls_sign_hdata (gnutls_session_t session,
 {
   gnutls_datum_t dconcat;
   int ret;
-  opaque concat[36];
+  opaque concat[MAX_SIG_SIZE];
   digest_hd_st td_md5;
   digest_hd_st td_sha;
   gnutls_protocol_t ver = gnutls_protocol_get_version (session);
@@ -458,7 +458,7 @@ _gnutls_verify_sig_hdata (gnutls_session_t session, 
gnutls_cert * cert,
                          gnutls_datum_t * signature)
 {
   int ret;
-  opaque concat[36];
+  opaque concat[MAX_SIG_SIZE];
   digest_hd_st td_md5;
   digest_hd_st td_sha;
   gnutls_datum_t dconcat;


hooks/post-receive
-- 
GNU gnutls




reply via email to

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