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_9-197-g3965579


From: Simon Josefsson
Subject: [SCM] GNU gnutls branch, master, updated. gnutls_2_9_9-197-g3965579
Date: Wed, 14 Apr 2010 13:11:20 +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=3965579aaf5ae277b388414e7d7829196ec78fbf

The branch, master has been updated
       via  3965579aaf5ae277b388414e7d7829196ec78fbf (commit)
       via  e68719c91a6a4ad75155211ed35cfc78dfa6483f (commit)
       via  53058a815fd5c2dc6cd91ef6ba94bd8106a03151 (commit)
       via  e5be8743450cf2dd66093e2bf092eff82c21010e (commit)
      from  a23f37448755d89924f791999432b76f490cb2bf (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 3965579aaf5ae277b388414e7d7829196ec78fbf
Author: Simon Josefsson <address@hidden>
Date:   Wed Apr 14 15:11:16 2010 +0200

    Add.

commit e68719c91a6a4ad75155211ed35cfc78dfa6483f
Author: Simon Josefsson <address@hidden>
Date:   Wed Apr 14 15:07:08 2010 +0200

    Add.

commit 53058a815fd5c2dc6cd91ef6ba94bd8106a03151
Author: Simon Josefsson <address@hidden>
Date:   Wed Apr 14 15:02:54 2010 +0200

    Add.

commit e5be8743450cf2dd66093e2bf092eff82c21010e
Author: Simon Josefsson <address@hidden>
Date:   Wed Apr 14 14:59:16 2010 +0200

    Generated.

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

Summary of changes:
 NEWS                     |   46 ++++++++++++++++++++++++++++++++++++----------
 doc/manpages/Makefile.am |    1 +
 2 files changed, 37 insertions(+), 10 deletions(-)

diff --git a/NEWS b/NEWS
index 0a392e9..bf07362 100644
--- a/NEWS
+++ b/NEWS
@@ -5,11 +5,13 @@ See the end for copying conditions.
 
 * Version 2.9.10 (unreleased)
 
-** libgnutls: Time verification extended to trusted certificate list,
-unless GNUTLS_VERIFY_DISABLE_TRUSTED_TIME_CHECKS flag is specified.
+** libgnutls: Time verification extended to trusted certificate list.
+Unless new constant GNUTLS_VERIFY_DISABLE_TRUSTED_TIME_CHECKS flag is
+specified.
 
 ** certtool: Display postalCode and Name X.509 DN attributes correctly.
-Based on patch by Pavan Konjarla.
+Based on patch by Pavan Konjarla.  Adds new constant
+GNUTLS_OID_X520_POSTALCODE and GNUTLS_OID_X520_NAME.
 
 ** libgnutls: Added Steve Dispensa's patch for safe renegotiation (RFC 5746)
 Solves the issue discussed in:
@@ -18,7 +20,9 @@ Solves the issue discussed in:
 Note that to allow connecting to unpatched servers the full protection
 is only enabled if the priority string %SAFE_RENEGOTIATION is
 specified. You can check whether protection is in place by querying
-gnutls_safe_renegotiation_status().
+gnutls_safe_renegotiation_status().  New error codes
+GNUTLS_E_SAFE_RENEGOTIATION_FAILED and
+GNUTLS_E_UNSAFE_RENEGOTIATION_DENIED added.
 
 ** libgnutls: When checking openpgp self signature also check the signatures
 ** of all subkeys.
@@ -27,13 +31,25 @@ vectors as well.
 
 ** libgnutls: Added cryptodev support (/dev/crypto).
 Tested with http://www.logix.cz/michal/devel/cryptodev/.  Added
-benchmark utility for AES.  Exported API to access encryption and hash
-algorithms.
+benchmark utility for AES.  Adds new error codes
+GNUTLS_E_CRYPTODEV_IOCTL_ERROR and GNUTLS_E_CRYPTODEV_DEVICE_ERROR.
+
+** libgnutls: Exported API to access encryption and hash algorithms.
+The new API functions are gnutls_cipher_decrypt, gnutls_cipher_deinit,
+gnutls_cipher_encrypt, gnutls_cipher_get_block_size,
+gnutls_cipher_init, gnutls_hash, gnutls_hash_deinit, gnutls_hash_fast,
+gnutls_hash_get_len, gnutls_hash_init, gnutls_hash_output,
+gnutls_hmac, gnutls_hmac_deinit, gnutls_hmac_fast,
+gnutls_hmac_get_len, gnutls_hmac_init, gnutls_hmac_output.  New API
+constants are GNUTLS_MAC_SHA224 and GNUTLS_DIG_SHA224.
 
 ** libgnutls: Added gnutls_certificate_set_verify_function() to allow
 verification of certificate upon receipt rather than waiting until the
 end of the handshake.
 
+** libgnutls: Don't send alerts during handshake.
+Instead new error code GNUTLS_E_UNKNOWN_SRP_USERNAME is added.
+
 ** certtool: Corrected two issues that affected certificate request generation.
 (1) Null padding is added on integers (found thanks to Wilankar Trupti),
 (2) In optional SignatureAlgorithm parameters field for DSA keys the DSA
@@ -64,6 +80,20 @@ Daniel Nylander, Sergio Zanchetta, Tao Wei, and Aron Xu.
 ** doc: The GTK-DOC manual is significantly improved.
 
 ** API and ABI modifications:
+%DISABLE_SAFE_RENEGOTIATION: Added to priority strings (do not use).
+%INITIAL_SAFE_RENEGOTIATION: Added to priority strings.
+%UNSAFE_RENEGOTIATION: Added to priority strings.
+GNUTLS_DIG_SHA224: ADDED.
+GNUTLS_E_CRYPTODEV_DEVICE_ERROR: ADDED.
+GNUTLS_E_CRYPTODEV_IOCTL_ERROR: ADDED.
+GNUTLS_E_SAFE_RENEGOTIATION_FAILED: ADDED.
+GNUTLS_E_UNKNOWN_SRP_USERNAME: ADDED.
+GNUTLS_E_UNSAFE_RENEGOTIATION_DENIED: ADDED.
+GNUTLS_MAC_SHA224: ADDED.
+GNUTLS_OID_X520_NAME: ADDED.
+GNUTLS_OID_X520_POSTALCODE: ADDED.
+GNUTLS_VERIFY_DISABLE_TRUSTED_TIME_CHECKS: ADDED.
+GNUTLS_VERSION_MAX: ADDED.
 gnutls_certificate_set_verify_function: ADDED.
 gnutls_cipher_decrypt: ADDED.
 gnutls_cipher_deinit: ADDED.
@@ -85,10 +115,6 @@ gnutls_hmac_output: ADDED.
 gnutls_safe_negotiation_set_initial: ADDED.
 gnutls_safe_renegotiation_set: ADDED.
 gnutls_safe_renegotiation_status: ADDED.
-%UNSAFE_RENEGOTIATION: Added to priority strings
-%INITIAL_SAFE_RENEGOTIATION: Added to priority strings
-%DISABLE_SAFE_RENEGOTIATION: Added to priority strings (do not use)
-GNUTLS_VERSION_MAX: Added.
 
 * Version 2.9.9 (released 2009-11-09)
 
diff --git a/doc/manpages/Makefile.am b/doc/manpages/Makefile.am
index 79eb476..655e2d8 100644
--- a/doc/manpages/Makefile.am
+++ b/doc/manpages/Makefile.am
@@ -73,6 +73,7 @@ APIMANS += gnutls_mac_get_name.3
 APIMANS += gnutls_mac_get_id.3
 APIMANS += gnutls_mac_get_key_size.3
 APIMANS += gnutls_mac_list.3
+APIMANS += gnutls_cipher_get_block_size.3
 APIMANS += gnutls_cipher_get_key_size.3
 APIMANS += gnutls_cipher_get_name.3
 APIMANS += gnutls_cipher_get_id.3


hooks/post-receive
-- 
GNU gnutls




reply via email to

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