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_10-327-ga1474d5


From: Simon Josefsson
Subject: [SCM] GNU gnutls branch, master, updated. gnutls_2_9_10-327-ga1474d5
Date: Sun, 25 Jul 2010 16:12:58 +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=a1474d558e182b1c23320f8e865249fd27d810e7

The branch, master has been updated
       via  a1474d558e182b1c23320f8e865249fd27d810e7 (commit)
       via  9675763f3459695445a9b8bc3045e06d47ae6f37 (commit)
      from  297d572ae2dc124325d9bcb4c630c8de2803a9ff (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 a1474d558e182b1c23320f8e865249fd27d810e7
Author: Simon Josefsson <address@hidden>
Date:   Sun Jul 25 18:12:54 2010 +0200

    Generated.

commit 9675763f3459695445a9b8bc3045e06d47ae6f37
Author: Simon Josefsson <address@hidden>
Date:   Sun Jul 25 18:12:07 2010 +0200

    Re-add old NEWS entries.

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

Summary of changes:
 NEWS                     |   57 ++++++++++++++++++++++++++++++++++++++++++++++
 doc/manpages/Makefile.am |   10 +++++--
 2 files changed, 64 insertions(+), 3 deletions(-)

diff --git a/NEWS b/NEWS
index ef3237e..772a588 100644
--- a/NEWS
+++ b/NEWS
@@ -176,6 +176,63 @@ gnutls_pkcs11_copy_x509_crt: ADDED
 gnutls_pkcs11_copy_x509_privkey: ADDED
 gnutls_pkcs11_delete_url: ADDED
 
+* Version 2.10.1 (released 2010-07-25)
+
+** libgnutls: Added support for broken certificates that indicate RSA
+with strange OIDs.
+
+** gnutls-cli: Allow verification using V1 CAs.
+
+** libgnutls: gnutls_x509_privkey_import() will fallback to
+gnutls_x509_privkey_import_pkcs8() without a password, if it
+is unable to decode the key.
+
+** libgnutls: Correctly deinitialize crypto API functions to prevent
+a memory leak.  Reported by Mads Kiilerich.
+
+** certtool: If asked to generate DSA keys of size more than 1024 bits,
+issue a warning, that the output key might not be working everywhere.
+
+** certtool: The --pkcs-cipher is taken into account when generating a
+private key. The default cipher used now is aes-128. The old behavior
+can be simulated by specifying "--pkcs-cipher 3des-pkcs12".
+
+** API and ABI modifications:
+No changes since last version.
+
+* Version 2.10.0 (released 2010-06-25)
+
+** API and ABI modifications:
+No changes since last version.
+
+* Version 2.9.12 (released 2010-06-17)
+
+** gnutls-cli: Make --starttls work again.
+Problem introduced in patch to use read() instead of fgets() committed
+on 2010-01-27.
+
+** API and ABI modifications:
+No changes since last version.
+
+* Version 2.9.11 (released 2010-06-07)
+
+** libgnutls: Removed two APIs related to safe renegotiation.
+Use priority strings instead.  The APIs were
+gnutls_safe_negotiation_set_initial and gnutls_safe_renegotiation_set.
+(Remember that we don't promise ABI stability during development
+series, so this doesn't cause an shared library ABI increment.)
+
+** tests: More self testing of safe renegotiation extension.
+See tests/safe-renegotiation/README for more information.
+
+** doc: a PDF version of the API reference manual (GTK-DOC) is now built.
+
+** doc: Terms 'GNUTLS' and 'GNU TLS' were changed to 'GnuTLS' for consistency.
+
+** API and ABI modifications:
+gnutls_safe_negotiation_set_initial: REMOVED.
+gnutls_safe_renegotiation_set: REMOVED.
+
 * Version 2.9.10 (released 2010-04-22)
 
 ** libgnutls: Time verification extended to trusted certificate list.
diff --git a/doc/manpages/Makefile.am b/doc/manpages/Makefile.am
index db40b21..cb9374d 100644
--- a/doc/manpages/Makefile.am
+++ b/doc/manpages/Makefile.am
@@ -31,6 +31,8 @@ APIMANS =
 APIMANS += gnutls_cipher_init.3
 APIMANS += gnutls_cipher_encrypt.3
 APIMANS += gnutls_cipher_decrypt.3
+APIMANS += gnutls_cipher_encrypt2.3
+APIMANS += gnutls_cipher_decrypt2.3
 APIMANS += gnutls_cipher_deinit.3
 APIMANS += gnutls_hmac_init.3
 APIMANS += gnutls_hmac.3
@@ -112,6 +114,8 @@ APIMANS += gnutls_auth_client_get_type.3
 APIMANS += gnutls_transport_set_errno.3
 APIMANS += gnutls_transport_set_global_errno.3
 APIMANS += gnutls_record_check_pending.3
+APIMANS += gnutls_transport_set_pull_function.3
+APIMANS += gnutls_transport_set_push_function.3
 APIMANS += gnutls_certificate_free_keys.3
 APIMANS += gnutls_certificate_free_cas.3
 APIMANS += gnutls_certificate_get_x509_cas.3
@@ -155,14 +159,11 @@ APIMANS += gnutls_perror.3
 APIMANS += gnutls_strerror.3
 APIMANS += gnutls_strerror_name.3
 APIMANS += gnutls_ext_register.3
-APIMANS += gnutls_global_set_mutex.3
 APIMANS += gnutls_global_set_log_function.3
 APIMANS += gnutls_global_set_log_level.3
 APIMANS += gnutls_global_set_mem_functions.3
 APIMANS += gnutls_global_init.3
 APIMANS += gnutls_global_deinit.3
-APIMANS += gnutls_transport_set_pull_function.3
-APIMANS += gnutls_transport_set_push_function.3
 APIMANS += gnutls_check_version.3
 APIMANS += gnutls_rehandshake.3
 APIMANS += gnutls_handshake.3
@@ -307,6 +308,7 @@ APIMANS += gnutls_certificate_set_x509_crl_file.3
 APIMANS += gnutls_certificate_set_x509_simple_pkcs12_file.3
 APIMANS += gnutls_certificate_set_x509_simple_pkcs12_mem.3
 APIMANS += gnutls_certificate_free_crls.3
+APIMANS += gnutls_global_set_mutex.3
 APIMANS += gnutls_pkcs11_add_provider.3
 APIMANS += gnutls_pkcs11_obj_get_info.3
 APIMANS += gnutls_pkcs11_init.3
@@ -488,6 +490,7 @@ APIMANS += gnutls_x509_privkey_import_rsa_raw2.3
 APIMANS += gnutls_x509_privkey_import_dsa_raw.3
 APIMANS += gnutls_x509_privkey_get_pk_algorithm.3
 APIMANS += gnutls_x509_privkey_export.3
+APIMANS += gnutls_x509_privkey_sec_param.3
 APIMANS += gnutls_x509_privkey_export_rsa_raw.3
 APIMANS += gnutls_x509_privkey_export_rsa_raw2.3
 APIMANS += gnutls_x509_privkey_export_dsa_raw.3
@@ -633,6 +636,7 @@ APIMANS += gnutls_openpgp_crt_verify_ring.3
 APIMANS += gnutls_openpgp_crt_verify_self.3
 APIMANS += gnutls_openpgp_privkey_init.3
 APIMANS += gnutls_openpgp_privkey_deinit.3
+APIMANS += gnutls_openpgp_privkey_sec_param.3
 APIMANS += gnutls_openpgp_privkey_import.3
 APIMANS += gnutls_openpgp_privkey_export.3
 APIMANS += gnutls_openpgp_privkey_get_pk_algorithm.3


hooks/post-receive
-- 
GNU gnutls



reply via email to

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