added missing function
[gnutls.git] / NEWS
bloba15b0e8fb6da5b9a8a10558aad35f49cb5230e9a
1 GnuTLS NEWS -- History of user-visible changes.                -*- outline -*-
2 Copyright (C) 2000-2012 Free Software Foundation, Inc.
3 See the end for copying conditions.
5 * Version 3.0.18 (unreleased)
7 ** certtool: Avoid a Y2K38 bug when generating certificates.
8 Patch by Robert Millan.
10 ** libgnutls: Time in generated certificates is stored
11 as GeneralizedTime instead of UTCTime (which only stores
12 2 digits of a year).
14 ** API and ABI modifications:
15 gnutls_x509_crt_set_private_key_usage_period: Added
16 gnutls_x509_crt_get_private_key_usage_period: Added
17 gnutls_x509_crq_set_private_key_usage_period: Added
18 gnutls_x509_crq_get_private_key_usage_period: Added
20 * Version 3.0.17 (released 2012-03-17)
22 ** command line apps: Always link with local libopts.
24 ** API and ABI modifications:
25 No changes since last version.
28 * Version 3.0.16 (released 2012-03-16)
30 ** minitasn1: Upgraded to libtasn1 version 2.12 (pre-release).
32 ** libgnutls: Corrected SRP-RSA ciphersuites when used under TLS 1.2.
34 ** libgnutls: included assembler files for MacOSX.
36 ** p11tool: Small fixes in handling of the --private command 
37 line option.
39 ** certtool: The template option allows for setting the domain
40 component (DC) option of the distinguished name, and the ocsp_uri
41 as well as the ca_issuers_uri options.
43 ** API and ABI modifications:
44 gnutls_x509_crt_set_authority_info_access: Added
47 * Version 3.0.15 (released 2012-03-02)
49 ** test suite: Only run under valgrind in the development
50 system (the full git repository)
52 ** command line apps: Link with local libopts if the 
53 installed is an old one.
55 ** libgnutls: Eliminate double free during SRP
56 authentication. Reported by Peter Penzov.
58 ** libgnutls: Corrections in record packet parsing.
59 Reported by Matthew Hall.
61 ** libgnutls: Cryptodev updates and fixes.
63 ** libgnutls: Corrected issue with select() that affected
64 FreeBSD. This prevented establishing DTLS sessions.
65 Reported by Andreas Metzler.
67 ** libgnutls: Corrected rehandshake and resumption
68 operations in DTLS. Reported by Sean Buckheister.
70 ** libgnutls: PKCS #11 objects that do not have ID
71 no longer crash listing. Reported by Sven Geggus.
73 ** API and ABI modifications:
74 No changes since last version.
77 * Version 3.0.14 (released 2012-02-24)
79 ** command line apps: Included libopts doesn't get installed
80 by default.
82 ** libgnutls: Eliminate double free on wrongly formatted
83 certificate list. Reported by Remi Gacogne.
85 ** libgnutls: cryptodev code corrected, updated to account
86 for hashes and GCM mode.
88 ** libgnutls: Eliminated memory leak in PCKS #11 initialization.
89 Report and fix by Sam Varshavchik.
91 ** API and ABI modifications:
92 No changes since last version.
95 * Version 3.0.13 (released 2012-02-18)
97 ** gnutls-cli: added the --ocsp option which will verify
98 the peer's certificate with OCSP.
100 ** gnutls-cli: added the --tofu and if specified, gnutls-cli
101 will use an ssh-style authentication method.
103 ** gnutls-cli: if no --x509cafile is provided a default is
104 assumed (/etc/ssl/certs/ca-certificates.crt), if it exists.
106 ** ocsptool: Added --ask parameter, to verify a certificate's
107 status from an ocsp server.
109 ** command line apps: Use gnu autogen (libopts) to parse command
110 line arguments and template files.
112 ** tests: Added stress test for DTLS packet losses and 
113 out-of-order receival. Contributed by Sean Buckheister.
115 ** libgnutls: Several updates and corrections in the DTLS
116 DTLS lost packet handling and retransmission timeouts.
117 Report and patches by Sean Buckheister.
119 ** libgnutls: Added new functions to easily allow the usage of
120 a trust on first use (SSH-style) authentication.
122 ** libgnutls: SUITEB128 and SUITEB192 priority strings account
123 for the RFC6460 requirements.
125 ** libgnutls: Added new security parameter GNUTLS_SEC_PARAM_LEGACY
126 to account for security level of 96-bits.
128 ** libgnutls: In client side if server does not advertise any
129 known CAs and only a single certificate is set in the credentials,
130 sent that one.
132 ** libgnutls: Added functions to parse authority key identifiers
133 when stored as a 'general name' and serial combo.
135 ** libgnutls: Added function to force explicit reinitialization
136 of PKCS #11 modules. This is required on the child process after
137 a fork (if PKCS #11 functionality is desirable).
139 ** libgnutls: Depend on p11-kit 0.11.
141 ** API and ABI modifications:
142 gnutls_dtls_get_timeout: Added
143 gnutls_verify_stored_pubkey: Added
144 gnutls_store_pubkey: Added
145 gnutls_store_commitment: Added
146 gnutls_x509_crt_get_authority_key_gn_serial: Added
147 gnutls_x509_crl_get_authority_key_gn_serial: Added
148 gnutls_pkcs11_reinit: Added
149 gnutls_ecc_curve_list: Added
150 gnutls_priority_certificate_type_list: Added
151 gnutls_priority_sign_list: Added
152 gnutls_priority_protocol_list: Added
153 gnutls_priority_compression_list: Added
154 gnutls_priority_ecc_curve_list: Added
155 gnutls_tdb_init: Added
156 gnutls_tdb_set_store_func: Added
157 gnutls_tdb_set_store_commitment_func: Added
158 gnutls_tdb_set_verify_func: Added
159 gnutls_tdb_deinit: Added
162 * Version 3.0.12 (released 2012-01-20)
164 ** libgnutls: Added OCSP support.
165 There is a new header file gnutls/ocsp.h and a set of new functions
166 under the gnutls_ocsp namespace.  Currently the functionality provided
167 is to parse and extract information from OCSP requests/responses, to
168 generate OCSP requests and to verify OCSP responses.  See the manual
169 for more information.  Run ./configure with --disable-ocsp to build
170 GnuTLS without OCSP support.
172 This work was sponsored by Smoothwall <http://smoothwall.net/>.
174 ** ocsptool: Added new command line tool.
175 The tool can parse OCSP request/responses, generate OCSP requests and
176 verify OCSP responses.  See the manual for more information.
178 ** certtool: --outder option now works for private
179 and public keys as well.
181 ** libgnutls: Added error code GNUTLS_E_NO_PRIORITIES_WERE_SET
182 to warn when no or insufficient priorities were set.
184 ** libgnutls: Corrected an alignment issue in ECDH
185 key generation which prevented some keys from being
186 correctly aligned in rare circumstances.
188 ** libgnutls: Corrected memory leaks in DH parameter
189 generation and ecc_projective_check_point().
191 ** libgnutls: Added gnutls_x509_dn_oid_name() to 
192 return a descriptive name of a DN OID.
194 ** API and ABI modifications:
195 gnutls_pubkey_encrypt_data: Added
196 gnutls_x509_dn_oid_name: Added
197 gnutls_session_resumption_requested: Added
198 gnutls/ocsp.h: Added new header file.
199 gnutls_ocsp_print_formats_t: Added new type.
200 gnutls_ocsp_resp_status_t: Added new type.
201 gnutls_ocsp_cert_status_t: Added new type.
202 gnutls_x509_crl_reason_t: Added new type.
203 gnutls_ocsp_req_add_cert: Added.
204 gnutls_ocsp_req_add_cert_id: Added.
205 gnutls_ocsp_req_deinit: Added.
206 gnutls_ocsp_req_export: Added.
207 gnutls_ocsp_req_get_cert_id: Added.
208 gnutls_ocsp_req_get_extension: Added.
209 gnutls_ocsp_req_get_nonce: Added.
210 gnutls_ocsp_req_get_version: Added.
211 gnutls_ocsp_req_import: Added.
212 gnutls_ocsp_req_init: Added.
213 gnutls_ocsp_req_print: Added.
214 gnutls_ocsp_req_randomize_nonce: Added.
215 gnutls_ocsp_req_set_extension: Added.
216 gnutls_ocsp_req_set_nonce: Added.
217 gnutls_ocsp_resp_deinit: Added.
218 gnutls_ocsp_resp_export: Added.
219 gnutls_ocsp_resp_get_certs: Added.
220 gnutls_ocsp_resp_get_extension: Added.
221 gnutls_ocsp_resp_get_nonce: Added.
222 gnutls_ocsp_resp_get_produced: Added.
223 gnutls_ocsp_resp_get_responder: Added.
224 gnutls_ocsp_resp_get_response: Added.
225 gnutls_ocsp_resp_get_signature: Added.
226 gnutls_ocsp_resp_get_signature_algorithm: Added.
227 gnutls_ocsp_resp_get_single: Added.
228 gnutls_ocsp_resp_get_status: Added.
229 gnutls_ocsp_resp_get_version: Added.
230 gnutls_ocsp_resp_import: Added.
231 gnutls_ocsp_resp_init: Added.
232 gnutls_ocsp_resp_print: Added.
233 gnutls_ocsp_resp_verify: Added.
235 * Version 3.0.11 (released 2012-01-06)
237 ** libgnutls: Corrected functionality of 
238 gnutls_record_get_direction(). Reported by Philip Allison.
240 ** libgnutls: Provide less timing information when decoding
241 TLS/DTLS record packets. Patch by Nadhem Alfardan.
243 ** API and ABI modifications:
244 No changes since last version.
247 * Version 3.0.10 (released 2012-01-04)
249 ** gnutls-cli/serv: Set don't fragment bit in DTLS sessions
250 in Linux as well as in BSD.
252 ** gnutls-cli: Fixed reading from windows terminals.
254 ** libgnutls: When GNUTLS_OPENPGP_FMT_BASE64 is specified
255 the stream is assumed to be base64 encoded (previously
256 the encoding was auto-detected). This avoids a decoding
257 issue in windows systems.
259 ** libgnutls: Corrected ciphersuite GNUTLS_ECDHE_PSK_AES_256_CBC_SHA384
261 ** libgnutls: Added ciphersuites: GNUTLS_PSK_WITH_AES_256_GCM_SHA384
262 and GNUTLS_DHE_PSK_WITH_AES_256_GCM_SHA384.
264 ** libgnutls: Added function gnutls_random_art() to convert 
265 fingerprints to images (currently ascii-art).
267 ** libgnutls: Corrected bug in DSA private key parsing, which
268 prevented the verification of the key.
270 ** API and ABI modifications:
271 gnutls_random_art: Added
274 * Version 3.0.9 (released 2011-12-13)
276 ** certtool: Added new parameter --dh-info.
278 ** certtool: -l option was overloaded so if combined with --priority
279 it will only list the ciphersuites that are enabled by the given
280 priority string.
282 ** libgnutls: Added new priority string %SERVER_PRECEDENCE, which
283 changes the ciphersuite selection procedure. If specified the server
284 priorities will be used for selection instead of the client's.
286 ** libgnutls: Optimizations in Diffie-Hellman parameters generation
287 and key exchange.
289 ** libgnutls: When session tickets are negotiated and used in a
290 session, a server will not store that session data into its cache.
292 ** libgnutls: Added the SECP192R1 curve.
294 ** libgnutls: Added gnutls_priority_get_cipher_suite_index() to
295 allow listing the ciphersuites enabled in a priority structure.
296 It outputs an index to be used in gnutls_get_cipher_suite_info().
298 ** libgnutls: Optimizations in the elliptic curve code --timing
299 attacks resistant code is only used in ECDSA private key operations.
301 ** doc: man pages for API functions generation was fixed and are
302 now added again in the distribution.
304 ** API and ABI modifications:
305 GNUTLS_ECC_CURVE_SECP192R1: New curve definition
306 gnutls_priority_get_cipher_suite_index: Added
309 * Version 3.0.8 (released 2011-11-12)
311 ** certtool: Certtool -e returns error code on verification
312 failure.
314 ** certtool: Verifies parameters of generated keys.
316 ** libgnutls: Corrected ECC key generation (introduced in 3.0.6)
318 ** libgnutls: Provide less timing information when decoding
319 TLS/DTLS record packets.
321 ** doc: man pages for API functions were removed.
322 The reason was that the code that auto-generated the man pages missed
323 many APIs and we couldn't fix it (volunteers welcome).  See the info
324 manual or the GTK-DOC manual instead.
326 ** API and ABI modifications:
327 gnutls_x509_privkey_verify_params: Added
330 * Version 3.0.7 (released 2011-11-08)
332 ** libgnutls: Corrected fix in gnutls_session_get_data()
333 to report the actual session size when the provided buffer
334 is not enough.
336 ** libgnutls: Fixed ciphersuite GNUTLS_ECDHE_RSA_AES_128_CBC_SHA256,
337 which was using a wrong MAC algorithm. Reported by Fabrice Gautier.
339 ** API and ABI modifications:
340 No changes since last version.
343 * Version 3.0.6 (released 2011-11-07)
345 ** gnutls-guile: Compilation fixes.
347 ** libgnutls: Fixed possible buffer overflow in 
348 gnutls_session_get_data(). Reported and fix by Alban Crequy.
350 ** libgnutls: Bug fixes in the ciphersuites with NULL cipher.
351 Reported by Fabrice Gautier.
353 ** libgnutls: Bug fixes in ECC code for 64-bit MIPS systems. 
354 Thanks to Joseph Graham for providing access to such a system.
356 ** libgnutls: Correctly report ECC private key parsing errors.
357 Reported by Fabrice Gautier.
359 ** libgnutls: In ECDHE verify that the received point lies on
360 the selected curve. The ECDHE ciphersuites now take precendence
361 to plain DHE.
363 ** API and ABI modifications:
364 No changes since last version.
367 * Version 3.0.5 (released 2011-10-27)
369 ** libgnutls-extra: is no more
371 ** libgnutls: Corrections in order to compile with mingw32.
373 ** libgnutls: Corrections in VIA padlock code for VIA C5 processor
374 and new detection of PHE with support for partial hashing.
376 ** libgnutls: Corrected bug in gnutls_x509_data2hex. Report and fix 
377 by Vincent Untz.
379 ** minitasn1: Upgraded to libtasn1 version 2.10.
381 ** API and ABI modifications:
382 No changes since last version.
385 * Version 3.0.4 (released 2011-10-15)
387 ** libgnutls-extra: gnutls_register_md5_handler() was
388 removed.
390 ** gnutls-cli-debug: Added more tests including AES-GCM,
391 SHA256 and elliptic curves.
393 ** gnutls-cli: Added --benchmark-soft-ciphers to benchmark
394 the software version of the ciphers instead of hw accelerated 
395 (where available)
397 ** libgnutls: Public key ID calculation is consistent among
398 all structures. It uses a SHA-1 hash of the subjectPublicKeyInfo.
400 ** libgnutls: gnutls_privkey_t allows setting external callback
401 to perform signing or decryption. Can be set using
402 gnutls_privkey_import_ext()
404 ** libgnutls: A certificate credentials structure can be
405 used with a gnutls_privkey_t and a gnutls_pcert_st
406 structure using gnutls_certificate_set_key().
408 ** libgnutls: Fixes to enable external signing callback to
409 operate with TLS 1.2. 
411 ** libgnutls: Fixed crash when printing ECDSA certificate key 
412 ID. Reported by Erik Jensen.
414 ** libgnutls: Corrected VIA padlock code for C3. In C3 benchmarks 
415 show a 50x increase in AES speed and a 14x increase in VIA nano. Added 
416 support for hashes and HMACs.
418 ** libgnutls: Compilation fixed when p11-kit is not detected.
420 ** libgnutls: Fixed the deflate compression code.
422 ** libgnutls: Added gnutls_x509_crt_get_authority_info_access.
423 Used to get the PKIX Authority Information Access (AIA) field.
425 ** libgnutls: gnutls_x509_crt_print supports printing AIA fields.
427 ** libgnutls: Added ability to gnutls_privkey_t to operate with
428 signing callback function.
430 ** API and ABI modifications:
431 gnutls_x509_crt_get_authority_info_access (x509.h): Added function.
432 gnutls_privkey_import_ext: Added function.
433 gnutls_certificate_set_key: Added function.
434 gnutls_info_access_what_t (x509.h): Added enum.
435 GNUTLS_OID_AIA (x509.h): Added symbol.
436 GNUTLS_OID_AD_OCSP (x509.h): Added symbol.
437 GNUTLS_OID_AD_CAISSUERS (x509.h): Added symbol.
439 * Version 3.0.3 (released 2011-09-18)
441 ** libgnutls: Added gnutls_record_get_discarded() to return the
442 number of discarded records in a DTLS session.
444 ** libgnutls: All functions related to RSA-EXPORT were deprecated.
445 Support for RSA-EXPORT ciphersuites will be ceased in future versions.
447 ** libgnutls: Memory leak fixes in credentials private key 
448 deinitialization. Reported by Dan Winship.
450 ** libgnutls: Memory leak fixes in ECC ciphersuites.
452 ** libgnutls: Do not send an empty extension structure in server 
453 hello. This affected old implementations that do not support extensions. 
454 Reported by J. Cameijo Cerdeira.
456 ** libgnutls: Allow CA importing of 0 certificates to succeed.
457 Reported by Jonathan Nieder <jrnieder@gmail.com> in
458 <http://bugs.debian.org/640639>.
460 ** libgnutls: Added support for VIA padlock AES optimizations.
461 (disabled by default)
463 ** libgnutls: Added support for elliptic curves in
464 PKCS #11.
466 ** libgnutls: Added gnutls_pkcs11_privkey_generate()
467 to allow generating a key in a token.
469 ** p11tool: Added generate-rsa, generate-dsa and 
470 generate-ecc options to allow generating private
471 keys in the token.
473 ** libgnutls: gnutls_transport_set_lowat dummy macro was 
474 removed.
476 ** API and ABI modifications:
477 gnutls_pkcs11_privkey_generate: Added
478 gnutls_pubkey_import_ecc_raw: Added
479 gnutls_pubkey_import_ecc_x962: Added
480 gnutls_pubkey_get_pk_ecc_x962: Added
481 gnutls_record_get_discarded: Added
484 * Version 3.0.2 (released 2011-09-01)
486 ** libgnutls: OpenPGP certificate type is not enabled
487 by default.
489 ** libgnutls: Added %NO_EXTENSIONS priority string.
491 ** libgnutls: Corrected issue in gnutls_record_recv()
492 triggered on encryption or compression error.
494 ** libgnutls: Compatibility fixes in CPU ID detection 
495 for i386 and old GCC.
497 ** gnutls-cli: Benchmark applications were incorporated
498 with it.
500 ** libgnutls: Corrected parsing of XMPP subject
501 alternative names.
503 ** libgnutls: Allow for out-of-order ChangeCipherSpec
504 message in DTLS.
506 ** libgnutls: gnutls_certificate_set_x509_key() and
507 gnutls_certificate_set_openpgp_key() operate as in 2.10.x
508 and allow the release of the private key during the
509 lifetime of the certificate structure.
511 ** API and ABI modifications:
512 GNUTLS_PRIVKEY_IMPORT_COPY: new gnutls_privkey_import() flag
515 * Version 3.0.1 (released 2011-08-20)
517 ** libgnutls: gnutls_certificate_set_x509_key_file() and 
518 friends support server name indication. If multiple 
519 certificates are set using these functions the proper one 
520 will be selected during a handshake. 
522 ** libgnutls: Added AES-256-GCM which was left out from
523 the previous release. Reported by Benjamin Hof.
525 ** libgnutls: When asking for a PKCS# 11 PIN multiple 
526 times, the flags in the callback were not being updated 
527 to reflect for PIN low count or final try.
529 ** libgnutls: Do not allow second instances of PKCS #11
530 modules.
532 ** libgnutls: fixed alignment issue in AES-NI code.
534 ** libgnutls: The config file at gnutls_pkcs11_init()
535 is being read if provided.
537 ** libgnutls: Ensure that a certificate list specified
538 using gnutls_certificate_set_x509_key() and friends, is 
539 sorted according to TLS specification (from subject to issuer).
541 ** libgnutls: Added GNUTLS_X509_CRT_LIST_FAIL_IF_UNSORTED flag for
542 gnutls_x509_crt_list_import. It checks whether the list to be 
543 imported is properly sorted.
545 ** crywrap: Added to the distribution. It is an application
546 that proxies TLS session to a port using a plaintext service.
548 ** doc: Many GTK-DOC improvements.
550 ** i18n: Translations were updated.
552 ** API and ABI modifications:
553 GNUTLS_X509_CRT_LIST_FAIL_IF_UNSORTED: New element in gnutls_certificate_import_flags
554 GNUTLS_PKCS11_PIN_WRONG: New flag for PIN callback
557 * Version 3.0.0 (released 2011-07-29)
559 ** libgnutls: writev_emu: stop on the first incomplete write. Patch by
560 Sjoerd Simons.
562 ** libgnutls: Fix zlib handling in gnutls.pc. Patch by Andreas
563 Metzler.
565 ** certtool: bug fixes in certificate request generation. Patch
566 by Petr PísaÅ™.
568 ** API and ABI modifications:
569 gnutls_pcert_list_import_x509_raw: ADDED
572 * Version 2.99.4 (released 2011-07-23)
574 ** doc: documentation updates.
576 ** libgnutls: gnutls_rsa_params_t is now identical to gnutls_x509_privkey_t
577 to avoid thread-safety issues. Reported by Sam Varshavchik.
579 ** libgnutls: Added compatibility mode with /etc/gnutls/pkcs11.conf
581 ** libgnutls: license upgraded to LGPLv3
583 ** libgnutls: gnutls_srp_verifier() returns data allocated with gnutls_malloc()
584 for consistency.
586 ** API and ABI modifications:
587 No changes since last version.
590 * Version 2.99.3 (released 2011-06-18)
592 ** libgnutls: Added new PKCS #11 flags to force an object being private or
593 not. (GNUTLS_PKCS11_OBJ_FLAG_MARK_PRIVATE and GNUTLS_PKCS11_OBJ_FLAG_MARK_NOT_PRIVATE)
595 ** libgnutls: Added SUITEB128 and SUITEB192 priority
596 strings to enable the NSA SuiteB cryptography ciphersuites.
598 ** libgnutls: Added gnutls_pubkey_verify_data2() that will
599 verify data provided the signature algorithm.
601 ** libgnutls: Simplified the handling of handshake messages to 
602 be hashed. Instead of hashing during the handshake process we now 
603 keep the data until handshake is over and hash them on request. 
604 This uses more memory but eliminates issues with TLS 1.2 and 
605 simplifies code.
607 ** libgnutls: Added AES-GCM optimizations using the PCLMULQDQ
608 instruction. Uses Andy Polyakov's assembly code.
610 ** libgnutls: Added gnutls_x509_trust_list_add_named_crt() and
611 gnutls_x509_trust_list_verify_named_crt() that allow having a
612 list of certificates in the trusted list that will be associated
613 with a name (e.g. server name) and will not be used as CAs.
615 ** libgnutls: PKCS #11 back-end rewritten to use p11-kit
616 http://p11-glue.freedesktop.org/p11-kit.html. Rewrite by
617 Stef Walter.
619 ** libgnutls: Added ECDHE-PSK ciphersuites for TLS (RFC 5489).
621 ** API and ABI modifications:
622 gnutls_pubkey_verify_data2: ADDED
623 gnutls_ecc_curve_get: ADDED
624 gnutls_x509_trust_list_add_named_crt: ADDED
625 gnutls_x509_trust_list_verify_named_crt: ADDED
626 gnutls_x509_privkey_verify_data: REMOVED
627 gnutls_crypto_bigint_register: REMOVED
628 gnutls_crypto_cipher_register: REMOVED
629 gnutls_crypto_digest_register: REMOVED
630 gnutls_crypto_mac_register: REMOVED
631 gnutls_crypto_pk_register: REMOVED
632 gnutls_crypto_rnd_register: REMOVED
633 gnutls_crypto_single_cipher_register: REMOVED
634 gnutls_crypto_single_digest_register: REMOVED
635 gnutls_crypto_single_mac_register: REMOVED
636 GNUTLS_KX_ECDHE_PSK: New key exchange method
637 GNUTLS_VERIFY_DISABLE_CRL_CHECKS: New certificate verification flag.
638 GNUTLS_PKCS11_OBJ_FLAG_MARK_PRIVATE: New PKCS#11 object flag.
639 GNUTLS_PKCS11_OBJ_FLAG_MARK_NOT_PRIVATE: New PKCS#11 object flag.
642 * Version 2.99.2 (released 2011-05-26)
644 ** libgnutls: Added Elliptic curve support. This is not
645 enabled by default. Requires priority strings:
646 +CURVE-ALL: to add all supported curves
647 +ECDHE-RSA: to add ephemeral ECDHE with an RSA-signed certificate
648 +ECDHE-ECDSA: to add ephemeral ECDHE with an ECDSA-signed certificate
649 +ANON-ECDHE: to add anonymous ECDH
651 ** libgnutls: PKCS #11 URLs conform to the latest draft
652 being http://tools.ietf.org/html/draft-pechanec-pkcs11uri-04.
654 ** certtool: Can now load private keys and public keys from PKCS #11 tokens
655 via URLs.
657 ** libgnutls: Added gnutls_global_set_audit_log_function() that allows
658 to get important auditing information including the corresponding session.
659 That might be useful to block DoS or other attacker from specific IPs.
661 ** libgnutls: gnutls_pkcs11_privkey_import_url() will now correctly read
662 the public key algorithm of the key.
664 ** libgnutls: Added gnutls_certificate_get_issuer() and
665 gnutls_x509_trust_list_get_issuer() to compensate for the
666 missing gnutls_certificate_get_x509_cas().
668 ** libgnutls: Added gnutls_x509_crq_verify() to allow
669 verification of the self signature in a certificate request.
670 This allows verifying whether the owner of the private key
671 is the generator of the request.
673 ** libgnutls: gnutls_x509_crt_set_crq() implicitly verifies
674 the self signature of the request.
676 ** API and ABI modifications:
677 gnutls_certificate_get_issuer: ADDED
678 gnutls_x509_trust_list_get_issuer: ADDED
679 gnutls_x509_crq_verify: ADDED
680 gnutls_global_set_audit_log_function: ADDED
681 gnutls_ecc_curve_get_name: ADDED
682 gnutls_ecc_curve_get_size: ADDED
683 gnutls_x509_privkey_import_ecc_raw: ADDED
684 gnutls_x509_privkey_export_ecc_raw: ADDED
685 gnutls_global_set_time_function: ADDED
687 GNUTLS_E_ECC_NO_SUPPORTED_CURVES: New error code
688 GNUTLS_E_ECC_UNSUPPORTED_CURVE: New error code
689 GNUTLS_KX_ECDHE_RSA: New key exchange method
690 GNUTLS_KX_ECDHE_ECDSA: New key exchange method
691 GNUTLS_KX_ANON_ECDH: New key exchange method
692 GNUTLS_PK_ECC: New public key algorithm
693 GNUTLS_SIGN_ECDSA_SHA1: New signature algorithm
694 GNUTLS_SIGN_ECDSA_SHA256: New signature algorithm
695 GNUTLS_SIGN_ECDSA_SHA384: New signature algorithm
696 GNUTLS_SIGN_ECDSA_SHA512: New signature algorithm 
697 GNUTLS_SIGN_ECDSA_SHA224: New signature algorithm
698 GNUTLS_ECC_CURVE_INVALID: New curve definition
699 GNUTLS_ECC_CURVE_SECP224R1: New curve definition
700 GNUTLS_ECC_CURVE_SECP256R1: New curve definition
701 GNUTLS_ECC_CURVE_SECP384R1: New curve definition
702 GNUTLS_ECC_CURVE_SECP521R1: New curve definition
705 * Version 2.99.1 (released 2011-04-23)
707 ** libgnutls: LZO support was removed.
709 ** libgnutls: Corrections in SSLv2 client hello parsing.
711 ** libgnutls: Added support for AES-NI if detected. Uses
712 Andy Polyakov's AES-NI code.
714 ** libgnutls: Restored HMAC-MD5 for compatibility. Although considered 
715 weak, several sites require it for connection. It is enabled for
716 "NORMAL" and "PERFORMANCE" priority strings.
718 ** libgnutls: depend on libdl.
720 ** libgnutls-extra: Dropped support of LZO compression via liblzo.
722 ** libgnutls: gnutls_transport_set_global_errno() was removed. This
723 function required GnuTLS to access system specific data, for no reason.
724 Use gnutls_transport_set_errno(), or your system's errno fascility
725 instead.
727 ** libgnutls: Added gnutls_certificate_set_retrieve_function2()
728 to set a callback to retrieve a certificate. The certificate is
729 received in a format that requires no processing from gnutls thus
730 it is suitable when performance is required.
732 ** API and ABI modifications:
733 gnutls_transport_set_global_errno: REMOVED
734 gnutls_certificate_set_retrieve_function2: ADDED
736 * Version 2.99.0 (released 2011-04-09)
738 ** libgnutls: Added Datagram TLS support.
740 ** libgnutls: Uses a single configure file and a single
741 gnulib library to save space.
743 ** libgnutls: Several bug fixes.
745 ** libgnutls: gnutls_transport_set_lowat() is no more.
747 ** libgnutls-openssl: modified to use modern gnutls' functions.
748 This introduces an ABI incompatibility with previous versions.
750 ** libgnutls: Corrected signature generation and verification
751 in the Certificate Verify message when in TLS 1.2. Reported
752 by Todd A. Ouska.
754 ** libgnutlsxx: The C++ interface returns exception on
755 every error and not only on fatal ones. This allows easier
756 handling of errors.
758 ** libgnutls: Corrected issue in DHE-PSK ciphersuites that ignored    
759 the PSK callback.
761 ** libgnutls: SRP and PSK are no longer set on the default priorities. 
762 They have to be explicitly set.
764 ** libgnutls: During handshake message verification using DSS
765 use the hash algorithm required by it.
767 ** libgnutls: gnutls_recv() return GNUTLS_E_PREMATURE_TERMINATION
768 on unexpected EOF, instead of GNUTLS_E_UNEXPECTED_PACKET_LENGTH.
770 ** libgnutls: Added GCM mode (interoperates with tls.secg.org)
772 ** libgnutls-extra: Inner application extension was removed.
773 It was never standardized nor published as an RFC.
775 ** libgnutls: Added new certificate verification functions, that
776 can provide more details and are more efficient. Check 
777 gnutls_x509_trust_list_*.
779 ** certtool: Uses the new certificate verification functions for
780 --verify-chain.
782 ** certtool: Added new certificate verification functionality
783 using the --verify option. Combined with --load-ca-certificate
784 it can verify a certificate chain against a list of certificates.
786 ** Several files unnecessarily included <gcrypt.h>; this has been fixed.
788 ** API and ABI modifications:
789 gnutls_dtls_set_timeouts: ADDED
790 gnutls_dtls_get_mtu: ADDED
791 gnutls_dtls_get_data_mtu: ADDED
792 gnutls_dtls_set_mtu: ADDED
793 gnutls_dtls_cookie_send: ADDED
794 gnutls_dtls_cookie_verify: ADDED
795 gnutls_dtls_prestate_set: ADDED
796 gnutls_x509_trust_list_verify_crt: ADDED
797 gnutls_x509_trust_list_add_crls: ADDED
798 gnutls_x509_trust_list_add_cas: ADDED
799 gnutls_x509_trust_list_init: ADDED
800 gnutls_x509_trust_list_deinit: ADDED
801 gnutls_cipher_add_auth: ADDED
802 gnutls_cipher_tag: ADDED
803 gnutls_psk_netconf_derive_key: REMOVED
804 gnutls_certificate_verify_peers: REMOVED
805 gnutls_session_set_finished_function: REMOVED
806 gnutls_ext_register: REMOVED
807 gnutls_certificate_get_x509_crls: REMOVED
808 gnutls_certificate_get_x509_cas: REMOVED
809 gnutls_certificate_get_openpgp_keyring: REMOVED
810 gnutls_session_get_server_random: REMOVED
811 gnutls_session_get_client_random: REMOVED
812 gnutls_session_get_master_secret: REMOVED
813 gnutls_ia_allocate_client_credentials: REMOVED
814 gnutls_ia_allocate_server_credentials: REMOVED
815 gnutls_ia_enable: REMOVED
816 gnutls_ia_endphase_send: REMOVED
817 gnutls_ia_extract_inner_secret: REMOVED
818 gnutls_ia_free_client_credentials: REMOVED
819 gnutls_ia_free_server_credentials: REMOVED
820 gnutls_ia_generate_challenge: REMOVED
821 gnutls_ia_get_client_avp_ptr: REMOVED
822 gnutls_ia_get_server_avp_ptr: REMOVED
823 gnutls_ia_handshake: REMOVED
824 gnutls_ia_handshake_p: REMOVED
825 gnutls_ia_permute_inner_secret: REMOVED
826 gnutls_ia_recv: REMOVED
827 gnutls_ia_send: REMOVED
828 gnutls_ia_set_client_avp_function: REMOVED
829 gnutls_ia_set_client_avp_ptr: REMOVED
830 gnutls_ia_set_server_avp_function: REMOVED
831 gnutls_ia_set_server_avp_ptr: REMOVED
832 gnutls_ia_verify_endphase: REMOVED
835 * Version 2.12.2 (released 2011-04-08)
837 ** libgnutls: Several updates and fixes for win32. Patches by LRN.
839 ** libgnutls: Several bug and memory leak fixes.
841 ** srptool: Accepts the -d option to enable debugging.
843 ** libgnutls: Corrected bug in gnutls_srp_verifier() that prevented
844 the allocation of a verifier. Reported by Andrew Wiseman.
846 ** API and ABI modifications:
847 No changes since last version.
850 * Version 2.12.1 (released 2011-04-02)
852 ** certtool: Generated certificate request with stricter permissions.
853 Reported by Luca Capello.
855 ** libgnutls: Bug fixes in opencdk code. Reported by Vitaly Kruglikov.
857 ** libgnutls: Corrected windows system_errno() function prototype.
859 ** libgnutls: C++ compatibility fix for compat.h. Reported by Mark Brand.
861 ** libgnutls: Fix size of gnutls_openpgp_keyid_t by using the
862 GNUTLS_OPENPGP_KEYID_SIZE definition. Reported by Andreas Metzler.
864 ** API and ABI modifications:
865 No changes since last version.
870 * Version 2.12.0 (released 2011-03-24)
872 ** certtool: Warns on generation of DSA keys of over 1024 bits, about
873 the incompatibility with TLS other than 1.2.
875 ** libgnutls: Modified signature algorithm selection in client
876 certificate request, to avoid failures in DSA certificates.
878 ** libgnutls: Instead of failing with internal error, return 
879 GNUTLS_E_INCOMPAT_DSA_KEY_WITH_TLS_PROTOCOL if an incompatible DSA
880 key with the negotiated protocol is encountered.
882 ** libgnutls: Bug fixes in the RSA ciphersuite behavior with openpgp keys.
884 ** libgnutls: Force state update when fork is detected in the nettle
885 rng.
887 ** libgnutls: modified gnutls_pubkey_import_openpgp() to use the preferred
888 subkey instead of setting explicitly one.
890 ** libgnutls: Corrected default behavior in record version of Client Hellos.
892 ** libgnutls-openssl: modified to use modern gnutls' functions.
893 This introduces an ABI incompatibility with previous versions.
895 ** API and ABI modifications:
896 gnutls_pubkey_import_openpgp: MODIFIED
899 * Version 2.11.7
901 ** libgnutls: The deprecated  gnutls_x509_privkey_sign_hash() was
902 replaced by gnutls_privkey_sign_hash2().
904 ** libgnutls: gnutls_pubkey_verify_data, gnutls_pubkey_verify_hash,
905 gnutls_x509_privkey_verify_data, gnutls_x509_crt_verify_data, 
906 gnutls_x509_crt_verify_hash return the negative error code 
907 GNUTLS_E_PK_SIG_VERIFY_FAILED if verification fails to simplify error 
908 checking.
910 ** libgnutls: Added helper functions for signature verification:
911 gnutls_pubkey_verify_data() and gnutls_pubkey_import_privkey().
913 ** libgnutls: Modified gnutls_privkey_sign_data().
915 ** gnutls_x509_crl_privkey_sign2(), gnutls_x509_crq_sign2()
916 gnutls_x509_privkey_sign_hash(), gnutls_x509_privkey_sign_data(),
917 gnutls_x509_crt_verify_hash(), gnutls_x509_crt_verify_data(), were
918 deprecated for gnutls_x509_crl_privkey_sign(),
919 gnutls_x509_crq_privkey_sign(), gnutls_privkey_sign_hash(),
920 gnutls_privkey_sign_data(), gnutls_pubkey_verify_hash()
921 gnutls_pubkey_verify_data() respectively.
923 ** libgnutls: gnutls_*_export_raw() functions now add leading zero in
924 integers.
926 ** libgnutls: Added convenience functions gnutls_x509_crl_list_import2()
927 and gnutls_x509_crt_list_import2().
929 ** crypto.h: Fix use with C++.
930 Reported by "Brendan Doherty" <brendand@gentrack.com>.
932 ** API and ABI modifications:
933 gnutls_x509_crl_list_import: ADDED
934 gnutls_x509_crl_list_import2: ADDED
935 gnutls_x509_crt_list_import2: ADDED
936 gnutls_x509_crl_get_raw_issuer_dn: ADDED
937 gnutls_pubkey_import_privkey: ADDED
938 gnutls_pubkey_verify_data: ADDED
939 gnutls_privkey_sign_hash: MODIFIED (was added in 2.11.0)
940 gnutls_privkey_sign_data: MODIFIED (was added in 2.11.0)
941 gnutls_x509_crq_sign2: DEPRECATED (use: gnutls_x509_crq_privkey_sign)
942 gnutls_x509_crq_sign: DEPRECATED (use: gnutls_x509_crq_privkey_sign)
943 gnutls_x509_crq_get_preferred_hash_algorithm: REMOVED (was added in 2.11.0)
944 gnutls_x509_crl_sign: DEPRECATED (use: gnutls_x509_crl_privkey_sign)
945 gnutls_x509_crl_sign2: DEPRECATED (use: gnutls_x509_crl_privkey_sign)
946 gnutls_x509_privkey_sign_data: DEPRECATED (use: gnutls_privkey_sign_data2)
947 gnutls_x509_privkey_sign_hash: DEPRECATED (use: gnutls_privkey_sign_hash2)
948 gnutls_x509_privkey_verify_data: DEPRECATED (use: gnutls_pubkey_verify_data)
949 gnutls_session_set_finished_function: DEPRECATED
950 gnutls_x509_crt_verify_hash: DEPRECATED (use: gnutls_pubkey_verify_hash)
951 gnutls_x509_crt_verify_data: DEPRECATED (use: gnutls_pubkey_verify_data)
952 gnutls_x509_crt_get_verify_algorithm: DEPRECATED (use: gnutls_pubkey_get_verify_algorithm)
953 gnutls_x509_crt_get_preferred_hash_algorithm: DEPRECATED (use: gnutls_pubkey_get_preferred_hash_algorithm)
954 gnutls_openpgp_privkey_sign_hash: DEPRECATED (use: gnutls_privkey_sign_hash2)
955 gnutls_pkcs11_privkey_sign_hash: REMOVED (was added in 2.11.0)
956 gnutls_pkcs11_privkey_decrypt_data: REMOVED (was added in 2.11.0)
957 gnutls_privkey_sign_hash: REMOVED (was added in 2.11.0)
959 * Version 2.11.6 (released 2010-12-06)
961 ** libgnutls: Record version of Client Hellos is now set by default to
962 SSL 3.0. To restore the previous default behavior use %LATEST_RECORD_VERSION
963 priority string.
965 ** libgnutls: Use ASN1_NULL when writing parameters for RSA signatures. 
966 This makes us comply with RFC3279. Reported by Michael Rommel.
968 ** gnutls-serv: Corrected a buffer overflow. Reported and patch by Tomas Mraz.
970 ** API and ABI modifications:
971 No changes since last version.
973 * Version 2.11.5 (released 2010-12-01)
975 ** libgnutls: Reverted default behavior for verification and
976 introduced GNUTLS_VERIFY_DO_NOT_ALLOW_X509_V1_CA_CRT. Thus by default
977 V1 trusted CAs are allowed, unless the new flag is specified.
979 ** libgnutls: Correctly add leading zero to PKCS #8 encoded DSA key.
980 Reported by Jeffrey Walton.
982 ** libgnutls: Added SIGN-ALL, CTYPE-ALL, COMP-ALL, and VERS-TLS-ALL
983 as priority strings. Those allow to set all the supported algorithms
984 at once.
986 ** p11tool: Introduced. It allows manipulating pkcs 11 tokens.
988 ** gnutls-cli: Print channel binding only in verbose mode.
989 Before it printed it after the 'Compression:' output, thus breaking
990 Emacs starttls.el string searches.
992 ** API and ABI modifications:
993 gnutls_pkcs11_token_init: New function
994 gnutls_pkcs11_token_set_pin: New function
996 * Version 2.11.4 (released 2010-10-15)
998 ** libgnutls: Add new API gnutls_session_channel_binding.
999 The function is used to get the channel binding data.  Currently only
1000 the "tls-unique" (RFC 5929) channel binding type is supported, through
1001 the GNUTLS_CB_TLS_UNIQUE type.  See new section "Channel Bindings" in
1002 the manual.
1004 ** gnutls-cli, gnutls-serv: Print 'tls-unique' Channel Bindings.
1006 ** doc: Added pkcs11.h header file to GTK-DOC manual.
1008 ** build: Update gnulib files.
1010 ** i18n: Update translations.
1012 ** tests: Add self tests gendh.c.  Speed up Guile self checks.
1014 ** API and ABI modifications:
1015 gnutls_session_channel_binding: New function.
1016 gnutls_channel_binding_t: New enumeration.
1017 GNUTLS_CB_TLS_UNIQUE: New gnutls_channel_binding_t enum member.
1018 GNUTLS_E_CHANNEL_BINDING_NOT_AVAILABLE: New error code.
1020 * Version 2.11.3 (released 2010-10-14)
1022 ** Indent code to follow the GNU Coding Standard.
1023 You should be able to unpack the 2.11.2 release and run 'make indent'
1024 twice to get exactly the same content as 2.11.3 except for generated
1025 files.  Using GNU Indent 2.2.11.
1027 ** API and ABI modifications:
1028 No changes since last version.
1030 * Version 2.11.2 (released 2010-10-08)
1032 ** libgnutls: Several bug fixes on session resumption
1033 and session tickets support.
1035 ** libgnutls: Add new extended key usage ipsecIKE.
1037 ** certtool: Renamed PKCS #11 options to: --p11-provider,
1038 --p11-export-url, --p11-list-certs, --p11-list-certs,
1039 --p11-list-privkeys, --p11-list-trusted, --p11-list-all-certs,
1040 --p11-list-all, --p11-list-tokens, --p11-login, --p11-write,
1041 --p11-write-label, --p11-write-trusted, --p11-detailed-url,
1042 --p11-delete-url
1044 ** libgnutls: Corrected bug that caused importing DSA keys as RSA,
1045 introduced with the new nettle code.
1047 ** libgnutls: Corrected advertizing issue for session tickets.
1049 ** API and ABI modifications:
1050 gnutls_x509_crt_get_subject_unique_id: ADDED.
1051 gnutls_x509_crt_get_issuer_unique_id: ADDED.
1053 * Version 2.11.1 (released 2010-09-14)
1055 ** libgnutls: Nettle is the default crypto back end. Use --with-libgcrypt
1056 to use the libgcrypt back end.
1058 ** libgnutls: Depend on nettle 2.1. This makes nettle a fully working
1059 backend crypto library.
1061 ** libgnutls: Added RSA_NULL_SHA1 and SHA256 ciphersuites.
1063 ** libgnutls: Several updates in the buffering internal interface.
1065 ** libgnutls: Is now more liberal in the PEM decoding. That is spaces and 
1066 tabs are being skipped.
1068 ** libgnutls: Added support for draft-pechanec-pkcs11uri-02.
1070 ** libgnutls: The %COMPAT flag now allows larger records that violate the
1071 TLS spec.
1073 ** libgnutls: by default lowat level has been set to zero to avoid unnecessary
1074 system calls. Applications that depended on it being 1 should explicitly call
1075 gnutls_transport_set_lowat().
1077 ** libgnutls: Updated documentation and gnutls_pk_params_t mappings
1078 to ECRYPT II recommendations. Mappings were moved to a single location
1079 and DSA keys are handled differently (since DSA2 allows for 1024,2048
1080 and 3072 keys only).
1082 ** libgnutls: gnutls_x509_privkey_import() will fallback to
1083 gnutls_x509_privkey_import_pkcs8() without a password, if it
1084 is unable to decode the key.
1086 ** libgnutls: HMAC-MD5 no longer used by default.
1088 ** API and ABI modifications:
1089 gnutls_openpgp_privkey_sec_param: ADDED
1090 gnutls_x509_privkey_sec_param: ADDED
1092 * Version 2.11.0 (released 2010-07-22)
1094 ** libgnutls: support scattered write using writev(). This takes
1095 advantage of the new buffering layer and allows queuing of packets
1096 and flushing them. This is currently used for handshake messages
1097 only.
1099 ** libgnutls: Added gnutls_global_set_mutex() to allow setting
1100 alternative locking procedures. By default the system available
1101 locking is used. In *NIX pthreads are used and in windows the
1102 critical section API. This follows a different approach than the
1103 previous versions that depended on libgcrypt initialization. The
1104 locks are now set by default in systems that support it. Programs
1105 that used gcry_control() to set thread locks should insert it into
1106 a block of
1107 #if GNUTLS_VERSION_NUMBER <= 0x020b00
1108         gcry_control(...)
1109 #endif
1111 ** libgnutls: Added support for reading DN from EV-certificates.
1112 New DN values:
1113 jurisdictionOfIncorporationLocalityName,
1114 jurisdictionOfIncorporationStateOrProvinceName,
1115 jurisdictionOfIncorporationCountryName
1117 ** libgnutls: Added support for DSA signing/verifying with bit 
1118 length over 1024.
1120 ** libgnutls-extra: When in FIPS mode gnutls_global_init_extra()
1121 has to be called to register any required md5 handlers.
1123 ** libgnutls: Internal buffering code was replaced by simpler
1124 code contributed by Jonathan Bastien-Filiatrault.
1126 ** libgnutls: Internal API for extensions augmented to allow
1127 safe storing and loading of data on resumption. This allows writing
1128 self-contained extensions (when possible). As a side effect
1129 the OPRFI extension was removed.
1131 ** libgnutls: Added support for DSA-SHA256 and DSA-SHA224
1133 ** libgnutls: Added PKCS #11 support and an API to access objects in
1134 gnutls/pkcs11.h. Currently certificates and public keys can be
1135 imported from tokens, and operations can be performed on private keys.
1137 ** libgnutls: Added abstract gnutls_privkey_t and gnutls_pubkey_t
1139 ** libgnutls: Added initial support for the nettle library. It uses
1140 the system's random generator for seeding. That is /dev/urandom in Linux, 
1141 system calls in Win32 and EGD on other systems.
1143 ** libgnutls: Corrected issue on the %SSL3_RECORD_VERSION priority string. It now
1144     works even when resuming a session.
1146 ** libgnutls: Added gnutls_certificate_set_retrieve_function() to replace the
1147 similar gnutls_certificate_set_server_retrieve_function() and
1148 gnutls_certificate_set_client_retrieve_function(). In addition it support
1149 PKCS #11 private keys.
1151 ** libgnutls: Added  gnutls_pkcs11_copy_x509_crt(), gnutls_pkcs11_copy_x509_privkey(),
1152 and gnutls_pkcs11_delete_url() to allow copying and deleting data in tokens.
1154 ** libgnutls: Added gnutls_sec_param_to_pk_bits() et al. to allow select bit
1155 sizes for private keys using a human understandable scale.
1157 ** certtool: Added new options: --pkcs11-list-tokens, --pkcs11-list-all
1158 --pkcs11-list-all-certs, --pkcs11-list-trusted, --pkcs11-list-certs,
1159 --pkcs11-delete-url, --pkcs11-write
1161 certtool: The --pkcs-cipher is taken into account when generating a
1162 private key. The default cipher used now is aes-128. The old behavior can
1163 be simulated by specifying "--pkcs-cipher 3des-pkcs12".
1165 certtool: Added --certificate-pubkey to print the public key of the
1166 certificate.
1168 ** gnutls-cli/gnutls-serv: --x509cafile, --x509certfile and --x509keyfile
1169 can now accept a PKCS #11 URL in addition to a file. This will allow for
1170 example to use the Gnome-keyring trusted certificate list to verify
1171 connections using a url such as:
1172 pkcs11:token=Root%20CA%20Certificates;serial=1%3AROOTS%3ADEFAULT;model=1%2E0;manufacturer=Gnome%20Keyring
1174 ** API and ABI modifications:
1175 gnutls_certificate_set_server_retrieve_function: DEPRECATED
1176 gnutls_certificate_set_client_retrieve_function: DEPRECATED
1177 gnutls_sign_callback_set: DEPRECATED
1178 gnutls_global_set_mutex: ADDED
1179 gnutls_pubkey_get_preferred_hash_algorithm: ADDED
1180 gnutls_x509_crt_get_preferred_hash_algorithm: ADDED
1181 gnutls_x509_privkey_export_rsa_raw2: ADDED
1182 gnutls_rnd: ADDED
1183 gnutls_sec_param_to_pk_bits: ADDED
1184 gnutls_pk_bits_to_sec_param: ADDED
1185 gnutls_sec_param_get_name: ADDED
1186 gnutls_pkcs11_type_get_name: ADDED
1187 gnutls_certificate_set_retrieve_function: ADDED
1188 gnutls_pkcs11_init: ADDED
1189 gnutls_pkcs11_deinit: ADDED
1190 gnutls_pkcs11_set_pin_function: ADDED
1191 gnutls_pkcs11_set_token_function: ADDED
1192 gnutls_pkcs11_add_provider: ADDED
1193 gnutls_pkcs11_obj_init: ADDED
1194 gnutls_pkcs11_obj_import_url: ADDED
1195 gnutls_pkcs11_obj_export_url: ADDED
1196 gnutls_pkcs11_obj_deinit: ADDED
1197 gnutls_pkcs11_obj_export: ADDED
1198 gnutls_pkcs11_obj_list_import_url: ADDED
1199 gnutls_pkcs11_obj_export: ADDED
1200 gnutls_x509_crt_import_pkcs11: ADDED
1201 gnutls_pkcs11_obj_get_type: ADDED
1202 gnutls_x509_crt_list_import_pkcs11: ADDED
1203 gnutls_x509_crt_import_pkcs11_url: ADDED
1204 gnutls_pkcs11_obj_get_info: ADDED
1205 gnutls_pkcs11_token_get_info: ADDED
1206 gnutls_pkcs11_token_get_url: ADDED
1207 gnutls_pkcs11_privkey_init: ADDED
1208 gnutls_pkcs11_privkey_deinit: ADDED
1209 gnutls_pkcs11_privkey_get_pk_algorithm: ADDED
1210 gnutls_pkcs11_privkey_get_info: ADDED
1211 gnutls_pkcs11_privkey_import_url: ADDED
1212 gnutls_pkcs11_privkey_sign_data: ADDED
1213 gnutls_pkcs11_privkey_sign_hash: ADDED
1214 gnutls_pkcs11_privkey_decrypt_data: ADDED
1215 gnutls_privkey_init: ADDED
1216 gnutls_privkey_deinit: ADDED
1217 gnutls_privkey_get_pk_algorithm: ADDED
1218 gnutls_privkey_get_type: ADDED
1219 gnutls_privkey_import_pkcs11: ADDED
1220 gnutls_privkey_import_x509: ADDED
1221 gnutls_privkey_import_openpgp: ADDED
1222 gnutls_privkey_sign_data: ADDED
1223 gnutls_privkey_sign_hash: ADDED
1224 gnutls_privkey_decrypt_data: ADDED
1225 gnutls_pkcs11_privkey_export_url: ADDED
1226 gnutls_x509_crq_privkey_sign: ADDED
1227 gnutls_x509_crl_privkey_sign: ADDED
1228 gnutls_x509_crt_privkey_sign: ADDED
1229 gnutls_pubkey_init: ADDED
1230 gnutls_pubkey_deinit: ADDED
1231 gnutls_pubkey_get_pk_algorithm: ADDED
1232 gnutls_pubkey_import_x509: ADDED
1233 gnutls_pubkey_import_openpgp: ADDED
1234 gnutls_pubkey_get_pk_rsa_raw: ADDED
1235 gnutls_pubkey_get_pk_dsa_raw: ADDED
1236 gnutls_pubkey_export: ADDED
1237 gnutls_pubkey_get_key_id: ADDED
1238 gnutls_pubkey_get_key_usage: ADDED
1239 gnutls_pubkey_verify_hash: ADDED
1240 gnutls_pubkey_get_verify_algorithm: ADDED
1241 gnutls_pkcs11_type_get_name: ADDED
1242 gnutls_pubkey_import_pkcs11_url: ADDED
1243 gnutls_pubkey_import: ADDED
1244 gnutls_pubkey_import_pkcs11: ADDED
1245 gnutls_pubkey_import_dsa_raw: ADDED
1246 gnutls_pubkey_import_rsa_raw: ADDED
1247 gnutls_x509_crt_set_pubkey: ADDED
1248 gnutls_x509_crq_set_pubkey: ADDED
1249 gnutls_pkcs11_copy_x509_crt: ADDED
1250 gnutls_pkcs11_copy_x509_privkey: ADDED
1251 gnutls_pkcs11_delete_url: ADDED
1253 * Version 2.10.1 (released 2010-07-25)
1255 ** libgnutls: Added support for broken certificates that indicate RSA
1256 with strange OIDs.
1258 ** gnutls-cli: Allow verification using V1 CAs.
1260 ** libgnutls: gnutls_x509_privkey_import() will fallback to
1261 gnutls_x509_privkey_import_pkcs8() without a password, if it
1262 is unable to decode the key.
1264 ** libgnutls: Correctly deinitialize crypto API functions to prevent
1265 a memory leak.  Reported by Mads Kiilerich.
1267 ** certtool: If asked to generate DSA keys of size more than 1024 bits,
1268 issue a warning, that the output key might not be working everywhere.
1270 ** certtool: The --pkcs-cipher is taken into account when generating a
1271 private key. The default cipher used now is aes-128. The old behavior
1272 can be simulated by specifying "--pkcs-cipher 3des-pkcs12".
1274 ** API and ABI modifications:
1275 No changes since last version.
1277 * Version 2.10.0 (released 2010-06-25)
1279 ** API and ABI modifications:
1280 No changes since last version.
1282 * Version 2.9.12 (released 2010-06-17)
1284 ** gnutls-cli: Make --starttls work again.
1285 Problem introduced in patch to use read() instead of fgets() committed
1286 on 2010-01-27.
1288 ** API and ABI modifications:
1289 No changes since last version.
1291 * Version 2.9.11 (released 2010-06-07)
1293 ** libgnutls: Removed two APIs related to safe renegotiation.
1294 Use priority strings instead.  The APIs were
1295 gnutls_safe_negotiation_set_initial and gnutls_safe_renegotiation_set.
1296 (Remember that we don't promise ABI stability during development
1297 series, so this doesn't cause an shared library ABI increment.)
1299 ** tests: More self testing of safe renegotiation extension.
1300 See tests/safe-renegotiation/README for more information.
1302 ** doc: a PDF version of the API reference manual (GTK-DOC) is now built.
1304 ** doc: Terms 'GNUTLS' and 'GNU TLS' were changed to 'GnuTLS' for consistency.
1306 ** API and ABI modifications:
1307 gnutls_safe_negotiation_set_initial: REMOVED.
1308 gnutls_safe_renegotiation_set: REMOVED.
1310 * Version 2.9.10 (released 2010-04-22)
1312 ** libgnutls: Time verification extended to trusted certificate list.
1313 Unless new constant GNUTLS_VERIFY_DISABLE_TRUSTED_TIME_CHECKS flag is
1314 specified.
1316 ** certtool: Display postalCode and Name X.509 DN attributes correctly.
1317 Based on patch by Pavan Konjarla.  Adds new constant
1318 GNUTLS_OID_X520_POSTALCODE and GNUTLS_OID_X520_NAME.
1320 ** libgnutls: Added Steve Dispensa's patch for safe renegotiation (RFC 5746)
1321 Solves the issue discussed in:
1322 <http://www.ietf.org/mail-archive/web/tls/current/msg03928.html> and
1323 <http://www.ietf.org/mail-archive/web/tls/current/msg03948.html>.
1324 Note that to allow connecting to unpatched servers the full protection
1325 is only enabled if the priority string %SAFE_RENEGOTIATION is
1326 specified. You can check whether protection is in place by querying
1327 gnutls_safe_renegotiation_status().  New error codes
1328 GNUTLS_E_SAFE_RENEGOTIATION_FAILED and
1329 GNUTLS_E_UNSAFE_RENEGOTIATION_DENIED added.
1331 ** libgnutls: When checking openpgp self signature also check the signatures
1332 ** of all subkeys.
1333 Ilari Liusvaara noticed and reported the issue and provided test
1334 vectors as well.
1336 ** libgnutls: Added cryptodev support (/dev/crypto).
1337 Tested with http://www.logix.cz/michal/devel/cryptodev/.  Added
1338 benchmark utility for AES.  Adds new error codes
1339 GNUTLS_E_CRYPTODEV_IOCTL_ERROR and GNUTLS_E_CRYPTODEV_DEVICE_ERROR.
1341 ** libgnutls: Exported API to access encryption and hash algorithms.
1342 The new API functions are gnutls_cipher_decrypt, gnutls_cipher_deinit,
1343 gnutls_cipher_encrypt, gnutls_cipher_get_block_size,
1344 gnutls_cipher_init, gnutls_hash, gnutls_hash_deinit, gnutls_hash_fast,
1345 gnutls_hash_get_len, gnutls_hash_init, gnutls_hash_output,
1346 gnutls_hmac, gnutls_hmac_deinit, gnutls_hmac_fast,
1347 gnutls_hmac_get_len, gnutls_hmac_init, gnutls_hmac_output.  New API
1348 constants are GNUTLS_MAC_SHA224 and GNUTLS_DIG_SHA224.
1350 ** libgnutls: Added gnutls_certificate_set_verify_function() to allow
1351 verification of certificate upon receipt rather than waiting until the
1352 end of the handshake.
1354 ** libgnutls: Don't send alerts during handshake.
1355 Instead new error code GNUTLS_E_UNKNOWN_SRP_USERNAME is added.
1357 ** certtool: Corrected two issues that affected certificate request generation.
1358 (1) Null padding is added on integers (found thanks to Wilankar Trupti),
1359 (2) In optional SignatureAlgorithm parameters field for DSA keys the DSA
1360 parameters were added. Those were rejected by Verisign. Gnutls no longer adds 
1361 those parameters there since other implementations don't do either and having 
1362 them does not seem to offer anything (anyway you need the signer's certificate
1363 to verify thus public key will be available). Found thanks to Boyan Kasarov.
1364 This however has the side-effect that public key IDs shown by certtool are
1365 now different than previous gnutls releases.
1366 (3) the option --pgp-certificate-info will verify self signatures
1368 ** certtool: Allow exporting of Certificate requests on DER format.
1370 ** certtool: New option --no-crq-extensions to avoid extensions in CSRs.
1372 ** gnutls-cli: Handle reading binary data from server.
1373 Reported by and tiny patch from Vitaly Mayatskikh
1374 <v.mayatskih@gmail.com> in
1375 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/4096>.
1377 ** minitasn1: Upgraded to libtasn1 version 2.6.
1379 ** i18n: Updated Czech, Dutch, French, Polish, Swedish translation.
1380 ** Added Italian and Simplified Chinese translation.
1381 Thanks to Petr Pisar, Erwin Poeze, Nicolas Provost, Jakub Bogusz,
1382 Daniel Nylander, Sergio Zanchetta, Tao Wei, and Aron Xu.
1384 ** doc: The GTK-DOC manual is significantly improved.
1386 ** API and ABI modifications:
1387 %DISABLE_SAFE_RENEGOTIATION: Added to priority strings (do not use).
1388 %INITIAL_SAFE_RENEGOTIATION: Added to priority strings.
1389 %UNSAFE_RENEGOTIATION: Added to priority strings.
1390 GNUTLS_DIG_SHA224: ADDED.
1391 GNUTLS_E_CRYPTODEV_DEVICE_ERROR: ADDED.
1392 GNUTLS_E_CRYPTODEV_IOCTL_ERROR: ADDED.
1393 GNUTLS_E_SAFE_RENEGOTIATION_FAILED: ADDED.
1394 GNUTLS_E_UNKNOWN_SRP_USERNAME: ADDED.
1395 GNUTLS_E_UNSAFE_RENEGOTIATION_DENIED: ADDED.
1396 GNUTLS_MAC_SHA224: ADDED.
1397 GNUTLS_OID_X520_NAME: ADDED.
1398 GNUTLS_OID_X520_POSTALCODE: ADDED.
1399 GNUTLS_VERIFY_DISABLE_TRUSTED_TIME_CHECKS: ADDED.
1400 GNUTLS_VERSION_MAX: ADDED.
1401 gnutls_certificate_set_verify_function: ADDED.
1402 gnutls_cipher_decrypt: ADDED.
1403 gnutls_cipher_deinit: ADDED.
1404 gnutls_cipher_encrypt: ADDED.
1405 gnutls_cipher_get_block_size: ADDED.
1406 gnutls_cipher_init: ADDED.
1407 gnutls_hash: ADDED.
1408 gnutls_hash_deinit: ADDED.
1409 gnutls_hash_fast: ADDED.
1410 gnutls_hash_get_len: ADDED.
1411 gnutls_hash_init: ADDED.
1412 gnutls_hash_output: ADDED.
1413 gnutls_hmac: ADDED.
1414 gnutls_hmac_deinit: ADDED.
1415 gnutls_hmac_fast: ADDED.
1416 gnutls_hmac_get_len: ADDED.
1417 gnutls_hmac_init: ADDED.
1418 gnutls_hmac_output: ADDED.
1419 gnutls_safe_negotiation_set_initial: ADDED.
1420 gnutls_safe_renegotiation_set: ADDED.
1421 gnutls_safe_renegotiation_status: ADDED.
1423 * Version 2.9.9 (released 2009-11-09)
1425 ** libgnutls: Cleanups and several bug fixes.
1426 Found by Steve Grubb and Tomas Mraz.
1428 ** Link libgcrypt explicitly to certtool, gnutls-cli, gnutls-serv.
1430 ** Fix --disable-valgrind-tests.
1431 Reported by Ingmar Vanhassel in
1432 <https://savannah.gnu.org/support/?107029>.
1434 ** API and ABI modifications:
1435 No changes since last version.
1437 * Version 2.9.8 (released 2009-11-05)
1439 ** libgnutls: Fix for memory leaks on interrupted handshake.
1440 Reported by Tang Tong.
1442 ** libgnutls: Addition of support for TLS 1.2 signature algorithms
1443 ** extension and certificate verify field.
1444 This requires changes for TLS 1.2 servers and clients that use
1445 callbacks for certificate retrieval.  They are now required to check
1446 with gnutls_sign_algorithm_get_requested() whether the certificate
1447 they send complies with the peer's preferences in signature
1448 algorithms.
1450 ** libgnutls: In server side when resuming a session do not overwrite the 
1451 ** initial session data with the resumed session data.
1453 ** libgnutls: Added support for AES-128, AES-192 and AES-256 in PKCS #8
1454 ** encryption.
1455 This affects also PKCS #12 encoded files.  This adds the following new
1456 enums: GNUTLS_CIPHER_AES_192_CBC, GNUTLS_PKCS_USE_PBES2_AES_128,
1457 GNUTLS_PKCS_USE_PBES2_AES_192, GNUTLS_PKCS_USE_PBES2_AES_256.
1459 ** libgnutls: Fix PKCS#12 encoding.
1460 The error you would get was "The OID is not supported.".  Problem
1461 introduced for the v2.8.x branch in 2.7.6.
1463 ** certtool: Added the --pkcs-cipher option.
1464 To explicitely specify the encryption algorithm to use.
1466 ** tests: Added "pkcs12_encode" self-test to check PKCS#12 functions.
1468 ** tests: Fix time bomb in chainverify self-test.
1469 Reported by Andreas Metzler <ametzler@downhill.at.eu.org> in
1470 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3925>.
1472 ** tests: Fix expired cert in chainverify self-test.
1474 ** i18n: Vietnamese translation updated.
1475 Thanks to Clytie Siddall.
1477 ** API and ABI modifications:
1478 GNUTLS_CIPHER_AES_192_CBC: ADDED to gnutls/gnutls.h.
1479 GNUTLS_PKCS_USE_PBES2_AES_128: ADDED to gnutls/x509.h.
1480 GNUTLS_PKCS_USE_PBES2_AES_192: ADDED to gnutls/x509.h.
1481 GNUTLS_PKCS_USE_PBES2_AES_256: ADDED to gnutls/x509.h.
1482 GNUTLS_BAG_SECRET: ADDED to gnutls/pkcs12.h.
1483 GNUTLS_DIG_UNKNOWN: ADDED to gnutls/gnutls.h.
1484 gnutls_sign_algorithm_get_requested: ADDED.
1486 * Version 2.9.7 (released 2009-10-06)
1488 ** libgnutls: TLS 1.2 server mode fixes.
1489 Now interoperates against Opera.  Contributed by Daiki Ueno.
1491 ** libgnutlsxx: Fix link problems.
1492 Tiny patch from Boyan Kasarov <bkasarov@gmail.com>.
1494 ** guile: Compatibility with guile 2.x.
1495 By Ludovic Courtes <ludovic.courtes@laas.fr>.
1497 ** API and ABI modifications:
1498 No changes since last version.
1500 * Version 2.9.6 (released 2009-09-22)
1502 ** libgnutls: Enable Camellia ciphers by default.
1504 ** API and ABI modifications:
1505 No changes since last version.
1507 * Version 2.9.5 (released 2009-09-10)
1509 ** libgnutls: Add new functions to extract X.509 Issuer Alternative Names.
1510 The new functions are gnutls_x509_crt_get_issuer_alt_name2,
1511 gnutls_x509_crt_get_issuer_alt_name, and
1512 gnutls_x509_crt_get_issuer_alt_othername_oid.  Contributed by Brad
1513 Hards <bradh@frogmouth.net>.
1515 ** API and ABI modifications:
1516 gnutls_x509_crt_get_issuer_alt_name2: ADDED.
1517 gnutls_x509_crt_get_issuer_alt_name: ADDED.
1518 gnutls_x509_crt_get_issuer_alt_othername_oid: ADDED.
1520 * Version 2.9.4 (released 2009-09-03)
1522 ** libgnutls: Client-side TLS 1.2 and SHA-256 ciphersuites now works.
1523 The new supported ciphersuites are AES-128/256 in CBC mode with
1524 ANON-DH/RSA/DHE-DSS/DHE-RSA.  Contributed by Daiki Ueno.  Further,
1525 SHA-256 is now the preferred default MAC (however it is only used with
1526 TLS 1.2).
1528 ** libgnutls: Make OpenPGP hostname checking work again.
1529 The patch to resolve the X.509 CN/SAN issue accidentally broken
1530 OpenPGP hostname comparison.
1532 ** libgnutls: When printing X.509 certificates, handle XMPP SANs better.
1533 Reported by Howard Chu <hyc@symas.com> in
1534 <https://savannah.gnu.org/support/?106975>.
1536 ** Fix use of deprecated types internally.
1537 Use of deprecated types in GnuTLS from now on will lead to a compile
1538 error, to prevent this from happening again.
1540 ** API and ABI modifications:
1541 No changes since last version.
1543 * Version 2.9.3 (released 2009-08-19)
1545 ** libgnutls: Support for TLS tickets was contributed by Daiki Ueno.
1546 The new APIs are gnutls_session_ticket_enable_client,
1547 gnutls_session_ticket_enable_server, and
1548 gnutls_session_ticket_key_generate.
1550 ** gnutls-cli, gnutls-serv: New parameter --noticket to disable TLS tickets.
1552 ** API and ABI modifications:
1553 gnutls_session_ticket_key_generate: ADDED.
1554 gnutls_session_ticket_enable_client: ADDED.
1555 gnutls_session_ticket_enable_server: ADDED.
1557 * Version 2.9.2 (released 2009-08-14)
1559 ** libgnutls: Fix problem with NUL bytes in X.509 CN and SAN fields.
1560 By using a NUL byte in CN/SAN fields, it was possible to fool GnuTLS
1561 into 1) not printing the entire CN/SAN field value when printing a
1562 certificate and 2) cause incorrect positive matches when matching a
1563 hostname against a certificate.  Some CAs apparently have poor
1564 checking of CN/SAN values and issue these (arguable invalid)
1565 certificates.  Combined, this can be used by attackers to become a
1566 MITM on server-authenticated TLS sessions.  The problem is mitigated
1567 since attackers needs to get one certificate per site they want to
1568 attack, and the attacker reveals his tracks by applying for a
1569 certificate at the CA.  It does not apply to client authenticated TLS
1570 sessions.  Research presented independently by Dan Kaminsky and Moxie
1571 Marlinspike at BlackHat09.  Thanks to Tomas Hoger <thoger@redhat.com>
1572 for providing one part of the patch.  [GNUTLS-SA-2009-4] [CVE-2009-2730].
1574 ** libgnutls: Fix rare failure in gnutls_x509_crt_import.
1575 The function may fail incorrectly when an earlier certificate was
1576 imported to the same gnutls_x509_crt_t structure.
1578 ** minitasn1: Internal copy updated to libtasn1 v2.3.
1580 ** libgnutls: Fix return value of gnutls_certificate_client_get_request_status.
1581 Before it always returned false.  Reported by Peter Hendrickson
1582 <pdh@wiredyne.com> in
1583 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3668>.
1585 ** libgnutls: Fix off-by-one size computation error in unknown DN printing.
1586 The error resulted in truncated strings when printing unknown OIDs in
1587 X.509 certificate DNs.  Reported by Tim Kosse
1588 <tim.kosse@filezilla-project.org> in
1589 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3651>.
1591 ** libgnutls: Fix PKCS#12 decryption from password.
1592 The encryption key derived from the password was incorrect for (on
1593 average) 1 in every 128 input for random inputs.  Reported by "Kukosa,
1594 Tomas" <tomas.kukosa@siemens-enterprise.com> in
1595 <http://permalink.gmane.org/gmane.network.gnutls.general/1663>.
1597 ** libgnutls: Return correct bit lengths of some MPIs.
1598 gnutls_dh_get_prime_bits, gnutls_rsa_export_get_modulus_bits, and
1599 gnutls_dh_get_peers_public_bits.  Before the reported value was
1600 overestimated.  Reported by Peter Hendrickson <pdh@wiredyne.com> in
1601 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3607>.
1603 ** libgnutls: Avoid internal error when invoked after GNUTLS_E_AGAIN.
1604 Report and patch by Tim Kosse <tim.kosse@filezilla-project.org> in
1605 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3671>
1607 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3670>.
1609 ** libgnutls: Relax checking of required libtasn1/libgcrypt versions.
1610 Before we required that the runtime library used the same (or more
1611 recent) libgcrypt/libtasn1 as it was compiled with.  Now we just check
1612 that the runtime usage is above the minimum required.  Reported by
1613 Marco d'Itri <md@linux.it> via Andreas Metzler
1614 <ametzler@downhill.at.eu.org> in <http://bugs.debian.org/540449>.
1616 ** tests: Added new self-test pkcs12_s2k_pem to detect MPI bit length error.
1618 ** tests: Improved test vectors in self-test pkcs12_s2k.
1620 ** tests: Added new self-test dn2 to detect off-by-one size error.
1622 ** tests: Fix failure in "chainverify" because a certificate have expired.
1624 ** API and ABI modifications:
1625 No changes since last version.
1627 * Version 2.9.1 (released 2009-06-08)
1629 ** libgnutls: Fix crash in gnutls_global_init after earlier init/deinit cycle.
1630 Forwarded by Martin von Gagern <Martin.vGagern@gmx.net> from
1631 <http://bugs.gentoo.org/272388>.
1633 ** tests: Added new self-tests init_roundtrip.c to detect previous problem.
1635 ** Reduce stack usage for some CRQ functions.
1637 ** Doc fixes for CRQ functions.
1639 ** API and ABI modifications:
1640 No changes since last version.
1642 * Version 2.9.0 (released 2009-05-28)
1644 ** Doc fixes.
1646 ** API and ABI modifications:
1647 No changes since last version.
1649 * Version 2.8.6 (released 2010-03-15)
1651 ** libgnutls: For CSRs, don't null pad integers for RSA/DSA value.
1652 VeriSign rejected CSRs with this padding.  Reported by Wilankar Trupti
1653 <trupti.wilankar@hp.com> and Boyan Kasarov <bkasarov@gmail.com>.
1655 Note: As a side effect of this change, the "public key identifier"
1656 value computed for a certificate using this version of GnuTLS will be
1657 different from values computed using earlier versions of GnuTLS.
1659 ** libgnutls: For CSRs on DSA keys, don't add DSA parameters to the
1660 ** optional SignatureAlgorithm parameter field.
1661 VeriSign rejected these CSRs.  They are stricly speaking not needed
1662 since you need the signer's certificate to verify the certificate
1663 signature anyway.  Reported by Wilankar Trupti
1664 <trupti.wilankar@hp.com> and Boyan Kasarov <bkasarov@gmail.com>.
1666 ** libgnutls: When checking openpgp self signature also check the signatures
1667 ** of all subkeys.
1668 Ilari Liusvaara noticed and reported the issue and provided test
1669 vectors as well.
1671 ** libgnutls: Cleanups and several bug fixes.
1672 Found by Steve Grubb and Tomas Mraz.
1674 ** Link libgcrypt explicitly to certtool, gnutls-cli, gnutls-serv.
1676 ** Fix --disable-valgrind-tests.
1677 Reported by Ingmar Vanhassel in
1678 <https://savannah.gnu.org/support/?107029>.
1680 ** examples: Use the new APIs for printing X.509 certificate information.
1682 ** Fix build failures on Solaris.
1683 Thanks to Dagobert Michelsen <dam@opencsw.org>.
1685 ** i18n: Updated Czech, Dutch, French, Polish, Swedish and Vietnamese
1686 ** translations.  Added Simplified Chinese translation.
1688 ** API and ABI modifications:
1689 No changes since last version.
1691 * Version 2.8.5 (released 2009-11-02)
1693 ** libgnutls: In server side when resuming a session do not overwrite the 
1694 ** initial session data with the resumed session data.
1696 ** libgnutls: Fix PKCS#12 encoding.
1697 The error you would get was "The OID is not supported.".  Problem
1698 introduced for the v2.8.x branch in 2.7.6.
1700 ** guile: Compatibility with guile 2.x.
1701 By Ludovic Courtes <ludovic.courtes@laas.fr>.
1703 ** tests: Fix expired cert in chainverify self-test.
1705 ** tests: Fix time bomb in chainverify self-test.
1706 Reported by Andreas Metzler <ametzler@downhill.at.eu.org> in
1707 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3925>.
1709 ** API and ABI modifications:
1710 No changes since last version.
1712 * Version 2.8.4 (released 2009-09-18)
1714 ** libgnutls: Enable Camellia ciphers by default.
1716 ** libgnutls: Make OpenPGP hostname checking work again.
1717 The patch to resolve the X.509 CN/SAN issue accidentally broken
1718 OpenPGP hostname comparison.
1720 ** libgnutls: When printing X.509 certificates, handle XMPP SANs better.
1721 Reported by Howard Chu <hyc@symas.com> in
1722 <https://savannah.gnu.org/support/?106975>.
1724 ** API and ABI modifications:
1725 No changes since last version.
1727 * Version 2.8.3 (released 2009-08-13)
1729 ** libgnutls: Fix patch for NUL in CN/SAN in last release.
1730 Code intended to be removed would lead to an read-out-bound error in
1731 some situations.  Reported by Tomas Hoger <thoger@redhat.com>.  A CVE
1732 code have been allocated for the vulnerability: [CVE-2009-2730].
1734 ** libgnutls: Fix rare failure in gnutls_x509_crt_import.
1735 The function may fail incorrectly when an earlier certificate was
1736 imported to the same gnutls_x509_crt_t structure.
1738 ** libgnutls-extra, libgnutls-openssl: Fix MinGW cross-compiling build error.
1740 ** tests: Made self-test mini-eagain take less time.
1742 ** doc: Typo fixes.
1744 ** API and ABI modifications:
1745 No changes since last version.
1747 * Version 2.8.2 (released 2009-08-10)
1749 ** libgnutls: Fix problem with NUL bytes in X.509 CN and SAN fields.
1750 By using a NUL byte in CN/SAN fields, it was possible to fool GnuTLS
1751 into 1) not printing the entire CN/SAN field value when printing a
1752 certificate and 2) cause incorrect positive matches when matching a
1753 hostname against a certificate.  Some CAs apparently have poor
1754 checking of CN/SAN values and issue these (arguable invalid)
1755 certificates.  Combined, this can be used by attackers to become a
1756 MITM on server-authenticated TLS sessions.  The problem is mitigated
1757 since attackers needs to get one certificate per site they want to
1758 attack, and the attacker reveals his tracks by applying for a
1759 certificate at the CA.  It does not apply to client authenticated TLS
1760 sessions.  Research presented independently by Dan Kaminsky and Moxie
1761 Marlinspike at BlackHat09.  Thanks to Tomas Hoger <thoger@redhat.com>
1762 for providing one part of the patch.  [GNUTLS-SA-2009-4].
1764 ** libgnutls: Fix return value of gnutls_certificate_client_get_request_status.
1765 Before it always returned false.  Reported by Peter Hendrickson
1766 <pdh@wiredyne.com> in
1767 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3668>.
1769 ** libgnutls: Fix off-by-one size computation error in unknown DN printing.
1770 The error resulted in truncated strings when printing unknown OIDs in
1771 X.509 certificate DNs.  Reported by Tim Kosse
1772 <tim.kosse@filezilla-project.org> in
1773 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3651>.
1775 ** libgnutls: Return correct bit lengths of some MPIs.
1776 gnutls_dh_get_prime_bits, gnutls_rsa_export_get_modulus_bits, and
1777 gnutls_dh_get_peers_public_bits.  Before the reported value was
1778 overestimated.  Reported by Peter Hendrickson <pdh@wiredyne.com> in
1779 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3607>.
1781 ** libgnutls: Avoid internal error when invoked after GNUTLS_E_AGAIN.
1782 Report and patch by Tim Kosse <tim.kosse@filezilla-project.org> in
1783 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3671>
1785 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3670>.
1787 ** libgnutls: Relax checking of required libtasn1/libgcrypt versions.
1788 Before we required that the runtime library used the same (or more
1789 recent) libgcrypt/libtasn1 as it was compiled with.  Now we just check
1790 that the runtime usage is above the minimum required.  Reported by
1791 Marco d'Itri <md@linux.it> via Andreas Metzler
1792 <ametzler@downhill.at.eu.org> in <http://bugs.debian.org/540449>.
1794 ** minitasn1: Internal copy updated to libtasn1 v2.3.
1796 ** tests: Fix failure in "chainverify" because a certificate have expired.
1798 ** API and ABI modifications:
1799 No changes since last version.
1801 * Version 2.8.1 (released 2009-06-10)
1803 ** libgnutls: Fix crash in gnutls_global_init after earlier init/deinit cycle.
1804 Forwarded by Martin von Gagern <Martin.vGagern@gmx.net> from
1805 <http://bugs.gentoo.org/272388>.
1807 ** libgnutls: Fix PKCS#12 decryption from password.
1808 The encryption key derived from the password was incorrect for (on
1809 average) 1 in every 128 input for random inputs.  Reported by "Kukosa,
1810 Tomas" <tomas.kukosa@siemens-enterprise.com> in
1811 <http://permalink.gmane.org/gmane.network.gnutls.general/1663>.
1813 ** API and ABI modifications:
1814 No changes since last version.
1816 * Version 2.8.0 (released 2009-05-27)
1818 ** doc: Fix gnutls_dh_get_prime_bits.  Fix error codes and algorithm lists.
1820 ** Major changes compared to the v2.4 branch:
1822 *** lib: Linker version scripts reduces number of exported symbols.
1824 *** lib: Limit exported symbols on systems without LD linker scripts.
1826 *** libgnutls: Fix namespace issue with version symbols.
1828 *** libgnutls: Add functions to verify a hash against a certificate.
1829 gnutls_x509_crt_verify_hash: ADDED
1830 gnutls_x509_crt_get_verify_algorithm: ADDED
1832 *** gnutls-serv: Listen on all interfaces, including both IPv4 and IPv6.
1834 *** i18n: The GnuTLS gettext domain is now 'libgnutls' instead of 'gnutls'.
1836 *** certtool: Query for multiple dnsName subjectAltName in interactive mode.
1838 *** gnutls-cli: No longer accepts V1 CAs by default during X.509 chain verify.
1840 *** gnutls-serv: No longer disable MAC padding by default.
1842 *** gnutls-cli: Certificate information output format changed.
1844 *** libgnutls: New priority strings %VERIFY_ALLOW_SIGN_RSA_MD5
1845 *** and %VERIFY_ALLOW_X509_V1_CA_CRT.
1847 *** libgnutls: gnutls_x509_crt_print prints signature algorithm in oneline mode.
1849 *** libgnutls: gnutls_openpgp_crt_print supports oneline mode.
1851 *** libgnutls: gnutls_handshake when sending client hello during a
1852 rehandshake, will not offer a version number larger than the current.
1854 *** libgnutls: New interface to get key id for certificate requests.
1855 gnutls_x509_crq_get_key_id: ADDED.
1857 *** libgnutls: gnutls_x509_crq_print will now also print public key id.
1859 *** certtool: --verify-chain now prints results of using library verification.
1861 *** libgnutls: Libgcrypt initialization changed.
1863 *** libgnutls: Small byte reads via gnutls_record_recv() optimized.
1865 *** gnutls-cli: Return non-zero exit code on error conditions.
1867 *** gnutls-cli: Corrected bug which caused a rehandshake request to be ignored.
1869 *** certtool: allow setting arbitrary key purpose object identifiers.
1871 *** libgnutls: Change detection of when to use a linker version script.
1872 Use --enable-ld-version-script or --disable-ld-version-script to
1873 override auto-detection logic.
1875 *** Fix warnings and build GnuTLS with more warnings enabled.
1877 *** New API to set X.509 credentials from PKCS#12 memory structure.
1878 gnutls_certificate_set_x509_simple_pkcs12_mem: ADDED
1880 *** Old libgnutls.m4 and libgnutls-config scripts removed.
1881 Please use pkg-config instead.
1883 *** libgnutls: Added functions to handle CRL extensions.
1884 gnutls_x509_crl_get_authority_key_id: ADDED
1885 gnutls_x509_crl_get_number: ADDED
1886 gnutls_x509_crl_get_extension_oid: ADDED
1887 gnutls_x509_crl_get_extension_info: ADDED
1888 gnutls_x509_crl_get_extension_data: ADDED
1889 gnutls_x509_crl_set_authority_key_id: ADDED
1890 gnutls_x509_crl_set_number: ADDED
1892 *** libgnutls: Added functions to handle X.509 extensions in Certificate
1893 Requests.
1894 gnutls_x509_crq_get_key_rsa_raw: ADDED
1895 gnutls_x509_crq_get_attribute_info: ADDED
1896 gnutls_x509_crq_get_attribute_data: ADDED
1897 gnutls_x509_crq_get_extension_info: ADDED
1898 gnutls_x509_crq_get_extension_data: ADDED
1899 gnutls_x509_crq_get_key_usage: ADDED
1900 gnutls_x509_crq_get_basic_constraints: ADDED
1901 gnutls_x509_crq_get_subject_alt_name: ADDED
1902 gnutls_x509_crq_get_subject_alt_othername_oid: ADDED
1903 gnutls_x509_crq_get_extension_by_oid: ADDED
1904 gnutls_x509_crq_set_subject_alt_name: ADDED
1905 gnutls_x509_crq_set_basic_constraints: ADDED
1906 gnutls_x509_crq_set_key_usage: ADDED
1907 gnutls_x509_crq_get_key_purpose_oid: ADDED
1908 gnutls_x509_crq_set_key_purpose_oid: ADDED
1909 gnutls_x509_crq_print: ADDED
1910 gnutls_x509_crt_set_crq_extensions: ADDED
1912 *** certtool: Print and set CRL and CRQ extensions.
1914 *** minitasn1: Internal copy updated to libtasn1 v2.1.
1916 *** examples: Now released into the public domain.
1918 *** The Texinfo and GTK-DOC manuals were improved.
1920 *** Several self-tests were added and others improved.
1922 *** API/ABI changes in GnuTLS 2.8 compared to GnuTLS 2.6.x
1923 No offically supported interfaces have been modified or removed.  The
1924 library should be completely backwards compatible on both the source
1925 and binary level.
1927 The shared library no longer exports some symbols that have never been
1928 officially supported, i.e., not mentioned in any of the header files.
1929 The symbols are:
1931   _gnutls*
1932   gnutls_asn1_tab
1933   
1934 Normally when symbols are removed, the shared library version has to
1935 be incremented.  This leads to a significant cost for everyone using
1936 the library.  Because none of the above symbols have ever been
1937 intended for use by well-behaved applications, we decided that the it
1938 would be better for those applications to pay the price rather than
1939 incurring problems on the majority of applications.
1941 If it turns out that applications have been using unofficial
1942 interfaces, we will need to release a follow-on release on the v2.8
1943 branch to exports additional interfaces.  However, initial testing
1944 suggests that few if any applications have been using any of the
1945 internal symbols.
1947 Although not a new change compared to 2.6.x, we'd like to remind you
1948 interfaces have been modified so that X.509 chain verification now
1949 also checks activation/expiration times on certificates.  The affected
1950 functions are:
1952 gnutls_x509_crt_list_verify: CHANGED, checks activation/expiration times.
1953 gnutls_certificate_verify_peers: Likewise.
1954 gnutls_certificate_verify_peers2: Likewise.
1955 GNUTLS_CERT_NOT_ACTIVATED: ADDED.
1956 GNUTLS_CERT_EXPIRED: ADDED.
1957 GNUTLS_VERIFY_DISABLE_TIME_CHECKS: ADDED.
1959 This change in behaviour was made during the GnuTLS 2.6.x cycle, and
1960 we gave our rationale for it in earlier release notes.
1962 The following symbols have been added to the library:
1964 gnutls_certificate_set_x509_simple_pkcs12_mem: ADDED
1965 gnutls_x509_crl_get_authority_key_id: ADDED
1966 gnutls_x509_crl_get_extension_data: ADDED
1967 gnutls_x509_crl_get_extension_info: ADDED
1968 gnutls_x509_crl_get_extension_oid: ADDED
1969 gnutls_x509_crl_get_number: ADDED
1970 gnutls_x509_crl_set_authority_key_id: ADDED
1971 gnutls_x509_crl_set_number: ADDED
1972 gnutls_x509_crq_get_attribute_data: ADDED
1973 gnutls_x509_crq_get_attribute_info: ADDED
1974 gnutls_x509_crq_get_basic_constraints: ADDED
1975 gnutls_x509_crq_get_extension_by_oid: ADDED
1976 gnutls_x509_crq_get_extension_data: ADDED
1977 gnutls_x509_crq_get_extension_info: ADDED
1978 gnutls_x509_crq_get_key_id: ADDED.
1979 gnutls_x509_crq_get_key_purpose_oid: ADDED
1980 gnutls_x509_crq_get_key_rsa_raw: ADDED
1981 gnutls_x509_crq_get_key_usage: ADDED
1982 gnutls_x509_crq_get_subject_alt_name: ADDED
1983 gnutls_x509_crq_get_subject_alt_othername_oid: ADDED
1984 gnutls_x509_crq_print: ADDED
1985 gnutls_x509_crq_set_basic_constraints: ADDED
1986 gnutls_x509_crq_set_key_purpose_oid: ADDED
1987 gnutls_x509_crq_set_key_usage: ADDED
1988 gnutls_x509_crq_set_subject_alt_name: ADDED
1989 gnutls_x509_crt_get_verify_algorithm: ADDED
1990 gnutls_x509_crt_set_crq_extensions: ADDED
1991 gnutls_x509_crt_verify_hash: ADDED
1993 The following interfaces have been added to the header files:
1995 GNUTLS_VERSION: ADDED, replaces LIBGNUTLS_VERSION.
1996 GNUTLS_VERSION_MAJOR: ADDED, replaces LIBGNUTLS_VERSION_MAJOR.
1997 GNUTLS_VERSION_MINOR: ADDED, replaces LIBGNUTLS_VERSION_MINOR.
1998 GNUTLS_VERSION_PATCH: ADDED, replaces LIBGNUTLS_VERSION_PATCH.
1999 GNUTLS_VERSION_NUMBER: ADDED, replaces LIBGNUTLS_VERSION_NUMBER.
2000 GNUTLS_EXTRA_VERSION: ADDED, replaces LIBGNUTLS_EXTRA_VERSION.
2002 The following interfaces have been deprecated:
2004 LIBGNUTLS_VERSION: DEPRECATED.
2005 LIBGNUTLS_VERSION_MAJOR: DEPRECATED.
2006 LIBGNUTLS_VERSION_MINOR: DEPRECATED.
2007 LIBGNUTLS_VERSION_PATCH: DEPRECATED.
2008 LIBGNUTLS_VERSION_NUMBER: DEPRECATED.
2009 LIBGNUTLS_EXTRA_VERSION: DEPRECATED.
2011 * Version 2.7.14 (released 2009-05-26)
2013 ** libgnutls: Fix namespace issue with version symbol for libgnutls-extra.
2014 The symbol LIBGNUTLS_EXTRA_VERSION were renamed to
2015 GNUTLS_EXTRA_VERSION.  The old symbol will continue to work but is
2016 deprecated.
2018 ** Doc: Several typo fixes in documentation.
2019 Reported by Peter Hendrickson <pdh@wiredyne.com>.
2021 ** API and ABI modifications:
2022 GNUTLS_VERSION: ADDED, replaces LIBGNUTLS_EXTRA_VERSION.
2023 LIBGNUTLS_EXTRA_VERSION: DEPRECATED.
2025 * Version 2.7.13 (released 2009-05-25)
2027 ** libgnutls: Fix version of some exported symbols in the shared library.
2028 Reported by Andreas Metzler <ametzler@downhill.at.eu.org> in
2029 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3576>.
2031 ** tests: Handle recently expired certificates in chainverify self-test.
2032 Reported by Andreas Metzler <ametzler@downhill.at.eu.org> in
2033 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3580>.
2035 ** API and ABI modifications:
2036 No changes since last version.
2038 * Version 2.7.12 (released 2009-05-20)
2040 ** gnutls-serv, gnutls-cli-debug: Make them work on Windows.
2042 ** tests/crq_key_id: Don't read entropy from /dev/random in self-test.
2043 Reported by Andreas Metzler <ametzler@downhill.at.eu.org> in
2044 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3570>.
2046 ** Fix build failures.
2047 Missing sa_family_t and vsnprintf on IRIX.  Reported by "Tom
2048 G. Christensen" <tgc@jupiterrise.com> in
2049 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3571>.
2051 ** minitasn1: Internal copy updated to libtasn1 v2.2.
2052 GnuTLS should work fine with libtasn1 v1.x and that is still
2053 supported.
2055 ** API and ABI modifications:
2056 No changes since last version.
2058 * Version 2.7.11 (released 2009-05-18)
2060 ** minitasn1: Fix build failure when using internal libtasn1.
2061 Reported by "Tom G. Christensen" <tgc@jupiterrise.com> in
2062 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3548>.
2064 ** libgnutls: Fix build failure with --disable-cxx.
2065 Reported by Andreas Metzler <ametzler@downhill.at.eu.org> in
2066 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3557>.
2068 ** gnutls-serv: Fix build failure for unportable NI_MAXHOST/NI_MAXSERV.
2069 Reported by "Tom G. Christensen" <tgc@jupiterrise.com> in
2070 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3560>
2072 ** Building with many warning flags now requires --enable-gcc-warnings.
2073 This avoids crying wolf for normal compiles.
2075 ** API and ABI modifications:
2076 No changes since last version.
2078 * Version 2.7.10 (released 2009-05-13)
2080 ** examples: Now released into the public domain.
2081 This makes the license of the example code compatible with more
2082 licenses, including the (L)GPL.
2084 ** minitasn1: Internal copy updated to libtasn1 v2.1.
2085 GnuTLS should work fine with libtasn1 v1.x and that is still
2086 supported.
2088 ** libgnutls: Fix crash in signature verification
2089 The fix for the CVE-2009-1415 problem wasn't merged completely.
2091 ** doc: Fixes for GTK-DOC output.
2093 ** API and ABI modifications:
2094 No changes since last version.
2096 * Version 2.7.9 (released 2009-05-11)
2098 ** doc: Fix strings in man page of gnutls_priority_init.
2100 ** doc: Fix tables of error codes and supported algorithms.
2102 ** Fix build failure when cross-compiled using MinGW.
2104 ** Fix build failure when LZO is enabled.
2105 Reported by Arfrever Frehtes Taifersar Arahesis
2106 <arfrever.fta@gmail.com> in
2107 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3522>.
2109 ** Fix build failure on systems without AF_INET6, e.g., Solaris 2.6.
2110 Reported by "Tom G. Christensen" <tgc@jupiterrise.com> in
2111 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3524>.
2113 ** Fix warnings in self-tests.
2115 ** API and ABI modifications:
2116 No changes since last version.
2118 * Version 2.7.8 (released 2009-05-03)
2120 ** libgnutls: Fix DSA key generation.
2121 Merged from stable branch.  [GNUTLS-SA-2009-2] [CVE-2009-1416]
2123 ** libgnutls: Check expiration/activation time on untrusted certificates.
2124 Merged from stable branch.  Reported by Romain Francoise
2125 <romain@orebokech.com>.  This changes the semantics of
2126 gnutls_x509_crt_list_verify, which in turn is used by
2127 gnutls_certificate_verify_peers and gnutls_certificate_verify_peers2.
2128 We add two new gnutls_certificate_status_t codes for reporting the new
2129 error condition, GNUTLS_CERT_NOT_ACTIVATED and GNUTLS_CERT_EXPIRED.
2130 We also add a new gnutls_certificate_verify_flags flag,
2131 GNUTLS_VERIFY_DISABLE_TIME_CHECKS, that can be used to disable the new
2132 behaviour.  [GNUTLS-SA-2009-3] [CVE-2009-1417]
2134 ** lib: Linker version scripts reduces number of exported symbols.
2135 The linker version script now lists all exported ABIs explicitly, to
2136 avoid accidentally exporting unintended functions.  Compared to
2137 before, most symbols beginning with _gnutls* are no longer exported.
2138 These functions have never been intended for use by applications, and
2139 there were no prototypes for these function in the public header
2140 files.  Thus we believe it is possible to do this without incrementing
2141 the library ABI version which normally has to be done when removing an
2142 interface.
2144 ** lib: Limit exported symbols on systems without LD linker scripts.
2145 Before all symbols were exported.  Now we limit the exported symbols
2146 to (for libgnutls and libgnutls-extra) gnutls* and (for libgnutls)
2147 _gnutls*.  This is a superset of the actual supported ABI, but still
2148 an improvement compared to before.  This is implemented using Libtool
2149 -export-symbols-regex.  It is more portable than linker version
2150 scripts.
2152 ** libgnutls: Incremented CURRENT/AGE libtool version to reflect new symbols.
2153 This should have been done in the last release.
2155 ** gnutls-serv: Listen on all interfaces, including both IPv4 and IPv6.
2156 Reported by Peter Hendrickson <pdh@wiredyne.com> in
2157 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3476>.
2159 ** doc: Improved sections for the info manual.
2160 We now follow the advice given by the texinfo manual on which
2161 directory categories to use.  In particular, libgnutls moved from the
2162 'GNU Libraries' section to the 'Software libraries' and the command
2163 line tools moved from 'Network Applications' to 'System
2164 Administration'.
2166 ** API and ABI modifications:
2167 gnutls_x509_crt_list_verify: CHANGED, checks activation/expiration times.
2168 gnutls_certificate_verify_peers: Likewise.
2169 gnutls_certificate_verify_peers2: Likewise.
2170 GNUTLS_CERT_NOT_ACTIVATED: ADDED.
2171 GNUTLS_CERT_EXPIRED: ADDED.
2172 GNUTLS_VERIFY_DISABLE_TIME_CHECKS: ADDED.
2174 * Version 2.7.7 (released 2009-04-20)
2176 ** libgnutls: Applied patch by Cedric Bail to add functions
2177 gnutls_x509_crt_verify_hash() and gnutls_x509_crt_get_verify_algorithm().
2179 ** gnutls.pc: Add -ltasn1 to 'pkg-config --libs --static gnutls' output.
2180 Reported by Andreas Metzler <ametzler@downhill.at.eu.org> in
2181 <http://article.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3467>.
2183 ** minitasn1: Internal copy updated to libtasn1 v1.8.
2184 GnuTLS is also internally ready to be used with libtasn1 v2.0.
2186 ** doc: Fix build failure of errcodes/printlist.
2187 Reported by Roman Bogorodskiy <novel@FreeBSD.org> in
2188 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3435>.
2190 ** i18n: The GnuTLS gettext domain is now 'libgnutls' instead of 'gnutls'.
2191 It is currently only used by the core library.  This will enable a new
2192 domain 'gnutls' for translations of the command line tools.
2194 ** Corrected possible memory corruption on signature verification failure. 
2195 Reported by Miroslav Kratochvil <exa.exa@gmail.com>
2197 ** API and ABI modifications:
2198 gnutls_x509_crt_verify_hash: ADDED
2199 gnutls_x509_crt_get_verify_algorithm: ADDED
2201 * Version 2.7.6 (released 2009-02-27)
2203 ** certtool: Query for multiple dnsName subjectAltName in interactive mode.
2204 This applies both to generating certificates and certificate requests.
2206 ** pkix.asn: Removed unneeded definitions to reduce memory usage.
2208 ** gnutls-cli: No longer accepts V1 CAs by default during X.509 chain verify.
2209 Use --priority NORMAL:%VERIFY_ALLOW_X509_V1_CA_CRT to permit V1 CAs to
2210 be used for chain verification.
2212 ** gnutls-serv: No longer disable MAC padding by default.
2213 Use --priority NORMAL:%COMPAT to disable MAC padding again.
2215 ** gnutls-cli: Certificate information output format changed.
2216 The tool now uses libgnutls' functions to print certificate
2217 information.  This avoids code duplication.
2219 ** libgnutls: New priority strings %VERIFY_ALLOW_SIGN_RSA_MD5
2220 ** and %VERIFY_ALLOW_X509_V1_CA_CRT.
2221 They can be used to override the default certificate chain validation
2222 behaviour.
2224 ** libgnutls: Added %SSL3_RECORD_VERSION priority string that allows to 
2225 specify the client hello message record version. Used to overcome buggy 
2226 TLS servers. Report by Martin von Gagern.
2228 ** libgnutls: gnutls_x509_crt_print prints signature algorithm in oneline mode.
2230 ** libgnutls: gnutls_openpgp_crt_print supports oneline mode.
2232 ** doc: Update gnutls-cli and gnutls-serv --help output descriptions.
2234 ** API and ABI modifications:
2235 No changes since last version.
2237 * Version 2.7.5 (released 2009-02-06)
2239 ** libgnutls: Accept chains where intermediary certs are trusted.
2240 Before GnuTLS needed to validate the entire chain back to a
2241 self-signed certificate.  GnuTLS will now stop looking when it has
2242 found an intermediary trusted certificate.  The new behaviour is
2243 useful when chains, for example, contains a top-level CA, an
2244 intermediary CA signed using RSA-MD5, and an end-entity certificate.
2245 To avoid chain validation errors due to the RSA-MD5 cert, you can
2246 explicitly add the intermediary RSA-MD5 cert to your trusted certs.
2247 The signature on trusted certificates are not checked, so the chain
2248 has a chance to validate correctly.  Reported by "Douglas E. Engert"
2249 <deengert@anl.gov> in
2250 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3351>.
2252 ** libgnutls: result_size in gnutls_hex_encode now holds
2253 the size of the result. Report by John Brooks <special@dereferenced.net>.
2255 ** libgnutls: gnutls_handshake when sending client hello during a
2256 rehandshake, will not offer a version number larger than the current.
2257 Reported by Tristan Hill <stan@saticed.me.uk>.
2259 ** libgnutls: Permit V1 Certificate Authorities properly.
2260 Before they were mistakenly rejected even though
2261 GNUTLS_VERIFY_ALLOW_ANY_X509_V1_CA_CRT and/or
2262 GNUTLS_VERIFY_ALLOW_X509_V1_CA_CRT were supplied.  Reported by
2263 "Douglas E. Engert" <deengert@anl.gov> in
2264 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3351>.
2266 ** API and ABI modifications:
2267 No changes since last version.
2269 * Version 2.7.4 (released 2009-01-07)
2271 ** libgnutls: deprecate X.509 validation chains using MD5 and MD2 signatures.
2272 This is a bugfix -- the previous attempt to do this from internal x509
2273 certificate verification procedures did not return the correct value
2274 for certificates using a weak hash.  Reported by Daniel Kahn Gillmor
2275 <dkg@fifthhorseman.net> in
2276 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3332>,
2277 debugged and patch by Tomas Mraz <tmraz@redhat.com> and Daniel Kahn
2278 Gillmor <dkg@fifthhorseman.net>.
2280 ** libgnutls: New interface to get key id for certificate requests.
2281 Patch from David Marín Carreño <davefx@gmail.com> in
2282 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3321>.
2284 ** libgnutls: gnutls_x509_crq_print will now also print public key id.
2286 ** certtool: --verify-chain now prints results of using library verification.
2287 Earlier, certtool --verify-chain used its own validation algorithm
2288 which wasn't guaranteed to give the same result as the libgnutls
2289 internal validation algorithm.  Now this command print a new final
2290 line with header 'Chain verification output:' that contains the result
2291 from using the internal verification algorithm on the same chain.
2293 ** tests: Add crq_key_id self-test of gnutls_x509_crq_get_key_id.
2295 ** API and ABI modifications:
2296 gnutls_x509_crq_get_key_id: ADDED.
2298 * Version 2.7.3 (released 2008-12-10)
2300 ** libgnutls: Fix chain verification for chains that ends with RSA-MD2 CAs.
2301 Reported by Michael Kiefer <Michael-Kiefer@web.de> in
2302 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=507633> forwarded by
2303 Andreas Metzler <ametzler@downhill.at.eu.org> in
2304 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3309>.
2306 ** libgnutls: Libgcrypt initialization changed.
2307 If libgcrypt has not already been initialized, GnuTLS will now
2308 initialize libgcrypt with disabled secure memory.  Initialize
2309 libgcrypt explicitly in your application if you want to enable secure
2310 memory.  Before GnuTLS initialized libgcrypt to use GnuTLS's memory
2311 allocation functions, which doesn't use secure memory, so there is no
2312 real change in behaviour.
2314 ** libgnutls: Fix memory leak in PSK authentication.
2315 Reported by Michael Weiser <michael@weiser.dinsnail.net> in
2316 <http://permalink.gmane.org/gmane.network.gnutls.general/1465>.
2318 ** libgnutls: Small byte reads via gnutls_record_recv() optimized.
2320 ** certtool: Move gcry_control(GCRYCTL_ENABLE_QUICK_RANDOM, 0) call earlier.
2321 It needs to be invoked before libgcrypt is initialized.
2323 ** gnutls-cli: Return non-zero exit code on error conditions.
2325 ** gnutls-cli: Corrected bug which caused a rehandshake request to be ignored.
2327 ** tests: Added chainverify self-test that tests X.509 chain verifications.
2329 ** API and ABI modifications:
2330 No changes since last version.
2332 * Version 2.7.2 (released 2008-11-18)
2334 ** libgnutls: Fix X.509 certificate chain validation error. [GNUTLS-SA-2008-3]
2335 The flaw makes it possible for man in the middle attackers (i.e.,
2336 active attackers) to assume any name and trick GnuTLS clients into
2337 trusting that name.  Thanks for report and analysis from Martin von
2338 Gagern <Martin.vGagern@gmx.net>.  [CVE-2008-4989]
2340 Any updates with more details about this vulnerability will be added
2341 to <http://www.gnu.org/software/gnutls/security.html>
2343 ** libgnutls: Fix namespace issue with version symbols.
2344 The symbols LIBGNUTLS_VERSION, LIBGNUTLS_VERSION_MAJOR,
2345 LIBGNUTLS_VERSION_MINOR, LIBGNUTLS_VERSION_PATCH, and
2346 LIBGNUTLS_VERSION_NUMBER were renamed to GNUTLS_VERSION_NUMBER,
2347 GNUTLS_VERSION_MAJOR, GNUTLS_VERSION_MINOR, GNUTLS_VERSION_PATCH, and
2348 GNUTLS_VERSION_NUMBER respectively.  The old symbols will continue to
2349 work but are deprecated.
2351 ** certtool: allow setting arbitrary key purpose object identifiers.
2353 ** libgnutls: Fix detection of C99 macros, to make debug logging work again.
2355 ** libgnutls: Add missing prototype for gnutls_srp_set_prime_bits.
2356 Reported by Kevin Quick <quick@sparq.org> in
2357 <https://savannah.gnu.org/support/index.php?106454>.
2359 ** libgnutls-extra: Make building with LZO compression work again.
2360 Build failure reported by Arfrever Frehtes Taifersar Arahesis
2361 <arfrever.fta@gmail.com> in
2362 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3194>.
2364 ** libgnutls: Change detection of when to use a linker version script.
2365 Use --enable-ld-version-script or --disable-ld-version-script to
2366 override auto-detection logic.
2368 ** doc: Change license on the manual to GFDLv1.3+.
2370 ** doc: GTK-DOC fixes for new splitted configuration system.
2372 ** doc: Texinfo stylesheet uses white background.
2374 ** tests: Add cve-2008-4989.c self-test.
2375 Tests regressions of the GNUTLS-SA-2008-3 security problem, and the
2376 follow-on problem with crashes on length 1 certificate chains.
2378 ** gnulib: Deprecated modules removed.
2379 Modules include memchr and memcmp.
2381 ** Fix warnings and build GnuTLS with more warnings enabled.
2383 ** minitasn1: Internal copy updated to libtasn1 v1.7.
2385 ** API and ABI modifications:
2386 gnutls_certificate_set_x509_simple_pkcs12_mem: ADDED
2387 GNUTLS_VERSION: ADDED, replaces LIBGNUTLS_VERSION.
2388 GNUTLS_VERSION_MAJOR: ADDED, replaces LIBGNUTLS_VERSION_MAJOR.
2389 GNUTLS_VERSION_MINOR: ADDED, replaces LIBGNUTLS_VERSION_MINOR.
2390 GNUTLS_VERSION_PATCH: ADDED, replaces LIBGNUTLS_VERSION_PATCH.
2391 GNUTLS_VERSION_NUMBER: ADDED, replaces LIBGNUTLS_VERSION_NUMBER.
2392 LIBGNUTLS_VERSION: DEPRECATED.
2393 LIBGNUTLS_VERSION_MAJOR: DEPRECATED.
2394 LIBGNUTLS_VERSION_MINOR: DEPRECATED.
2395 LIBGNUTLS_VERSION_PATCH: DEPRECATED.
2396 LIBGNUTLS_VERSION_NUMBER: DEPRECATED.
2398 * Version 2.7.1 (released 2008-10-31)
2400 ** certtool: print a PKCS #8 key even if it is not encrypted.
2402 ** Old libgnutls.m4 and libgnutls-config scripts removed.
2403 Please use pkg-config instead.
2405 ** Configuration system modified.
2406 There is now a configure script in lib/ and libextra/ as well, because
2407 gnulib works better with a config.h per gnulib directory.
2409 ** API and ABI modifications:
2410 No changes since last version.
2412 * Version 2.7.0 (released 2008-10-16)
2414 ** libgnutls: Added functions to handle CRL extensions.
2416 ** libgnutls: Added functions to handle X.509 extensions in Certificate
2417 Requests.
2419 ** libgnutls: Improved error string for GNUTLS_E_AGAIN.
2420 Suggested by "Lavrentiev, Anton (NIH/NLM/NCBI) [C]" <lavr@ncbi.nlm.nih.gov>.
2422 ** certtool: Print and set CRL and CRQ extensions.
2424 ** libgnutls-extra: Protect internal symbols with static.
2425 Fixes problem when linking certtool statically.  Tiny patch from Aaron
2426 Ucko <ucko@ncbi.nlm.nih.gov>.
2428 ** libgnutls-openssl: fix out of bounds access.
2429 Problem in X509_get_subject_name and X509_get_issuer_name.  Tiny patch
2430 from Thomas Viehmann <tv@beamnet.de>.
2432 ** libgnutlsxx: Define server_session::get_srp_username even if no SRP.
2434 ** tests: Make tests compile when using internal libtasn1.
2435 Patch by ludo@gnu.org (Ludovic Courtès).
2437 ** Changed detection of libtasn1 and libgcrypt to avoid depending on *-config.
2438 We now require a libgcrypt that has Camellia constants declared in
2439 gcrypt.h, which means v1.3.0 or later.
2441 ** API and ABI modifications:
2442 gnutls_x509_crl_get_authority_key_id: ADDED
2443 gnutls_x509_crl_get_number: ADDED
2444 gnutls_x509_crl_get_extension_oid: ADDED
2445 gnutls_x509_crl_get_extension_info: ADDED
2446 gnutls_x509_crl_get_extension_data: ADDED
2447 gnutls_x509_crl_set_authority_key_id: ADDED
2448 gnutls_x509_crl_set_number: ADDED
2449 gnutls_x509_crq_get_key_rsa_raw: ADDED
2450 gnutls_x509_crq_get_attribute_info: ADDED
2451 gnutls_x509_crq_get_attribute_data: ADDED
2452 gnutls_x509_crq_get_extension_info: ADDED
2453 gnutls_x509_crq_get_extension_data: ADDED
2454 gnutls_x509_crq_get_key_usage: ADDED
2455 gnutls_x509_crq_get_basic_constraints: ADDED
2456 gnutls_x509_crq_get_subject_alt_name: ADDED
2457 gnutls_x509_crq_get_subject_alt_othername_oid: ADDED
2458 gnutls_x509_crq_get_extension_by_oid: ADDED
2459 gnutls_x509_crq_set_subject_alt_name: ADDED
2460 gnutls_x509_crq_set_basic_constraints: ADDED
2461 gnutls_x509_crq_set_key_usage: ADDED
2462 gnutls_x509_crq_get_key_purpose_oid: ADDED
2463 gnutls_x509_crq_set_key_purpose_oid: ADDED
2464 gnutls_x509_crq_print: ADDED
2465 gnutls_x509_crt_set_crq_extensions: ADDED
2467 * Version 2.6.6 (released 2009-04-30)
2469 ** libgnutls: Corrected double free on signature verification failure.
2470 Reported by Miroslav Kratochvil <exa.exa@gmail.com>.  See the advisory
2471 for more details.  [GNUTLS-SA-2009-1] [CVE-2009-1415]
2473 ** libgnutls: Fix DSA key generation.
2474 Noticed when investigating the previous GNUTLS-SA-2009-1 problem.  All
2475 DSA keys generated using GnuTLS 2.6.x are corrupt.  See the advisory
2476 for more details.  [GNUTLS-SA-2009-2] [CVE-2009-1416]
2478 ** libgnutls: Check expiration/activation time on untrusted certificates.
2479 Reported by Romain Francoise <romain@orebokech.com>.  Before the
2480 library did not check activation/expiration times on certificates, and
2481 was documented as not doing so.  We have realized that many
2482 applications that use libgnutls, including gnutls-cli, fail to perform
2483 proper checks.  Implementing similar logic in all applications leads
2484 to code duplication.  Hence, we decided to check whether the current
2485 time (as reported by the time function) is within the
2486 activation/expiration period of certificates when verifying untrusted
2487 certificates.
2489 This changes the semantics of gnutls_x509_crt_list_verify, which in
2490 turn is used by gnutls_certificate_verify_peers and
2491 gnutls_certificate_verify_peers2.  We add two new
2492 gnutls_certificate_status_t codes for reporting the new error
2493 condition, GNUTLS_CERT_NOT_ACTIVATED and GNUTLS_CERT_EXPIRED.  We also
2494 add a new gnutls_certificate_verify_flags flag,
2495 GNUTLS_VERIFY_DISABLE_TIME_CHECKS, that can be used to disable the new
2496 behaviour.
2498 More details about the vulnerabilities will be posted at
2499 <http://www.gnu.org/software/gnutls/security.html>.
2501 ** gnutls-cli, gnutls-cli-debug: Fix AIX build problem.
2502 Reported by LAUPRETRE François (P) <francois.laupretre@ratp.fr> in
2503 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3468>.
2505 ** tests: Fix linking of tests/openpgp/keyring self-test.
2506 Reported by Daniel Black in <https://savannah.gnu.org/support/?106543>.
2508 ** API and ABI modifications:
2509 gnutls_x509_crt_list_verify: CHANGED, checks activation/expiration times.
2510 gnutls_certificate_verify_peers: Likewise.
2511 gnutls_certificate_verify_peers2: Likewise.
2512 GNUTLS_CERT_NOT_ACTIVATED: ADDED.
2513 GNUTLS_CERT_EXPIRED: ADDED.
2514 GNUTLS_VERIFY_DISABLE_TIME_CHECKS: ADDED.
2516 * Version 2.6.5 (released 2009-04-11)
2518 ** libgnutls: Added %SSL3_RECORD_VERSION priority string that allows to
2519 specify the client hello message record version. Used to overcome buggy
2520 TLS servers. Report by Martin von Gagern.
2522 ** GnuTLS no longer uses the libtasn1-config script to find libtasn1.
2523 Libtasn1 0.3.4 or later is required.  This is to align with the
2524 upcoming libtasn1 v2.0 release that doesn't have a libtasn1-script.
2526 ** API and ABI modifications:
2527 No changes since last version.
2529 * Version 2.6.4 (released 2009-02-06)
2531 ** libgnutls: Accept chains where intermediary certs are trusted.
2532 Before GnuTLS needed to validate the entire chain back to a
2533 self-signed certificate.  GnuTLS will now stop looking when it has
2534 found an intermediary trusted certificate.  The new behaviour is
2535 useful when chains, for example, contains a top-level CA, an
2536 intermediary CA signed using RSA-MD5, and an end-entity certificate.
2537 To avoid chain validation errors due to the RSA-MD5 cert, you can
2538 explicitly add the intermediary RSA-MD5 cert to your trusted certs.
2539 The signature on trusted certificates are not checked, so the chain
2540 has a chance to validate correctly.  Reported by "Douglas E. Engert"
2541 <deengert@anl.gov> in
2542 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3351>.
2544 ** libgnutls: result_size in gnutls_hex_encode now holds
2545 the size of the result. Report by John Brooks <special@dereferenced.net>.
2547 ** libgnutls: gnutls_handshake when sending client hello during a
2548 rehandshake, will not offer a version number larger than the current.
2549 Reported by Tristan Hill <stan@saticed.me.uk>.
2551 ** libgnutls: Permit V1 Certificate Authorities properly.
2552 Before they were mistakenly rejected even though
2553 GNUTLS_VERIFY_ALLOW_ANY_X509_V1_CA_CRT and/or
2554 GNUTLS_VERIFY_ALLOW_X509_V1_CA_CRT were supplied.  Reported by
2555 "Douglas E. Engert" <deengert@anl.gov> in
2556 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3351>.
2558 ** libgnutls: deprecate X.509 validation chains using MD5 and MD2 signatures.
2559 This is a bugfix -- the previous attempt to do this from internal x509
2560 certificate verification procedures did not return the correct value
2561 for certificates using a weak hash.  Reported by Daniel Kahn Gillmor
2562 <dkg@fifthhorseman.net> in
2563 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3332>,
2564 debugged and patch by Tomas Mraz <tmraz@redhat.com> and Daniel Kahn
2565 Gillmor <dkg@fifthhorseman.net>.
2567 ** libgnutls: Fix compile error with Sun CC.
2568 Reported by Jeff Cai <jeff.cai@sun.com> in
2569 <https://savannah.gnu.org/support/?106549>.
2571 ** API and ABI modifications:
2572 No changes since last version.
2574 * Version 2.6.3 (released 2008-12-12)
2576 ** libgnutls: Fix chain verification for chains that ends with RSA-MD2 CAs.
2577 Reported by Michael Kiefer <Michael-Kiefer@web.de> in
2578 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=507633> forwarded by
2579 Andreas Metzler <ametzler@downhill.at.eu.org> in
2580 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3309>.
2582 ** libgnutls: Fix memory leak in PSK authentication.
2583 Reported by Michael Weiser <michael@weiser.dinsnail.net> in
2584 <http://permalink.gmane.org/gmane.network.gnutls.general/1465>.
2586 ** certtool: Move gcry_control(GCRYCTL_ENABLE_QUICK_RANDOM, 0) call earlier.
2587 It needs to be invoked before libgcrypt is initialized.
2589 ** gnutls-cli: Return non-zero exit code on error conditions.
2591 ** gnutls-cli: Corrected bug which caused a rehandshake request to be ignored.
2593 ** API and ABI modifications:
2594 No changes since last version.
2596 * Version 2.6.2 (released 2008-11-12)
2598 ** libgnutls: Fix crash in X.509 validation code for self-signed certificates.
2599 The patch to fix the security problem GNUTLS-SA-2008-3 introduced a
2600 problem for certificate chains that contained just one self-signed
2601 certificate.  Reported by Michael Meskes <meskes@debian.org> in
2602 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=505279>.
2604 ** API and ABI modifications:
2605 No changes since last version.
2607 * Version 2.6.1 (released 2008-11-10)
2609 ** libgnutls: Fix X.509 certificate chain validation error. [GNUTLS-SA-2008-3]
2610 The flaw makes it possible for man in the middle attackers (i.e.,
2611 active attackers) to assume any name and trick GnuTLS clients into
2612 trusting that name.  Thanks for report and analysis from Martin von
2613 Gagern <Martin.vGagern@gmx.net>.  [CVE-2008-4989]
2615 Any updates with more details about this vulnerability will be added
2616 to <http://www.gnu.org/software/gnutls/security.html>
2618 ** libgnutls: Add missing prototype for gnutls_srp_set_prime_bits.
2619 Reported by Kevin Quick <quick@sparq.org> in
2620 <https://savannah.gnu.org/support/index.php?106454>.
2622 ** libgnutls-extra: Protect internal symbols with static.
2623 Fixes problem when linking certtool statically.  Tiny patch from Aaron
2624 Ucko <ucko@ncbi.nlm.nih.gov>.
2626 ** libgnutls-openssl: Fix patch against X509_get_issuer_name.
2627 It incorrectly returned the subject DN instead of issuer DN in v2.6.0.
2628 Thanks to Thomas Viehmann <tv@beamnet.de> for report.
2630 ** certtool: Print a PKCS #8 key even if it is not encrypted.
2632 ** tests: Make tests compile when using internal libtasn1.
2633 Patch by ludo@gnu.org (Ludovic Courtès).
2635 ** API and ABI modifications:
2636 No changes since last version.
2638 * Version 2.6.0 (released 2008-10-06)
2640 ** libgnutls: Correct printing and parsing of IPv6 addresses.
2642 ** libgnutls-openssl: fix out of bounds access.
2643 Problem in X509_get_subject_name and X509_get_issuer_name.  Tiny patch
2644 from Thomas Viehmann <tv@beamnet.de>.
2646 ** certtool: Use inet_pton for parsing IPv6 addresses.
2648 ** Major changes compared to the v2.4 branch:
2650 *** Added API to replace and update the crypto backend.
2652 *** certtool: can add several subject alternative names via template file.
2654 *** opencdk: Parse (but not decrypt) encrypted secret keys.
2656 *** libgnutls: gnutls_x509_crt_set_subject_alt_name() was added that can
2657 either set or append alternative names. It can also handle binary structures
2658 such as IP addresses.
2660 *** libgnutls: New function to set minimum acceptable SRP bits.
2661 The function is gnutls_srp_set_prime_bits.
2663 *** libgnutls: Add interface to deal with public key and signature algorithms.
2664 The functions are called gnutls_pk_list, gnutls_pk_get_id,
2665 gnutls_sign_list, and gnutls_sign_get_id.
2667 *** libgnutls: New interfaces to get name of public key and signing algorithms.
2668 The functions are gnutls_sign_get_name and gnutls_pk_get_name.
2670 *** libgnutls: New API to get a string corresponding to a error symbol.
2671 The function is gnutls_strerror_name.
2673 *** libgnutls: New API to set the public parameters in a certificate request
2674 *** from a private key.
2675 The function is gnutls_x509_crq_set_key_rsa_raw.
2677 *** libgnutls: New API to set a callback to extract TLS Finished data.
2678 The function to register is gnutls_session_set_finished_function and
2679 it takes a callback of the gnutls_finished_callback_func type.
2681 *** libgnutls: Fix namespace problem with TLS_MASTER_SIZE and TLS_RANDOM_SIZE.
2683 *** libgnutls: New interface to register a new TLS extension handler.
2684 The new function gnutls_ext_register can be used to register handlers
2685 for specific TLS extension types.  The callback functions have the new
2686 types gnutls_ext_recv_func and gnutls_ext_send_func.  A type to
2687 classify TLS extensions, gnutls_ext_parse_type_t, has been added as
2688 well.
2690 *** libgnutls-extra: Add function to work with Libgcrypt in FIPS mode.
2691 The function is gnutls_register_md5_handler.  When libgcrypt is in
2692 FIPS mode, MD5 is disabled, but TLS normally requires use of MD5 in
2693 the PRF.
2695 *** API/ABI changes in GnuTLS 2.6
2696 No functions have been removed or modified.  The library should be
2697 fully backwards compatible on both the source and binary level.
2699 A new header file <gnutls/crypto.h> have been added.  It contains
2700 definitions related to replacing the internal crypto functionality.
2701 All definitions and the header itself is experimental but supported.
2703 We have realized that the symbols TLS_MASTER_SIZE and TLS_RANDOM_SIZE
2704 does not use the normal namespace.  We have added GNUTLS_MASTER_SIZE
2705 and GNUTLS_RANDOM_SIZE, but the old symbols are still defined.
2707 The following functions have been added to libgnutls:
2709 GNUTLS_MASTER_SIZE
2710 GNUTLS_RANDOM_SIZE
2711 gnutls_crypto_bigint_register2
2712 gnutls_crypto_cipher_register2
2713 gnutls_crypto_digest_register2
2714 gnutls_crypto_mac_register2
2715 gnutls_crypto_pk_register2
2716 gnutls_crypto_rnd_register2
2717 gnutls_crypto_single_cipher_register2
2718 gnutls_crypto_single_digest_register2
2719 gnutls_crypto_single_mac_register2
2720 gnutls_ext_register
2721 gnutls_pk_get_id
2722 gnutls_pk_get_name
2723 gnutls_pk_list
2724 gnutls_session_set_finished_function
2725 gnutls_sign_get_id
2726 gnutls_sign_get_name
2727 gnutls_sign_list
2728 gnutls_srp_set_prime_bits:
2729 gnutls_strerror_name
2730 gnutls_x509_crq_set_key_rsa_raw
2731 gnutls_x509_crt_set_crl_dist_points2
2732 gnutls_x509_crt_set_subject_alt_name
2734 The following functions have been added to libgnutls-extra:
2736 gnutls_register_md5_handler
2738 ** API and ABI modifications:
2739 No changes since last version.
2741 * Version 2.5.9 (released 2008-09-29)
2743 ** libgnutls: Fix several memory leaks.
2744 Reported by Sam Varshavchik <mrsam@courier-mta.com>.
2746 ** libgnutls: Fix buffer overrun in gnutls_x509_crt_list_import.
2747 Report and patch by Jonathan Manktelow.
2749 ** libgnutls: crypto.h gnutls_pk_params_st changes allocation strategy.
2750 The parameters are now allocated in the structure itself.
2752 ** doc: Texinfo HTML manual uses a stylesheet to improve readability.
2754 ** tests: Scripts now use EXEEXT properly.
2755 Modern libtool doesn't create wrapper script, so the self tests need
2756 to invoke certtool.exe under MinGW32+Wine.
2758 ** Uses autoconf 2.63, automake 1.10.1, libtool 2.2.6a.
2759 Automake warnings are now also enabled.
2761 ** API and ABI modifications:
2762 gnutls_pk_params_st: MODIFIED
2764 * Version 2.5.8 (released 2008-09-21)
2766 ** certtool: updated so it can add several subject alternative names using
2767 the template file.
2769 ** libgnutls: gnutls_x509_crt_set_subject_alt_name() was added that can
2770 either set or append alternative names. It can also handle binary structures
2771 such as IP addresses.
2773 ** libgnutls: Fix crash in hashing code when using non-libgcrypt handlers.
2775 ** libgnutls: New function to set minimum acceptable SRP bits.
2776 The function is gnutls_srp_set_prime_bits.  Tiny patch by Kevin Quick
2777 <quick@sparq.org> in <https://savannah.gnu.org/support/index.php?106454>.
2779 ** libgnutls: Check for overflows in gnutls_calloc and gnutls_secure_calloc.
2780 Also fix overflows in calls to those functions.  Reported by Werner
2781 Koch <wk@gnupg.org>.
2783 ** libgnutls-extra: Add function to work with Libgcrypt in FIPS mode.
2784 The function is gnutls_register_md5_handler.  When libgcrypt is in
2785 FIPS mode, MD5 is disabled, but TLS normally requires use of MD5 in
2786 the PRF.
2788 ** Opencdk: Add calls to gnutls_assert to ease debugging.
2790 ** Indent code.
2792 ** API and ABI modifications:
2793 gnutls_srp_set_prime_bits: ADDED
2794 gnutls_register_md5_handler: ADDED
2795 gnutls_x509_crt_set_crl_dist_points2: ADDED
2796 gnutls_x509_crt_set_subject_alt_name: ADDED
2798 * Version 2.5.7 (released 2008-09-16)
2800 ** libgnutls: New interfaces to get name of public key and signing algorithms.
2801 The functions are gnutls_sign_get_name and gnutls_pk_get_name.
2803 ** libgnutls: Don't crash when gnutls_credentials_set is called twice.
2805 ** libgnutls: Fix libgnutls shared library version.
2806 It wasn't properly incremented after adding symbols in the last
2807 release.
2809 ** manual: Now mention supported public key and public key signing algorithms.
2811 ** tests/openssl: initialize gnutls before use.
2813 ** tests/setcredcrash: New test to catch regressions of gnutls_credentials_set.
2815 ** GTK-DOC manual: mention new symbols in 2.6.x.  Mention crypto.h functions.
2817 ** API and ABI modifications:
2818 gnutls_sign_get_name: ADDED
2819 gnutls_pk_get_name: ADDED
2821 * Version 2.5.6 (released 2008-09-08)
2823 ** libgnutls: Add interface to deal with public key and signature algorithms.
2824 The functions are called gnutls_pk_list, gnutls_pk_get_id,
2825 gnutls_sign_list, and gnutls_sign_get_id.  Suggested by Sam
2826 Varshavchik <mrsam@courier-mta.com>.
2828 ** libgnutls: Refactor and clean up some code.
2830 ** libgnutls: Fix compile error with Sun CC.
2832 ** gnutls-cli: Improve --list output to include public key and signature algs.
2834 ** gnutls-cli, gnutls-serv: Remove --copyright parameter.
2835 Use standard --version to get license info.
2837 ** gnutls-cli.1: Document all new parameters.
2838 Thanks to James Westby <jw+debian@jameswestby.net>.
2840 ** tests: New self-test pgps2kgnu to test parsing of encrypted secrets.
2841 Contributed by Daniel Kahn Gillmor <dkg-debian.org@fifthhorseman.net>.
2843 ** API and ABI modifications:
2844 gnutls_pk_list: ADDED
2845 gnutls_pk_get_id: ADDED
2846 gnutls_sign_list: ADDED
2847 gnutls_sign_get_id: ADDED
2849 * Version 2.5.5 (released 2008-08-29)
2851 ** libgnutls: New API to get a string corresponding to a error symbol.
2852 The function is gnutls_strerror_name.
2854 ** libgnutls: Fix include paths so that building with internal libtasn1 works.
2855 Reported by "jth.net ApS" <info@jth.net>.
2857 ** libgnutls: Fix segmentation fault when generating private keys.
2858 Reported by Daniel Kahn Gillmor <dkg-debian.org@fifthhorseman.net>.
2860 ** libgnutls: Remove code to import certificate chains in PKCS#7 format.
2861 The code has not worked since v0.9.0 and apparently nobody has missed
2862 it, so we decided to remove the code rather than fix it.  If you have
2863 old certificate chains stored in PKCS#7 format, you can convert them
2864 to a list of PEM certificates by using 'certtool --p7-info'.  Reported
2865 by Christian Grothoff <christian@grothoff.org>.
2867 ** opencdk: Parse (but not decrypt) encrypted secret keys.
2868 Contributed by Daniel Kahn Gillmor <dkg-debian.org@fifthhorseman.net>.
2870 ** libgnutls: Fix many warnings.
2872 ** Included copy of libtasn1 is upgraded to version 1.5.
2874 ** Add French translation, thanks to Nicolas Provost.
2876 ** API and ABI modifications:
2877 gnutls_strerror_name: ADDED
2879 * Version 2.5.4 (released 2008-08-19)
2881 ** Fix secure memory initialization of libgcrypt.
2882 Reported by Joe Orton <joe@manyfish.co.uk> in
2883 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/2992>.
2885 ** Doc fixes.
2886 Reference to NIST SP 800-57 in the manual on key size recommendations.
2887 Added 'Since:' tags to new APIs for gtk-doc.
2889 ** API and ABI modifications:
2890 No changes since last version.
2892 * Version 2.5.3 (released 2008-08-14)
2894 ** libgnutls: New API to set the public parameters in a certificate request
2895 ** from a private key.
2896 The function is gnutls_x509_crq_set_key_rsa_raw.  Inspired by
2897 discussion with "Zach C." <fxchip@gmail.com>.
2899 ** libgnutls: New API to set a callback to extract TLS Finished data.
2900 The function to register is gnutls_session_set_finished_function and
2901 it takes a callback of the gnutls_finished_callback_func type.
2903 ** libgnutls: Drop final comma after GNUTLS_CRT_PRINT_UNSIGNED_FULL in enum.
2904 Reported in <https://savannah.gnu.org/support/?106453>.
2906 ** libgnutls: Fix namespace problem with TLS_MASTER_SIZE and TLS_RANDOM_SIZE.
2907 The new names are GNUTLS_MASTER_SIZE and GNUTLS_RANDOM_SIZE.  The old
2908 names are mapped to the new names in compat.h.  These mappings will
2909 likely be removed more quickly than other mappings in that file due to
2910 the namespace violation.
2912 ** libgnutlsxx: Make it build when SRP is disabled.
2914 ** doc: Add doxygen files in doc/doxygen/.
2916 ** API and ABI modifications:
2917 gnutls_x509_crq_set_key_rsa_raw: ADDED
2918 gnutls_session_set_finished_function: ADDED
2919 gnutls_finished_callback_func: ADDED
2920 GNUTLS_MASTER_SIZE: ADDED
2921 GNUTLS_RANDOM_SIZE: ADDED
2922 TLS_MASTER_SIZE: DEPRECATED
2923 TLS_RANDOM_SIZE: DEPRECATED
2925 * Version 2.5.2 (released 2008-07-08)
2927 ** libgnutls: Fix bug in gnutls_dh_params_generate2.
2928 The prime and generator was swapped.
2930 ** libgnutls: New interface to register a new TLS extension handler.
2931 The new function gnutls_ext_register can be used to register handlers
2932 for specific TLS extension types.  The callback functions have the new
2933 types gnutls_ext_recv_func and gnutls_ext_send_func.  A type to
2934 classify TLS extensions, gnutls_ext_parse_type_t, has been added as
2935 well.
2937 ** Move more code for TLS/IA extension from libgnutls to libgnutls-extra.
2938 This was made possible by using the new gnutls_ext_register interface.
2939 The TLS/IA functionality has only been supported through the
2940 libgnutls-extra library, so it makes sense for the code to belong
2941 there too.
2943 ** API and ABI modifications:
2944 gnutls_ext_recv_func: ADDED
2945 gnutls_ext_send_func: ADDED
2946 gnutls_ext_parse_type_t: ADDED
2947 gnutls_ext_register: ADDED
2949 * Version 2.5.1 (released 2008-07-02)
2951 ** Indent code.
2953 ** API and ABI modifications:
2954 No changes since last version.
2956 * Version 2.5.0 (released 2008-07-02)
2958 ** Port fixes from v2.4.1 release, see below.
2960 ** Added API to replace and update the crypto backend.
2961 The header gnutls/crypto.h is now officially supported, and declares
2962 the symbols below.
2964 ** Rewritten opencdk crypto backend, to use the gnutls internal one.
2966 ** Update gnulib and translations.
2967 The gnulib gc crypto code has been removed since it was never finished
2968 and is no longer even used.  An internal non-libgcrypt crypto
2969 implementation may be added in the future, but we'll decide that later
2972 ** API and ABI modifications:
2973 gnutls_crypto_bigint_register2: ADDED.
2974 gnutls_crypto_cipher_register2: ADDED.
2975 gnutls_crypto_digest_register2: ADDED.
2976 gnutls_crypto_mac_register2: ADDED.
2977 gnutls_crypto_pk_register2: ADDED.
2978 gnutls_crypto_rnd_register2: ADDED.
2979 gnutls_crypto_single_cipher_register2: ADDED.
2980 gnutls_crypto_single_digest_register2: ADDED.
2981 gnutls_crypto_single_mac_register2: ADDED.
2983 * Version 2.4.3 (released 2009-02-06)
2985 ** libgnutls: Accept chains where intermediary certs are trusted.
2986 Before GnuTLS needed to validate the entire chain back to a
2987 self-signed certificate.  GnuTLS will now stop looking when it has
2988 found an intermediary trusted certificate.  The new behaviour is
2989 useful when chains, for example, contains a top-level CA, an
2990 intermediary CA signed using RSA-MD5, and an end-entity certificate.
2991 To avoid chain validation errors due to the RSA-MD5 cert, you can
2992 explicitly add the intermediary RSA-MD5 cert to your trusted certs.
2993 The signature on trusted certificates are not checked, so the chain
2994 has a chance to validate correctly.  Reported by "Douglas E. Engert"
2995 <deengert@anl.gov> in
2996 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3351>.
2998 ** libgnutls: Permit V1 Certificate Authorities properly.
2999 Before they were mistakenly rejected even though
3000 GNUTLS_VERIFY_ALLOW_ANY_X509_V1_CA_CRT and/or
3001 GNUTLS_VERIFY_ALLOW_X509_V1_CA_CRT were supplied.  Reported by
3002 "Douglas E. Engert" <deengert@anl.gov> in
3003 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3351>.
3005 ** libgnutls: deprecate X.509 validation chains using MD5 and MD2 signatures.
3006 This is a bugfix -- the previous attempt to do this from internal x509
3007 certificate verification procedures did not return the correct value
3008 for certificates using a weak hash.  Reported by Daniel Kahn Gillmor
3009 <dkg@fifthhorseman.net> in
3010 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3332>,
3011 debugged and patch by Tomas Mraz <tmraz@redhat.com> and Daniel Kahn
3012 Gillmor <dkg@fifthhorseman.net>.
3014 ** libgnutls: Fix chain verification for chains that ends with RSA-MD2 CAs.
3015 Reported by Michael Kiefer <Michael-Kiefer@web.de> in
3016 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=507633> forwarded by
3017 Andreas Metzler <ametzler@downhill.at.eu.org> in
3018 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3309>.
3020 ** libgnutls: Fix crash in X.509 validation code for self-signed certificates.
3021 The patch to fix the security problem GNUTLS-SA-2008-3 introduced a
3022 problem for certificate chains that contained just one self-signed
3023 certificate.  Reported by Michael Meskes <meskes@debian.org> in
3024 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=505279>.
3026 ** libgnutls: Fix X.509 certificate chain validation error. [GNUTLS-SA-2008-3]
3027 The flaw makes it possible for man in the middle attackers (i.e.,
3028 active attackers) to assume any name and trick GnuTLS clients into
3029 trusting that name.  Thanks for report and analysis from Martin von
3030 Gagern <Martin.vGagern@gmx.net>.  [CVE-2008-4989]
3032 Any updates with more details about this vulnerability will be added
3033 to <http://www.gnu.org/software/gnutls/security.html>
3035 ** libgnutls: Fix buffer overrun in gnutls_x509_crt_list_import.
3036 Report and patch by Jonathan Manktelow.
3038 ** libgnutls: Avoid use of non-thread safe strerror.
3040 ** API and ABI modifications:
3041 No changes since last version.
3043 * Version 2.4.2 (released 2008-09-15)
3045 ** libgnutls: Don't crash when gnutls_credentials_set is called twice.
3047 ** libgnutls: Corrected memory leak in X.509 functions.
3048 Thanks to Colin Leroy <colin@colino.net>.
3050 ** libgnutls: Fix compile error with Sun CC.
3052 ** gnutls-cli.1: Document all new parameters.
3053 Thanks to James Westby <jw+debian@jameswestby.net>.
3055 ** tests/openssl: initialize gnutls before use.
3056 Fixes crash with libgcrypt 1.4.2.  Reported by Ludovic Courtes
3057 <ludovic.courtes@laas.fr>.
3059 ** doc/: Fix texinfo markup for old texinfo versions.
3061 ** Included copy of libtasn1 is upgraded to version 1.5.
3063 ** API and ABI modifications:
3064 No changes since last version.
3066 * Version 2.4.1 (released 2008-06-30)
3068 ** libgnutls: Fix local crash in gnutls_handshake.  [GNUTLS-SA-2008-2]
3069 If the gnutls_handshake function is called for a normal session, which
3070 can happen for re-handshakes, the library would crash because it tried
3071 to hash some data using a libgcrypt handle that had been deallocated.
3072 Report and tiny patch from Tomas Mraz <tmraz@redhat.com>.  Any updates
3073 with more details about this vulnerability will be added to
3074 <http://www.gnu.org/software/gnutls/security.html>
3076 ** libgnutls: Fix memory leaks when doing a re-handshake.
3077 Reported by Sam Varshavchik <mrsam@courier-mta.com> in
3078 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/2928>.
3080 ** Fix compiler warnings.
3081 Reported by Massimo Gaspari <massimo.gaspari@alice.it> in
3082 <http://thread.gmane.org/gmane.network.gnutls.general/1281>.
3084 ** Fix ordering of -I's to avoid opencdk.h conflict with system headers.
3085 Reported by Roman Bogorodskiy <novel@FreeBSD.org> in
3086 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/2930>.
3088 ** srptool: Fix a problem where --verify check does not succeed.
3089 Report and tiny patch by Matthias Koenig <mkoenig@suse.de> in
3090 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/2944>.
3092 ** API and ABI modifications:
3093 No changes since last version.
3095 * Version 2.4.0 (released 2008-06-19)
3097 ** Major changes compared to the v2.2 branch:
3099 *** The OpenPGP sub-system has been improved and now supports subkeys.
3101 *** The PSK sub-system has been improved and now supports password
3102 *** derivation and PSK identity hints.
3103 The password derivation algorithms support is documented in
3104 draft-ietf-netconf-tls-02.txt.
3106 *** The certtool --inder and --outder has been replaced by --inraw and --outraw.
3107 This aligns terminology with OpenPGP, which doesn't use DER encoding.
3108 The old parameters will continue to work for some time.
3110 *** Certtool now confirm passwords and changes permissions of private key files.
3112 *** The default handshake size limit has been increased to 48kb.
3113 It appears as if some valid handshakes are large due to sending many
3114 CA certificates.  (The earlier limit was 16kb.)
3116 *** LZO compression is now disabled by default.
3117 The main reason is that LZO compression in TLS is not standardized,
3118 but license compatiblity issues with minilzo triggered us to make this
3119 decision now.
3121 *** Improvements for cross-compilation to Windows and OpenWRT.
3123 *** The look of the GTK-DOC manual has been improved.
3124 Major developer visible changes compared to the v2.2 branch:
3126 *** Full OpenPGP support is part of libgnutls, licensed under the LGPL.
3128 *** New APIs to access the raw X.509 Subject and Issuer DN's and
3129 *** elements from the certificate credentials structure.
3130 Thanks to Joe Orton.
3132 *** New APIs to improve working with username/passwords and PSK.
3134 *** Names of constants to affect certificate printing changed.
3135 The constants are used for OpenPGP too, which the names didn't
3136 reflect, so the following name change has been made:
3138             Old name                         New name
3139      GNUTLS_X509_CRT_FULL            GNUTLS_CRT_PRINT_FULL
3140      GNUTLS_X509_CRT_ONELINE         GNUTLS_CRT_PRINT_ONELINE
3141      GNUTLS_X509_CRT_UNSIGNED_FULL   GNUTLS_CRT_PRINT_UNSIGNED_FULL
3143 The old names will be mapped to the new names for some time.
3145 *** The function gnutls_openpgp_privkey_get_id has been renamed to
3146 *** gnutls_openpgp_privkey_get_key_id.
3147 A compatibility mapping exists to avoid breaking API backwards
3148 compatibility.
3150 *** Replaced all uses of alloca with malloc and free.
3152 *** We no longer build with -D_REENTRANT -D_THREAD_SAFE.
3153 We have been unable to find a documented rationale for this practice.
3155 *** Of course, many smaller fixes have been made, see the ChangeLog file.
3157 *** API/ABI changes in GnuTLS 2.4
3158 All OpenPGP related functions have been moved from libgnutls-extra to
3159 libgnutls, and several new functions have been added (see below).
3160 Before making the release, we discussed whether moving functions from
3161 libgnutls-extra to libgnutls would require us to increment the ABI
3162 version, but the general opinion was that this would not be required.
3163 All older functions continue to work the same.  We are open to the
3164 possibility that this decision will lead to problem on some platform,
3165 and if it turns out that the Right Thing should have been to increment
3166 the shared library version, we would need to release an update within
3167 the 2.4.x branch that increments the shared library version.
3169 This release adds the following functions:
3171   gnutls_psk_client_get_hint
3172   gnutls_psk_set_server_credentials_hint
3173   gnutls_psk_netconf_derive_key
3175     Used to get/set the PSK identity hint, and derive PSK keys from
3176     passwords a'la netconf.
3178   gnutls_x509_dn_deinit
3179   gnutls_x509_dn_export
3180   gnutls_x509_dn_import
3181   gnutls_x509_dn_init
3183     Used to handle X.509 Certificate DN's directly.
3185   gnutls_hex2bin
3187     Converts a data buffer to hex.  Useful for handling PSK/SRP shared
3188     secrets.
3190   gnutls_certificate_get_x509_cas
3191   gnutls_certificate_get_x509_crls
3192   gnutls_certificate_get_openpgp_keyring
3194     Functions for direct access to credential elements.
3196   gnutls_openpgp_crt_get_auth_subkey
3197   gnutls_openpgp_crt_get_key_id
3198   gnutls_openpgp_crt_get_pk_dsa_raw
3199   gnutls_openpgp_crt_get_pk_rsa_raw
3200   gnutls_openpgp_crt_get_preferred_key_id
3201   gnutls_openpgp_crt_get_revoked_status
3202   gnutls_openpgp_crt_get_subkey_count
3203   gnutls_openpgp_crt_get_subkey_creation_time
3204   gnutls_openpgp_crt_get_subkey_expiration_time
3205   gnutls_openpgp_crt_get_subkey_fingerprint
3206   gnutls_openpgp_crt_get_subkey_id
3207   gnutls_openpgp_crt_get_subkey_idx
3208   gnutls_openpgp_crt_get_subkey_pk_algorithm
3209   gnutls_openpgp_crt_get_subkey_pk_dsa_raw
3210   gnutls_openpgp_crt_get_subkey_pk_rsa_raw
3211   gnutls_openpgp_crt_get_subkey_revoked_status
3212   gnutls_openpgp_crt_get_subkey_usage
3213   gnutls_openpgp_crt_print
3214   gnutls_openpgp_crt_set_preferred_key_id
3215   gnutls_openpgp_keyring_get_crt
3216   gnutls_openpgp_keyring_get_crt_count
3217   gnutls_openpgp_privkey_export
3218   gnutls_openpgp_privkey_export_dsa_raw
3219   gnutls_openpgp_privkey_export_rsa_raw
3220   gnutls_openpgp_privkey_export_subkey_dsa_raw
3221   gnutls_openpgp_privkey_export_subkey_rsa_raw
3222   gnutls_openpgp_privkey_get_fingerprint
3223   gnutls_openpgp_privkey_get_key_id
3224   gnutls_openpgp_privkey_get_pk_algorithm
3225   gnutls_openpgp_privkey_get_preferred_key_id
3226   gnutls_openpgp_privkey_get_revoked_status
3227   gnutls_openpgp_privkey_get_subkey_count
3228   gnutls_openpgp_privkey_get_subkey_creation_time
3229   gnutls_openpgp_privkey_get_subkey_expiration_time
3230   gnutls_openpgp_privkey_get_subkey_fingerprint
3231   gnutls_openpgp_privkey_get_subkey_id
3232   gnutls_openpgp_privkey_get_subkey_idx
3233   gnutls_openpgp_privkey_get_subkey_pk_algorithm
3234   gnutls_openpgp_privkey_get_subkey_revoked_status
3235   gnutls_openpgp_privkey_set_preferred_key_id
3237     New OpenPGP related functions.
3239     The function gnutls_openpgp_crt_get_key_id is the same as the old
3240     from gnutls_openpgp_crt_get_id, see above.
3242 The release also adds a new header file 'gnutls/crypto.h', however it
3243 is currently not used.
3245 ** libgnutls [OpenPGP]: New APIs to retrieve fingerprint from OpenPGP subkeys.
3246 Contributed by Daniel Kahn Gillmor <dkg-debian.org@fifthhorseman.net>.
3248 ** API and ABI modifications:
3249 gnutls_openpgp_crt_get_subkey_fingerprint: ADDED.
3250 gnutls_openpgp_privkey_get_subkey_fingerprint: ADDED.
3252 * Version 2.3.15 (released 2008-06-15)
3254 ** Disable the openpgp-certs self-tests.
3255 It results in failure under Wine and doesn't work on Debian buildds.
3257 ** API and ABI modifications:
3258 No changes since last version.
3260 * Version 2.3.14 (released 2008-06-11)
3262 ** libgnutls [OpenPGP]: Changed OpenPGP verification behaviour.
3263 An OpenPGP certificate is now only considered verified if all the user
3264 IDs are verified.
3266 ** Examples: Make C++ example compile.
3267 Earlier it may have failed with an unresolved reference to strlen.
3269 ** Documentation: Doc fix for gnutls_x509_crt_get_extension_oid.
3270 Reported by Sam Varshavchik <mrsam@courier-mta.com>.
3272 ** API and ABI modifications:
3273 No changes since last version.
3275 * Version 2.3.13 (released 2008-06-07)
3277 ** libgnutls [OpenPGP]: Make OpenPGP handshakes work again.
3279 ** doc/: Add psktool to info index.  Some minor cleanups.
3281 ** tests/: Added non-forking TLS handshake test, see tests/mini.c.
3283 ** tests/: Added libgcrypt.supp which can be used with valgrind.
3284 The file suppresses the known libgcrypt memory leaks, so they aren't
3285 printed when you run valgrind on the gnutls self-tests.  Use it as
3286 follows: valgrind --suppressions=libgcrypt.supp ./x509self or add
3287 '--suppressions=/home/you/src/gnutls/tests/libgcrypt.supp' to your
3288 ~/.valgrindrc file.
3290 ** tests/: Reduce amount of debugging output by default.
3291 Use --verbose for each test to get the full output.
3293 ** tests/: Fix memory leaks in several self-tests.
3294 None of the self tests should be leaking memory when running valgrind
3295 or similar tools.  (Known exceptions are dhepskself, pskself, and
3296 set_pkcs12_cred, which appear likely to be due to memory leaks in the
3297 library.)
3299 ** API and ABI modifications:
3300 No changes since last version.
3302 * Version 2.3.12 (released 2008-06-04)
3304 ** Merge gnutls_with_netconf branch.
3306 *** libgnutls [PSK]: New API to retrieve PSK identity hint in client.
3307 The function is gnutls_psk_client_get_hint.
3309 *** libgnutls [PSK]: New API to set PSK identity hint in server.
3310 The function is gnutls_psk_set_server_credentials_hint.
3312 *** libgnutls [PSK]: Support server key exchange with PSK identity hint.
3313 In the client, the message is parsed and the application can use
3314 gnutls_psk_client_get_hint to retrieve the hint.  In the server, the
3315 message is sent if the application has specified a PSK identity hint
3316 using gnutls_psk_set_server_credentials_hint.
3318 *** libgnutls [PSK]: Support Netconf PSK key derivation.
3319 The function gnutls_psk_netconf_derive_key supports the PSK key
3320 derivation as specified in draft-ietf-netconf-tls-02.txt.  New self
3321 test netconf-psk.c.
3323 *** psktool: Support new --netconf-hint to generate PSK key from password.
3324 Uses the Netconf algorithm to derive PSK key from password.
3326 *** gnutls-serv: Support new --pskhint parameter to set PSK identity hint.
3328 *** gnutls-cli: Always support PSK modes, through a callback.
3329 The callback will derive a PSK key using Netconf algorithm.  It will
3330 print the PSK identity hint to help the user.
3332 *** New PSK example client and server.
3333 See doc/examples/ex-client-psk.c and doc/examples/ex-serv-psk.c.
3335 ** libgnutls: Fix gnutls_x509_crl_set_version on arm platforms.
3336 The code didn't work properly on platforms where 'char' is unsigned,
3337 when you set version 0.  Reported by Laurence Withers
3338 <l@lwithers.me.uk> in
3339 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/2825>.
3341 ** libgnutls-openssl: added RAND_pseudo_bytes API.
3342 Patch from Robert Millan <rmh@aybabtu.com>.
3344 ** API and ABI modifications:
3345 RAND_pseudo_bytes: ADDED to libgnutls-openssl.
3346 gnutls_psk_client_get_hint: ADDED.
3347 gnutls_psk_set_server_credentials_hint: ADDED.
3348 gnutls_psk_netconf_derive_key: ADDED
3350 * Version 2.3.11 (released 2008-05-20)
3352 ** Fix flaw in fix for GNUTLS-SA-2008-1-3.
3353 The flaw would result in incorrectly terminated sessions with the
3354 error "Decryption has failed" when the server sends a small packet
3355 (typically when the session is closed).  Reported by Andreas Metzler
3356 <ametzler@downhill.at.eu.org> in
3357 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/2807>.
3359 ** Don't use gnulib headers when building C++ library.
3360 Fixes builds under Windows.
3362 ** Make umask a requirement.
3363 We don't know of any system that lacks it, even GNU CoreUtils use it
3364 unconditionally.
3366 ** Update gnulib files.
3367 Fixes a problem where it pulled in a replacement for memcmp under
3368 MinGW, which caused the C++ example to fail to build.
3370 ** API and ABI modifications:
3371 No changes since last version.
3373 * Version 2.3.10 (released 2008-05-19)
3375 ** Added wide wildcard hostname matching.
3376 Tiny patch by Jean-Philippe Garcia Ballester.
3378 ** Fix three security vulnerabilities.  [GNUTLS-SA-2008-1]
3379 Thanks to CERT-FI for finding the bugs and providing detailed reports,
3380 which allowed the bugs to be reproduced and fixed easily.  Patches
3381 developed by Simon Josefsson and Nikos Mavrogiannopoulos.  Any updates
3382 with more details about these vulnerabilities will be added to
3383 <http://www.gnu.org/software/gnutls/security.html>
3385 *** [GNUTLS-SA-2008-1-1]
3386 *** libgnutls: Fix crash when sending invalid server name.
3387 The crash can be triggered remotely before authentication, which can
3388 lead to a Daniel of Service attack to disable the server.  The bug
3389 cause gnutls to store more session resumption data than what was
3390 allocated for, thus overwriting unallocated memory.
3392 *** [GNUTLS-SA-2008-1-2]
3393 *** libgnutls: Fix crash when sending repeated client hellos.
3394 The crash can be triggered remotely before authentication, which can
3395 lead to a Daniel of Service attack to disable the server.  The bug
3396 triggers a null-pointer dereference.
3398 *** [GNUTLS-SA-2008-1-3]
3399 *** libgnutls: Fix crash in cipher padding decoding for invalid record lengths.
3400 The crash can be triggered remotely before authentication, which can
3401 lead to a Daniel of Service attack to disable the server.  The bug
3402 cause gnutls to read memory beyond the end of the received record.
3404 ** libgnutlsxx: Updated API according to patches from Eduardo 
3405 Villanueva Che (discussion at
3406 <http://lists.gnu.org/archive/html/gnutls-devel/2007-02/msg00017.html>)
3408 ** Use umask to restrict permissions to owner before creating a file.
3410 ** API and ABI modifications:
3411 No changes since last version.
3413 * Version 2.3.9 (released 2008-05-16)
3415 ** libgnutls: Fix build failures if SRP/OpenPGP is disabled.
3416 Based on report and tiny patches from
3417 <jared.jennings.ctr@eglin.af.mil>, see
3418 <https://savannah.gnu.org/support/index.php?106342>.
3420 ** libgnutls: Translation fixes.
3422 ** gnutls-cli: Fix so that PSK authentication works.
3423 Also improve manual to give example for gnutls-cli PSK authentication.
3425 ** certtool: Encrypting a private key now require a confirmed password.
3426 Before './certtool -k -8' would merely ask for a password once.
3427 Reported by Daniel 'NebuchadnezzaR' Dehennin
3428 <nebuchadnezzar@asgardr.info> see
3429 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=364287>.
3431 ** certtool: When writing private keys to files, change permissions of file.
3432 Now the file which the private key is saved to is chmod'ed 0600.
3433 Reported by martin f krafft <madduck@debian.org> see
3434 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=373169>.
3436 ** guile: Fix -fgnu89-inline test.
3438 ** Removed --enable-profile-mode.
3439 The code linked gnutls with the libfc project (Function Check) which
3440 appears to have been stalled since around 2002.
3442 ** Clean up header file checks by ./configure.
3444 ** Update of gnulib files.
3446 ** API and ABI modifications:
3447 No changes since last version.
3449 * Version 2.3.8 (released 2008-04-29)
3451 ** libgnutls: Increase default handshake packet size limit to 48kb.
3452 The old limit was 16kb and some servers send huge list of trusted CAs,
3453 thus running into the limit.  FYI, applications can further increase
3454 this limit using gnutls_handshake_set_max_packet_length.  Thanks to
3455 Marc Haber <mh+debian-bugs@zugschlus.de> and "Marc F. Clemente"
3456 <marc@mclemente.net> for reporting and providing test servers.
3458 ** libgnutls: Add new error code: GNUTLS_E_HANDSHAKE_TOO_LARGE
3459 Returned when the handshake data size is too large.  Before
3460 GNUTLS_E_MEMORY_ERROR was used, which could be confused with other
3461 error situations.
3463 ** libgnutls: Hide definitions in crypto.h.
3464 We have decided that the APIs defined in crypto.h are not stable
3465 enough for v2.4, so don't use any of those functions.
3467 ** gnutls-cli: exit when hostname doesn't match certificate.
3468 Use --insecure to avoid hostname comparison.
3470 ** certtool: --inder and --outder replaced by --inraw and --outraw.
3471 The reason is to align terminology with OpenPGP, which doesn't use
3472 DER.  The old parameters will continue to work for some time.
3474 ** doc: Add section 'Index of new symbols in 2.4.0' to the GTK-DOC manual.
3476 ** doc: Many cosmetic fixes, to silence (most) gtk-doc warnings.
3478 ** Mingw32: Revert libgcrypt vasprintf work-around added in last release.
3479 Use libgcrypt 1.4.1 or later when building on MinGW32, it removes the
3480 vasprintf symbol from the libgcrypt library which caused problems.
3482 ** Update of gnulib files.
3484 ** tests: New self-test of crypto.h RNG code tests/crypto_rng.
3486 ** API and ABI modifications:
3487 GNUTLS_E_HANDSHAKE_TOO_LARGE: ADDED.
3489 * Version 2.3.7 (released 2008-04-21)
3491 ** opencdk now properly sets the key usage bits into openpgp keys.
3493 ** gnutls-cli: Fix crash on TLS handshake failures.
3494 Reported by "Marc F. Clemente" <marc@mclemente.net> in Debian BTS #466477.
3495 This is similar to <http://bugs.debian.org/429183>.
3497 ** certtool: with --generate-request and newly generated keys, print the key.
3499 ** Build fixes for MinGW.
3500 Missing rpl_fseeko symbol in lib/opencdk/.  Better checks for linking
3501 with -lws2_32 when needed.  Use ASCII only isprint() when printing
3502 X.509 certificate information, to avoid non-ASCII but printable
3503 characters.  Thanks to Massimo Gaspari <massimo.gaspari@alice.it> for
3504 reports.
3506 ** Update internal copy of libtasn1 to version 1.4.
3508 ** API and ABI modifications:
3509 No changes since last version.
3511 * Version 2.3.6 (released 2008-04-17)
3513 ** Make gnutls_x509_crq_sign2 set certificate request version if not set.
3514 ** Improve documentation for gnutls_x509_crq_sign2.
3515 Based on report from "John Brooks" <aspecialj@gmail.com> in
3516 <http://permalink.gmane.org/gmane.network.gnutls.general/1154>.
3518 ** tests/pathlen: run diff without parameters to improve portability.
3519 Based on HPUX build hints in
3520 <http://hpux.cs.utah.edu/hppd/cgi-bin/wwwtar?/hpux/Gnu/gnutls-2.3.4/gnutls-2.3.4-src-11.11.tar.gz+gnutls-2.3.4/HPUX.Install+text>.
3522 ** Don't use %e specifier with strftime, it doesn't work under Windows.
3523 Reported by Massimo Gaspari <massimo.gaspari@alice.it> in
3524 <http://permalink.gmane.org/gmane.network.gnutls.general/1170>.
3526 ** Remove all uses of gnutls_alloca/gnutls_afree.
3527 Use normal gnutls_malloc instead.  One reason is increased portability
3528 to Windows, the other is that several of the uses may be unsafe
3529 because the size of data allocated could be large.  Reported by
3530 Massimo Gaspari <massimo.gaspari@alice.it> in
3531 <http://permalink.gmane.org/gmane.network.gnutls.general/1170>.
3533 ** Build Guile code with -fgnu89-inline only when supported.
3534 Reported by Kris Karas <ktk@enterprise.bidmc.harvard.edu> in
3535 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/2708>.
3537 ** Several GTK-DOC related fixes.
3539 ** Clean up OpenCDK related code.
3540 GnuTLS now requires its internal OpenCDK code rather than the external
3541 GPL library OpenCDK.  Unfortunately, we don't have resources to
3542 maintain an external library (help welcome).
3544 ** API and ABI modifications:
3545 No changes since last version.
3547 * Version 2.3.5 (released 2008-04-14)
3549 ** Build fix for MinGW and --disable-shared.
3550 Reported by Massimo Gaspari <massimo.gaspari@alice.it> in
3551 <http://permalink.gmane.org/gmane.network.gnutls.general/1145>.
3553 ** Document how to generate CRLs.
3554 Suggested by "Rainer Gerhards" <rgerhards@gmail.com>.
3556 ** Documented the --priority option to gnutls-cli and gnutls-serv.
3558 ** Several minor fixes in the OpenPGP interface.
3559 Thanks to Daniel Kahn Gillmor.
3561 ** Fix fopen file descriptor leak in PSK server code.
3562 Thanks to Laurence Withers <l@lwithers.me.uk>, see
3563 <http://lists.gnu.org/archive/html/gnutls-devel/2008-04/msg00002.html>.
3565 ** Translations files not stored directly in git to avoid merge conflicts.
3567 ** New APIs to let applications replace the RNG used.
3568 Update all RNG callers in the code to use the new interface.
3570 ** Guile code now built with -fgnu89-inline to fix inline semantic problem.
3572 ** Update gnulib files.
3574 ** API and ABI modifications:
3575 gnutls_crypto_rnd_register: ADDED
3576 gnutls_rnd_level_t: ADDED
3577 GNUTLS_RND_KEY: ADDED, gnutls_rnd_level_t member
3578 GNUTLS_RND_RANDOM: ADDED, gnutls_rnd_level_t member
3579 GNUTLS_RND_NONCE: ADDED, gnutls_rnd_level_t member
3580 gnutls_crypto_rnd_st: ADDED
3581 GNUTLS_DIG_SHA224: ADDED
3582 GNUTLS_SIGN_RSA_SHA224: ADDED
3583 gnutls_openpgp_crt_get_auth_subkey: MODIFIED
3585 * Version 2.3.4 (released 2008-03-19)
3587 ** Finish renaming of gnutls_certificate_export_x509_cas etc.
3588 They weren't renamed in the public header file.
3590 ** Added functions to register a cipher/mac/digest. This allows to 
3591 override the included ones.
3593 ** Fix a bunch of compiler warnings.
3595 ** API and ABI modifications:
3596 gnutls_crypto_cipher_st: ADDED
3597 gnutls_crypto_mac_st: ADDED
3598 gnutls_crypto_digest_st: ADDED
3599 gnutls_crypto_cipher_register: ADDED
3600 gnutls_crypto_mac_register: ADDED
3601 gnutls_crypto_digest_register: ADDED
3602 GNUTLS_E_CRYPTO_ALREADY_REGISTERED: ADDED
3604 * Version 2.3.3 (released 2008-03-10)
3606 ** Fix build failure in libextra/gnutls_extra.c that needed opencdk.h.
3607 Reported by Roman Bogorodskiy <novel@FreeBSD.org>.
3609 ** No longer compiled using -D_REENTRANT -D_THREAD_SAFE.
3610 We could not find any modern justification for enabling these flags by
3611 default.  If you know of some platform that needs one of the flags to
3612 work properly, please let us know.  (Actually introduced in v2.3.0 but
3613 not documented until now.)
3615 ** Importing many CA certificates are now considerably faster.
3616 This affect gnutls_certificate_set_x509_trust_mem,
3617 gnutls_certificate_set_x509_trust, and
3618 gnutls_certificate_set_x509_trust_file.  The complexity was reduced
3619 from O(2*n^2) to O(n).  When adding 206 files containing 408
3620 certificates, using gnutls_certificate_set_x509_trust_file, the time
3621 dropped from 40 seconds to 0.3 seconds.  Thanks to Edgar Fuß for code
3622 to trigger the problem.  See also
3623 <http://blog.josefsson.org/2008/02/27/real-world-performance-tuning-with-callgrind/>.
3625 ** Clarify documentation for gnutls_x509_crt_set_subject_alternative_name
3626 ** to be explicit that it takes zero terminated data.
3628 ** gnutls-cli --print-cert now print PKCS#3 format Diffie-Hellman parameters.
3630 ** Documentation fixes for the GTK-DOC manual.
3632 ** Fix compilation error related to __FUNCTION__ on some systems.
3633 Reported by Tim Mooney, see
3634 <https://savannah.gnu.org/support/?106267>.
3636 ** Updated translations.
3638 ** Update gnulib files.
3640 ** API and ABI modifications:
3641 gnutls_hex2bin: MODIFIED, uses size_t instead of int for string length,
3642                 and char* instead of void* for output buffer.
3644 * Version 2.3.2 (released 2008-02-26)
3646 ** Fix srcdir!=objdir failure in openpgpself test.
3648 ** Improved API documentation output from GTK-DOC.
3650 ** Added gnutls_x509_dn_export(). Patch by Joe Orton.
3652 ** Renamed gnutls_certificate_export_x509_cas and friends.
3653 See <http://lists.gnu.org/archive/html/gnutls-devel/2008-02/msg00043.html>.
3655 ** Internal header files cleanup.
3657 ** API and ABI modifications:
3658 gnutls_certificate_export_x509_cas: RENAMED to gnutls_certificate_get_x509_cas
3659 gnutls_certificate_export_x509_crls: RENAMED to gnutls_certificate_get_x509_crls
3660 gnutls_certificate_export_openpgp_keyring: RENAMED to gnutls_certificate_get_openpgp_keyring
3661 gnutls_x509_dn_export: ADDED
3663 * Version 2.3.1 (released 2008-02-21)
3665 ** OpenPGP support merged into libgnutls and is now licensed under LGPL.
3666 The included copy of OpenCDK has been stripped down and re-licensed
3667 under the LGPL.
3669 ** Cipher priority string handling now handle strings that starts with NULL.
3670 Thanks to Laurence Withers <l@lwithers.me.uk>.
3672 ** gnutls-cli: When -d is used, also prints RNG information from libgcrypt.
3674 ** Corrected memory leaks in session resuming and DHE ciphersuites. Reported
3675 by Daniel Stenberg.
3677 ** Increased the default certificate verification chain limits and allowed
3678 for checks without limitation.
3680 ** Corrected the behaviour of gnutls_x509_crt_get_subject_alt_name()
3681 and gnutls_x509_crt_get_subject_alt_name() to not null terminate binary
3682 strings and return the proper size.
3684 ** Add section 'On Record Padding' to the manual.
3685 This collects all problems related to record padding with
3686 Nokia/Sony-Ericsson phones that we know about.
3688 ** Several improvements in the OpenPGP authentication.
3689 Now subkeys can be used for authentication, according to
3690 draft-mavrogiannopoulos-rfc5081bis-00.txt.
3692 ** certtool can print information on OpenPGP certificates and keys.
3694 ** Added gnutls_x509_dn_import/init/deinit() to access raw DER DN.
3695 Patch by Joe Orton.
3697 ** Added gnutls_certificate_export_x509_cas and other functions to
3698 export elements from the certificate credentials structure.  Based on
3699 suggestion from Joe Orton.
3701 ** Doc fixes.
3702 Clarify that srp_base64 is not the same as normal base64.
3704 ** Fix non-portable use of brace expansion in makefiles.
3706 ** API and ABI modifications:
3707 gnutls_certificate_export_x509_cas: ADDED
3708 gnutls_certificate_export_x509_crls: ADDED
3709 gnutls_certificate_export_openpgp_keyring: ADDED
3710 gnutls_openpgp_keyid_t: ADDED, instead of hard-coded 'unsigned char[8]'.
3711 gnutls_openpgp_crt_get_key_id: ADDED, obsoletes gnutls_openpgp_crt_get_id.
3712 gnutls_openpgp_crt_get_revoked_status: ADDED
3713 gnutls_openpgp_crt_get_subkey_count: ADDED
3714 gnutls_openpgp_crt_get_subkey_idx: ADDED
3715 gnutls_openpgp_crt_get_subkey_revoked_status: ADDED
3716 gnutls_openpgp_crt_get_subkey_pk_algorithm: ADDED
3717 gnutls_openpgp_crt_get_subkey_creation_time: ADDED
3718 gnutls_openpgp_crt_get_subkey_expiration_time: ADDED
3719 gnutls_openpgp_crt_get_subkey_id: ADDED
3720 gnutls_openpgp_crt_get_subkey_usage: ADDED
3721 gnutls_openpgp_privkey_get_fingerprint: ADDED
3722 gnutls_openpgp_privkey_get_key_id: ADDED
3723 gnutls_openpgp_privkey_get_subkey_count: ADDED
3724 gnutls_openpgp_privkey_get_subkey_idx: ADDED
3725 gnutls_openpgp_privkey_get_subkey_revoked_status: ADDED
3726 gnutls_openpgp_privkey_get_revoked_status: ADDED
3727 gnutls_openpgp_privkey_get_subkey_pk_algorithm: ADDED
3728 gnutls_openpgp_privkey_get_subkey_expiration_time: ADDED
3729 gnutls_openpgp_privkey_get_subkey_id: ADDED
3730 gnutls_openpgp_privkey_get_subkey_creation_time: ADDED
3731 gnutls_openpgp_crt_get_subkey_pk_dsa_raw: ADDED
3732 gnutls_openpgp_crt_get_subkey_pk_rsa_raw: ADDED
3733 gnutls_openpgp_crt_get_pk_dsa_raw: ADDED
3734 gnutls_openpgp_crt_get_pk_rsa_raw: ADDED
3735 gnutls_openpgp_privkey_export_subkey_dsa_raw: ADDED
3736 gnutls_openpgp_privkey_export_subkey_rsa_raw: ADDED
3737 gnutls_openpgp_privkey_export_dsa_raw: ADDED
3738 gnutls_openpgp_privkey_export_rsa_raw: ADDED
3739 gnutls_openpgp_privkey_export: ADDED
3740 gnutls_certificate_set_openpgp_key_file2: ADDED
3741 gnutls_certificate_set_openpgp_key_mem2: ADDED
3742 gnutls_x509_dn_init: ADDED
3743 gnutls_x509_dn_import: ADDED
3744 gnutls_x509_dn_deinit: ADDED
3745 GNUTLS_E_OPENPGP_SUBKEY_ERROR: ADDED
3746 gnutls_hex2bin: ADDED
3747 GNUTLS_CRT_PRINT_FULL: ADDED, same as old GNUTLS_X509_CRT_FULL.
3748 GNUTLS_CRT_PRINT_ONELINE: ADDED, same as old GNUTLS_X509_CRT_ONELINE.
3749 GNUTLS_CRT_PRINT_UNSIGNED_FULL: ADDED, same as
3750                                 old GNUTLS_X509_CRT_UNSIGNED_FULL.
3752 * Version 2.3.0 (released 2008-01-08)
3754 ** LZO compression is now disabled by default.
3755 The reason is that LZO compression is not standardized in TLS.  If you
3756 wish to experiment with it, you will have to supply --with-lzo when
3757 invoking ./configure.  The internal copy of minilzo is no longer
3758 included with GnuTLS, so you will need to install liblzo or liblzo2 on
3759 your system to have --with-lzo to be effective.
3761 ** More than one server name field is now sent to the server properly.
3762 Thanks to mark.phillips@virgin.net.
3764 ** Fixes the post_client_hello_function(). The extensions are now parsed
3765 in a callback friendly way.
3767 ** Fix for certificate selection in servers with certificate callbacks.
3769 ** Updated translations.
3771 ** Update gnulib files.
3773 ** API and ABI modifications:
3774 No changes since last version.
3776 * Version 2.2.5 (released 2008-05-19)
3778 ** Fix flaw in fix for GNUTLS-SA-2008-1-3.
3779 The flaw would result in incorrectly terminated sessions with the
3780 error "Decryption has failed" when the server sends a small packet
3781 (typically when the session is closed).  Reported by Andreas Metzler
3782 <ametzler@downhill.at.eu.org> in
3783 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/2807>.
3785 ** API and ABI modifications:
3786 No changes since last version.
3788 * Version 2.2.4 (released 2008-05-19)
3790 ** Fix three security vulnerabilities.  [GNUTLS-SA-2008-1]
3791 Thanks to CERT-FI for finding the bugs and providing detailed reports,
3792 which allowed the bugs to be reproduced and fixed easily.  Patches
3793 developed by Simon Josefsson and Nikos Mavrogiannopoulos.  Any updates
3794 with more details about these vulnerabilities will be added to
3795 <http://www.gnu.org/software/gnutls/security.html>
3797 *** [GNUTLS-SA-2008-1-1]
3798 *** libgnutls: Fix crash when sending invalid server name.
3799 The crash can be triggered remotely before authentication, which can
3800 lead to a Daniel of Service attack to disable the server.  The bug
3801 cause gnutls to store more session resumption data than what was
3802 allocated for, thus overwriting unallocated memory.
3804 *** [GNUTLS-SA-2008-1-2]
3805 *** libgnutls: Fix crash when sending repeated client hellos.
3806 The crash can be triggered remotely before authentication, which can
3807 lead to a Daniel of Service attack to disable the server.  The bug
3808 triggers a null-pointer dereference.
3810 *** [GNUTLS-SA-2008-1-3]
3811 *** libgnutls: Fix crash in cipher padding decoding for invalid record lengths.
3812 The crash can be triggered remotely before authentication, which can
3813 lead to a Daniel of Service attack to disable the server.  The bug
3814 cause gnutls to read memory beyond the end of the received record.
3816 ** API and ABI modifications:
3817 No changes since last version.
3819 * Version 2.2.3 (released 2008-05-06)
3821 ** Increase default handshake packet size limit to 48kb.
3822 The old limit was 16kb and some servers send huge list of trusted CAs,
3823 thus running into the limit.  FYI, applications can further increase
3824 this limit using gnutls_handshake_set_max_packet_length.  Thanks to
3825 Marc Haber <mh+debian-bugs@zugschlus.de> and "Marc F. Clemente"
3826 <marc@mclemente.net> for reporting and providing test servers.
3828 ** Fix compilation error related to __FUNCTION__ on some systems.
3829 Reported by Tim Mooney, see
3830 <https://savannah.gnu.org/support/?106267>.
3832 ** Documented the --priority option to gnutls-cli and gnutls-serv.
3834 ** Fix fopen file descriptor leak in PSK server code.
3835 Thanks to Laurence Withers <l@lwithers.me.uk>, see
3836 <http://lists.gnu.org/archive/html/gnutls-devel/2008-04/msg00002.html>.
3838 ** Build Guile code with -fgnu89-inline only when supported.
3839 Reported by Kris Karas <ktk@enterprise.bidmc.harvard.edu> in
3840 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/2708>.
3842 ** Make Camellia encryption work.
3843 Reported by Yoshisato YANAGISAWA <yanagisawa@csg.is.titech.ac.jp> in
3844 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/2746>.
3846 ** API and ABI modifications:
3847 No changes since last version.
3849 * Version 2.2.2 (released 2008-02-21)
3851 ** Cipher priority string handling now handle strings that starts with NULL.
3852 Thanks to Laurence Withers <l@lwithers.me.uk>.
3854 ** Corrected memory leaks in session resuming and DHE ciphersuites. Reported
3855 by Daniel Stenberg.
3857 ** Increased the default certificate verification chain limits and allowed
3858 for checks without limitation.
3860 ** Corrected the behaviour of gnutls_x509_crt_get_subject_alt_name()
3861 and gnutls_x509_crt_get_subject_alt_name() to not null terminate binary
3862 strings and return the proper size.
3864 ** API and ABI modifications:
3865 No changes since last version.
3867 * Version 2.2.1 (released 2008-01-17)
3869 ** Prevent linking libextra against previously installed libgnutls.
3870 Tiny patch from "Alon Bar-Lev" <alon.barlev@gmail.com>, see
3871 <http://bugs.gentoo.org/show_bug.cgi?id=202269>.
3873 ** Fixes the post_client_hello_function(). The extensions are now parsed
3874 in a callback friendly way.
3876 ** Fix for certificate selection in servers with certificate callbacks.
3878 ** API and ABI modifications:
3879 No changes since last version.
3881 * Version 2.2.0 (released 2007-12-14)
3883 ** Update internal copy of libtasn1 to version 1.2.
3885 ** Certtool --verify-chain now handle inputs larger than 64kb.
3886 This fixes the self-test "rsa-md5-collision" under MinGW+Wine with
3887 recent versions of libgcrypt.  The problem was that Wine with the
3888 libgcrypt RNG generates huge amounts of debugging output.
3890 ** Translation updates.
3891 Added Dutch translation.  Updated Polish and Swedish translation.
3893 ** Major changes compared to the v2.0 branch:
3895 *** SRP support aligned with newly published RFC 5054.
3897 *** OpenPGP support aligned with newly published RFC 5081.
3899 *** Support for DSA2 keys.
3901 *** Support for Camellia cipher.
3903 *** Support for Opaque PRF Input extension.
3905 *** PKCS#8 parser now handle DSA keys.
3907 *** Change from GPLv2 to GPLv3 for command-line tools, libgnutls-extra, etc.
3908 Notice that liblzo2 2.02 is licensed under GPLv2 only.  Earlier
3909 versions, such as 2.01 which is included with GnuTLS, is available
3910 under GPLv2 or later.  If this incompatibility causes problems, we
3911 recommend you to disable LZO using --without-lzo.  LZO compression is
3912 not a standard TLS compression algorithm, so the impact should be
3913 minimal.
3915 *** Functions for disabling record protocol padding.
3916 Works around bugs on Nokia/Ericsson phones.
3918 *** New functions gnutls_priority_set() for setting cipher priorities easily.
3919 Priorities like "COMPAT" also enables other work arounds, such as
3920 disabling padding.
3922 *** Other minor improvements and bug fixes.
3924 ** Backwards incompatible API/ABI changes in GnuTLS 2.2
3925 To adapt to changes in the TLS extension specifications for OpenPGP
3926 and SRP, the GnuTLS API had to be modified.  This means breaking the
3927 API and ABI backwards compatibility.  That is something we try to
3928 avoid unless it is necessary.  We decided to also remove the already
3929 deprecated stub functions for X.509 to XML conversion and TLS
3930 authorization (see below) when we had the opportunity.
3932 Generally, most applications does not need to be modified.  Just
3933 re-compile them against the latest GnuTLS release, and it should work
3934 fine.
3936 Applications that use the OpenPGP or SRP features needs to be
3937 modified.  Below is a list of the modified APIs and discussion of what
3938 the minimal things you need to modify in your application to make it
3939 work with GnuTLS 2.2.
3941 Note that GnuTLS 2.2 also introduces new APIs -- such as
3942 gnutls_set_priority() that is superior to
3943 gnutls_set_default_priority() -- that you may want to start using.
3944 However, using those new APIs is not required to use GnuTLS 2.2 since
3945 the old functions continue are still supported.  This text only
3946 discuss what you minimally have to modify.
3948 *** XML related changes
3949 The function `gnutls_x509_crt_to_xml' has been removed.  It has been
3950 deprecated and only returned an error code since GnuTLS version
3951 1.2.11.  Nobody has complained, so users doesn't seem to miss the
3952 functionality.  We don't know of any other library to convert X.509
3953 certificates into XML format, but we decided (long ago) that GnuTLS
3954 isn't the right place for this kind of functionality.  If you want
3955 help to find some other library to use here, please explain and
3956 discuss your use case on help-gnutls@gnu.org.
3958 *** TLS Authorization related changes
3959 Everything related to TLS authorizations have been removed, they were
3960 only stub functions that returned an error code:
3962  GNUTLS_SUPPLEMENTAL_AUTHZ_DATA
3963  gnutls_authz_data_format_type_t
3964  gnutls_authz_recv_callback_func
3965  gnutls_authz_send_callback_func
3966  gnutls_authz_enable
3967  gnutls_authz_send_x509_attr_cert
3968  gnutls_authz_send_saml_assertion
3969  gnutls_authz_send_x509_attr_cert_url
3970  gnutls_authz_send_saml_assertion_url
3972 *** SRP related changes
3973 The callback gnutls_srp_client_credentials_function has a new
3974 prototype, and its semantic has changed.  You need to rewrite the
3975 callback, see the updated function documentation and SRP example code
3976 (doc/examples/ex-client-srp.c and doc/examples/ex-serv-srp.c) for more
3977 information.
3979 The alert codes GNUTLS_A_MISSING_SRP_USERNAME and
3980 GNUTLS_A_UNKNOWN_SRP_USERNAME are no longer used by the SRP
3981 specification, instead the GNUTLS_A_UNKNOWN_PSK_IDENTITY alert is
3982 used.  There are #define's to map the old names to the new.  You may
3983 run into problems if you have a switch-case with cases for both SRP
3984 alerts, since they are now mapped to the same value.  The solution is
3985 to drop the SRP alerts from such switch cases, as they are now
3986 deprecated in favor of GNUTLS_A_UNKNOWN_PSK_IDENTITY.
3988 *** OpenPGP related changes
3989 The function `gnutls_certificate_set_openpgp_keyserver' have been
3990 removed.  There is no replacement functionality inside GnuTLS.  If you
3991 need keyserver functionality, consider using the GnuPG tools.
3993 All functions, types, and error codes related to OpenPGP trustdb
3994 format have been removed.  The trustdb format is a non-standard
3995 GnuPG-specific format, and we recommend you to use key rings instead.
3996 The following have been removed:
3998  gnutls_certificate_set_openpgp_trustdb
3999  gnutls_openpgp_trustdb_init
4000  gnutls_openpgp_trustdb_deinit
4001  gnutls_openpgp_trustdb_import
4002  gnutls_openpgp_key_verify_trustdb
4003  gnutls_openpgp_trustdb_t
4004  GNUTLS_E_OPENPGP_TRUSTDB_VERSION_UNSUPPORTED
4006 The following functions has an added parameter of the (new) type
4007 `gnutls_openpgp_crt_fmt_t'.  The type specify the format of the data
4008 (binary or base64).  The functions are:
4009  gnutls_certificate_set_openpgp_key_file
4010  gnutls_certificate_set_openpgp_key_mem
4011  gnutls_certificate_set_openpgp_keyring_mem
4012  gnutls_certificate_set_openpgp_keyring_file
4014 To improve terminology and align with the X.509 interface, some
4015 functions have been renamed.  Compatibility mappings exists.  The old
4016 and new names of the affected functions and types are:
4018         Old name                                New name
4019  gnutls_openpgp_key_t                    gnutls_openpgp_crt_t
4020  gnutls_openpgp_key_fmt_t                gnutls_openpgp_crt_fmt_t
4021  gnutls_openpgp_key_status_t             gnutls_openpgp_crt_status_t
4022  GNUTLS_OPENPGP_KEY                      GNUTLS_OPENPGP_CERT
4023  GNUTLS_OPENPGP_KEY_FINGERPRINT          GNUTLS_OPENPGP_CERT_FINGERPRINT
4024  gnutls_openpgp_key_init                 gnutls_openpgp_crt_init
4025  gnutls_openpgp_key_deinit               gnutls_openpgp_crt_deinit
4026  gnutls_openpgp_key_import               gnutls_openpgp_crt_import
4027  gnutls_openpgp_key_export               gnutls_openpgp_crt_export
4028  gnutls_openpgp_key_get_key_usage        gnutls_openpgp_crt_get_key_usage
4029  gnutls_openpgp_key_get_fingerprint      gnutls_openpgp_crt_get_fingerprint
4030  gnutls_openpgp_key_get_pk_algorithm     gnutls_openpgp_crt_get_pk_algorithm
4031  gnutls_openpgp_key_get_name             gnutls_openpgp_crt_get_name
4032  gnutls_openpgp_key_get_version          gnutls_openpgp_crt_get_version
4033  gnutls_openpgp_key_get_creation_time    gnutls_openpgp_crt_get_creation_time
4034  gnutls_openpgp_key_get_expiration_time  gnutls_openpgp_crt_get_expiration_time
4035  gnutls_openpgp_key_get_id               gnutls_openpgp_crt_get_id
4036  gnutls_openpgp_key_check_hostname       gnutls_openpgp_crt_check_hostname
4037  gnutls_openpgp_send_key                 gnutls_openpgp_send_cert
4039 ** API and ABI modifications:
4040 No changes since last version.
4042 * Version 2.1.8 (released 2007-12-10)
4044 ** The GPL version has been changed from version 2 to version 3.
4045 This affects the self-tests, command-line tools, the libgnutls-extra
4046 library, the relevant guile parts, and the build environment.
4048 ** Added gnutls_x509_crt_get_subject_alt_name2().
4050 ** Corrected a segfault when setting an empty gnutls_priority_t
4051 at gnutls_priority_set().
4053 ** Use gettext 0.17 which updates m4/lib-*.m4 macros.
4054 Fixes a problem with spurious -L/usr/lib additions.
4056 ** API and ABI modifications:
4057 gnutls_x509_crt_get_subject_alt_name2: ADD.
4059 * Version 2.1.7 (released 2007-11-29)
4061 ** PKCS #8 parser can now encode/decode DSA keys.
4063 ** Updated gnutls_set_default_priority2() now renamed to
4064 gnutls_priority_set() and gnutls_priority_set_direct() which
4065 accept a string to indicate preferences of ciphersuite parameters.
4067 ** gnutls-cli and gnutls-serv now have a --priority option to set
4068 the priority string.
4070 ** The gnutls_*_convert_priority() functions were deprecated by
4071 the gnutls_priority_set() and gnutls_priority_set_direct().
4073 ** Internal copy of OpenCDK upgraded to version 0.6.6.
4075 ** API and ABI modifications:
4076 gnutls_priority_init: ADD.
4077 gnutls_priority_deinit: ADD.
4078 gnutls_priority_set: ADD.
4079 gnutls_priority_set_direct: ADD.
4080 gnutls_set_default_priority2: RENAMED to gnutls_priority_set_direct()
4081 gnutls_mac_convert_priority: REMOVED
4082 gnutls_compression_convert_priority: REMOVED
4083 gnutls_protocol_convert_priority: REMOVED
4084 gnutls_kx_convert_priority: REMOVED
4085 gnutls_cipher_convert_priority: REMOVED
4086 gnutls_certificate_type_convert_priority: REMOVED
4087 gnutls_set_default_priority: UNDEPRECATED
4088 gnutls_set_default_priority_export: UNDEPRECATED
4090 ** Undocumented API and ABI modifications earlier in the 2.1.x series:
4091 GNUTLS_CIPHER_UNKNOWN: ADD.
4092 GNUTLS_CIPHER_CAMELLIA_128_CBC: ADD.
4093 GNUTLS_CIPHER_CAMELLIA_256_CBC: ADD.
4094 GNUTLS_KX_UNKNOWN: ADD.
4095 GNUTLS_COMP_UNKNOWN: ADD.
4096 GNUTLS_CRT_UNKNOWN: ADD.
4097 gnutls_mac_get_id: ADD.
4098 gnutls_compression_get_id: ADD.
4099 gnutls_cipher_get_id: ADD.
4100 gnutls_kx_get_id: ADD.
4101 gnutls_protocol_get_id: ADD.
4102 gnutls_certificate_type_get_id: ADD.
4103 gnutls_handshake_post_client_hello_func: ADD.
4104 gnutls_certificate_send_x509_rdn_sequence: ADD prototype to gnutls.h.in.
4106 * Version 2.1.6 (released 2007-11-15)
4108 ** Corrected bug in decompression of expanded compression data.
4110 ** Added the --to-p8 option to certtool to convert private keys
4111 to PKCS #8 keys.
4113 ** Introduced the GNUTLS_E_BASE64_UNEXPECTED_HEADER_ERROR error code.
4115 ** gnutls_certificate_set_x509_key_* can now read PKCS #8 unencrypted
4116 private keys.
4118 ** Fixed GNUTLS_E_UNKNOWN_ALGORITHM vs GNUTLS_E_UNKNOWN_HASH_ALGORITHM.
4119 During the 2.1.x series the GNUTLS_E_UNKNOWN_HASH_ALGORITHM error code
4120 was renamed to GNUTLS_E_UNKNOWN_ALGORITHM, unfortunately without being
4121 documented.  This caused some problems (e.g., debian #450854).  To
4122 avoid backwards compatibility problems, this release revert this
4123 change, so that GNUTLS_E_UNKNOWN_HASH_ALGORITHM works just like it has
4124 done in GnuTLS 2.0.x and earlier, and add a new error code
4125 GNUTLS_E_UNKNOWN_ALGORITHM.
4127 ** Fixes several gtk-doc warnings.
4129 ** API and ABI modifications:
4130 GNUTLS_E_UNKNOWN_ALGORITHM: CHANGED.
4131 GNUTLS_E_UNKNOWN_HASH_ALGORITHM: CHANGED.
4132 GNUTLS_E_BASE64_UNEXPECTED_HEADER_ERROR: ADD.
4134 * Version 2.1.5 (released 2007-11-01)
4136 ** Fix PKCS#3 parameter export problem.
4138 ** Improve certtool queries, they now print the default value.
4140 ** Fix ABI version.
4142 ** Update gnulib files.
4144 ** API and ABI modifications:
4145 No changes since last version.
4147 * Version 2.1.4 (released 2007-10-27)
4149 ** Added the --v1 option to certtool, to allow generating X.509
4150 version 1 certificates. 
4152 ** certtool: Add option --disable-quick-random to enable the old behaviour
4153 of using /dev/random to generate keys.
4155 ** Added priority functions that accept strings.
4157 ** Added gnutls_set_default_priority2() which accepts a flag to indicate
4158 priorities preferences.
4160 ** Added gnutls_record_disable_padding() to allow servers talking to 
4161 buggy clients that complain if the TLS 1.0 record protocol padding is
4162 used.
4164 ** Introduced gnutls_session_enable_compatibility_mode() to allow enabling
4165 all supported compatibility options (like disabling padding).
4167 ** The gnutls_certificate_set_openpgp_* functions were modified to include
4168 the format. This makes the interface consistent with the x509 functions.
4170 ** Internal copy of OpenCDK upgraded to version 0.6.5.
4172 ** Update gnulib files.
4174 ** API and ABI modifications:
4175 gnutls_certificate_set_openpgp_key_mem: MODIFIED
4176 gnutls_certificate_set_openpgp_key_file: MODIFIED
4177 gnutls_certificate_set_openpgp_keyring_mem: MODIFIED
4178 gnutls_certificate_set_openpgp_keyring_file: MODIFIED
4179 gnutls_set_default_priority: DEPRECATED
4180 gnutls_set_default_priority_export: DEPRECATED
4181 gnutls_set_default_priority2: ADDED
4182 gnutls_session_enable_compatibility_mode: ADDED
4183 gnutls_record_disable_padding: ADDED
4184 gnutls_mac_convert_priority: ADDED
4185 gnutls_compression_convert_priority: ADDED
4186 gnutls_protocol_convert_priority: ADDED
4187 gnutls_kx_convert_priority: ADDED
4188 gnutls_cipher_convert_priority: ADDED
4189 gnutls_certificate_type_convert_priority: ADDED
4190 gnutls_openpgp_key_t: RENAMED to gnutls_openpgp_crt_t
4191 gnutls_openpgp_key_status_t: RENAMED to gnutls_openpgp_crt_status_t
4192 gnutls_openpgp_send_key: RENAMED to gnutls_openpgp_send_cert
4193 gnutls_openpgp_key_init: RENAMED to gnutls_openpgp_crt_init
4194 gnutls_openpgp_key_import: RENAMED to gnutls_openpgp_crt_import
4195 gnutls_openpgp_key_export: RENAMED to gnutls_openpgp_crt_export
4196 gnutls_openpgp_key_check_hostname: RENAMED to gnutls_openpgp_crt_check_hostname
4197 gnutls_openpgp_key_get_creation_time: RENAMED to gnutls_openpgp_crt_get_creation_time
4198 gnutls_openpgp_key_get_expiration_time: RENAMED to gnutls_openpgp_crt_get_expiration_time
4199 gnutls_openpgp_key_get_fingerprint: RENAMED to gnutls_openpgp_crt_get_fingerprint
4200 gnutls_openpgp_key_get_version: RENAMED to gnutls_openpgp_crt_get_version
4201 gnutls_openpgp_key_get_pk_algorithm: RENAMED to gnutls_openpgp_crt_get_pk_algorithm
4202 gnutls_openpgp_key_get_name: RENAMED to gnutls_openpgp_crt_get_name
4203 gnutls_openpgp_key_deinit: RENAMED to gnutls_openpgp_crt_deinit
4204 gnutls_openpgp_key_get_id: RENAMED to gnutls_openpgp_crt_get_id
4205 gnutls_openpgp_key_get_key_usage: RENAMED to gnutls_openpgp_crt_get_key_usage
4206 gnutls_openpgp_key_verify_ring: RENAMED to gnutls_openpgp_crt_verify_ring
4207 gnutls_openpgp_key_verify_self: RENAMED to gnutls_openpgp_crt_verify_self
4209 * Version 2.1.3 (released 2007-10-17)
4211 ** TLS authorization support removed.
4212 This technique may be patented in the future, and it is not of crucial
4213 importance for the Internet community.  After deliberation we have
4214 concluded that the best thing we can do in this situation is to
4215 encourage society not to adopt this technique.  We have decided to
4216 lead the way with our own actions.
4218 ** Re-enabled the 256 bit ciphers in the default priorities.
4220 ** Corrected bugs in openpgp key verification using a keyring (both in
4221 gnutls and opencdk)
4223 ** API and ABI modifications:
4224 gnutls_certificate_set_openpgp_keyserver: REMOVED
4225 gnutls_authz_data_format_type_t,
4226 gnutls_authz_recv_callback_func,
4227 gnutls_authz_send_callback_func,
4228 gnutls_authz_enable,
4229 gnutls_authz_send_x509_attr_cert,
4230 gnutls_authz_send_saml_assertion,
4231 gnutls_authz_send_x509_attr_cert_url,
4232 gnutls_authz_send_saml_assertion_url: REMOVED.
4233 GNUTLS_SUPPLEMENTAL_USER_MAPPING_DATA: ADDED.  To avoid that the
4234     gnutls_supplemental_data_format_type_t enum type becomes empty.
4236 * Version 2.1.2 (released 2007-10-14)
4238 ** Removed all the trustdb code from openpgp authentication.
4239 We now use only the well-specified keyrings.
4241 ** The 256 bit ciphers are not enabled in the default priorities.
4243 ** Added support for DSA2 using libgcrypt 1.3.0.
4245 ** certtool: Fixed data corruption when using --outder.
4247 ** Removed all the xml related stubs and functions.
4249 ** Added capability to set a callback after the client hello is received
4250 by the server in order to adjust parameters before the handshake.
4252 ** SRP was corrected to adhere to the latest draft (published soon as RFC)
4254 ** Corrected bug which did not allow a server to run without supporting
4255 certificates.
4257 ** Updated the DN parser which now prints wrongly decoded values as hex
4258 strings.
4260 ** certtool: Add option --quick-random.
4261 For generating low security test credentials.
4263 ** API and ABI modifications:
4264 gnutls_x509_crt_to_xml: REMOVED
4265 gnutls_openpgp_key_to_xml: REMOVED
4266 gnutls_openpgp_key_verify_trustdb: REMOVED
4267 gnutls_openpgp_trustdb_init: REMOVED
4268 gnutls_openpgp_trustdb_deinit: REMOVED
4269 gnutls_openpgp_trustdb_import: REMOVED
4270 gnutls_certificate_set_openpgp_trustdb: REMOVED
4271 gnutls_srp_client_credentials_function: CHANGED
4272 gnutls_handshake_set_post_client_hello_function: ADDED
4273 gnutls_mac_get_key_size: ADDED
4274 GNUTLS_E_OPENPGP_TRUSTDB_VERSION_UNSUPPORTED: DEPRECATED.
4275 GNUTLS_A_MISSING_SRP_USERNAME: DEPRECATED
4276 GNUTLS_A_UNKNOWN_SRP_USERNAME: DEPRECATED
4278 * Version 2.1.1 (released 2007-09-24)
4280 ** Added support for Camellia cipher, thanks to Yoshisato YANAGISAWA.
4281 Camellia is only enabled in GnuTLS if the installed libgcrypt has been
4282 compiled with Camellia support.  See the libgcrypt documentation on
4283 how to enable it.  Unconditionally disable it using the configure
4284 option --disable-camellia.  Fixes #1.
4286 ** Properly document in the NEWS file the API change in the last release.
4288 ** API and ABI modifications:
4289 No changes since last version.
4291 * Version 2.1.0 (released 2007-09-20)
4293 ** Support for draft-rescorla-tls-opaque-prf-input-00.txt.
4294 The support is disabled by default.  Since no value has been allocated
4295 by the IANA for this extension yet, you will need to provide one
4296 yourself by invoking './configure --enable-opaque-prf-input=42'.
4297 Fixes #2.
4299 ** Example code: Fix compilation flaw under MinGW.
4301 ** API and ABI modifications:
4302 gnutls_oprfi_callback_func: ADD, new typedef function prototype.
4303 gnutls_oprfi_enable_client: ADD, new function.
4304 gnutls_oprfi_enable_server: ADD, new function.
4306 * Version 2.0.4 (released 2007-11-16)
4308 ** Corrected bug in decompression of expanded compression data.           
4310 ** API and ABI modifications:
4311 No changes since last version.
4313 * Version 2.0.3 (released 2007-11-10)
4315 ** This version backports several fixes from the 2.1.x branch.
4317 ** Fixed PKCS #3 parameter export.
4319 ** Added gnutls_record_disable_padding() to allow servers talking to
4320 buggy clients that complain if the TLS 1.0 record protocol padding is
4321 used.
4323 ** Introduced gnutls_session_enable_compatibility_mode() to allow enabling
4324 all supported compatibility options (like disabling padding).
4326 ** Corrected bug which did not allow a server to run without supporting
4327 certificates.
4329 ** API and ABI modifications:
4330 gnutls_session_enable_compatibility_mode: ADDED
4331 gnutls_record_disable_padding: ADDED
4333 * Version 2.0.2 (released 2007-10-17)
4335 ** TLS authorization support removed.
4336 This technique may be patented in the future, and it is not of crucial
4337 importance for the Internet community.  After deliberation we have
4338 concluded that the best thing we can do in this situation is to
4339 encourage society not to adopt this technique.  We have decided to
4340 lead the way with our own actions.
4342 ** certtool: Fixed data corruption when using --outder.
4344 ** Fix configure-time Guile detection.
4346 ** API and ABI modifications:
4347 GNUTLS_SUPPLEMENTAL_USER_MAPPING_DATA: ADDED.  To avoid that the
4348     gnutls_supplemental_data_format_type_t enum type becomes empty.
4350 * Version 2.0.1 (released 2007-09-20)
4352 ** New directory doc/credentials/ with test credentials.
4353 This collects the test credentials from the web page and from src/.
4354 The script gnutls-http-serv has also been moved to that directory.
4356 ** Update SRP extension type and cipher suite with official IANA values.
4357 This breaks backwards compatibility with SRP in older versions of
4358 GnuTLS, but this is intentional to speed up the adoption of the
4359 official values.  The old values we used were incorrect.
4361 ** Guile: Fix `x509-certificate-dn-oid'
4363 ** API and ABI modifications:
4364 No changes since last version.
4366 * Version 2.0.0 (released 2007-09-04)
4368 ** Included copy of Libtasn1 upgraded to version 1.1.
4370 ** Disable building of some examples if anonymous ciphers are disabled.
4372 ** Don't build examples for disabled features.
4374 ** API and ABI modifications:
4375 No changes since last version.
4377 * Version 1.7.19 (released 2007-08-27)
4379 ** Fix gnutls_error_is_fatal so that positive "errors" are non-critical.
4380 This solves connection problems in mutt, see
4381 <http://bugs.debian.org/439640>.
4383 ** Update gnulib files.
4384 In particular, the getpass module -- with its dependencies on getline,
4385 getdelim, fseeko etc -- where moved from the lgl/ (used by the core
4386 library) directory to the gl/ directory (only used by the command line
4387 tools).  The reason is that getpass is now only used by the
4388 command-line tools, and reducing the number of gnulib modules linked
4389 to the core library helps portability and reduces size.
4391 ** Fix warnings.
4393 ** Disable building of PGP examples if PGP is disabled.
4395 ** Included copy of OpenCDK upgraded to version 0.6.4.
4397 ** API and ABI modifications:
4398 No changes since last version.
4400 * Version 1.7.18 (released 2007-08-16)
4402 ** Install images for the info manual.
4403 This has a side effect of renaming the images.  See
4404 <http://thread.gmane.org/gmane.comp.tex.texinfo.bugs/3533> for
4405 discussions on the approach chosen.
4407 ** Fix pointer mix to variables of different size.
4408 Patch extracted from
4409 <http://cvs.fedora.redhat.com/viewcvs/devel/gnutls/gnutls-1.6.3-incompat-pointers.patch?rev=1.1&view=auto>.
4411 ** Fix warnings during build.
4412 Thanks to Andreas Metzler <ametzler@downhill.at.eu.org>.
4414 ** API and ABI modifications:
4415 No changes since last version.
4417 * Version 1.7.17 (released 2007-08-15)
4419 ** New functions to perform external signing.
4420 Set the signing callback function (of the gnutls_sign_func prototype)
4421 using the gnutls_sign_callback_set function.  In the callback, you may
4422 find the new functions gnutls_x509_privkey_sign_hash and
4423 gnutls_openpgp_privkey_sign_hash useful.  A new function
4424 gnutls_sign_callback_get is also added, to retrieve the function
4425 pointer.  Thanks to "Alon Bar-Lev" <alon.barlev@gmail.com> for
4426 comments and testing.
4428 ** New self test of client and server authenticated X.509 TLS sessions.
4429 See tests/x509self.c and tests/x509signself.c.  The latter also tests
4430 the new external signing callback interface.
4432 ** New errors GNUTLS_E_APPLICATION_ERROR_MIN..GNUTLS_E_APPLICATION_ERROR_MAX.
4433 These two actually describe the outer limits of a range of error codes
4434 reserved to the application.  All of the errors are treated as fatal
4435 by the library (it has to since it doesn't know the semantics of the
4436 error codes).  This can be useful in callbacks, to signal some
4437 application-specific error condition, which will usually eventually
4438 cause some gnutls API to return the same error code as the callback,
4439 which then can be inspected by the application.  Note that error codes
4440 are negative.
4442 ** gnutls_set_default_priority now disable TLS 1.2 by default.
4443 The RFC is not released yet, and we're approaching a major release so
4444 let's not enable it just yet.
4446 ** Fix namespace so that gnutls_*_t is used consistently.
4447 Before, many places in the GnuTLS code used the old deprecated type
4448 names without the '_t' suffix.
4450 ** Build fixes for Guile code.
4451 Patch from Ludovic Courtes <ludovic.courtes@laas.fr>.
4453 ** More documentation fixes.
4454 In particular, the section headings were modified for casing.  By
4455 Ludovic Courtes <ludovic.courtes@laas.fr>.
4457 ** Updated Polish and Swedish translations.
4458 Thanks to Jakub Bogusz <qboosh@pld-linux.org> and Daniel Nylander
4459 <po@danielnylander.se>.
4461 ** API and ABI modifications:
4462 gnutls_sign_func: ADD, new type for sign callback.
4463 gnutls_sign_callback_set: ADD, new function to set sign callback.
4464 gnutls_sign_callback_get: ADD, new function to retrieve sign callback.
4465 gnutls_x509_privkey_sign_hash,
4466 gnutls_openpgp_privkey_sign_hash: ADD, new functions useful in sign callback.
4467 GNUTLS_E_APPLICATION_ERROR_MIN,
4468 GNUTLS_E_APPLICATION_ERROR_MAX: ADD, new CPP #defines for error codes.
4470 * Version 1.7.16 (released 2007-08-07)
4472 ** Fix sanity checks and return values in certificate selection.
4473 In some cases, GnuTLS omitted to report suitable error codes when no
4474 suitable certificate was found.
4476 ** Fix gnutls-cli starttls EOF on Mac OS X.
4477 Thanks to Hal Eden <n.mavrogiannopoulos@gmail.com>.
4479 ** Documentation fixes.
4480 In particular, the section headings were modified for casing.  By
4481 Ludovic Courtes <ludovic.courtes@laas.fr>.
4483 ** Update gnulib files.
4485 ** API and ABI modifications:
4486 No changes since last version.
4488 * Version 1.7.15 (released 2007-07-02)
4490 ** Fix self-tests key-id under mingw32.
4492 ** Test that the Guile header files are recent enough to work.
4493 Before we just tested that the command line tool 'guile' was recent
4494 enough, which may not be sufficient if you still have an old
4495 libguile.h header installed.
4497 ** Guile bindings are now installed under $prefix by default.
4498 Use --without-guile-site-dir to install it under $pkgdatadir/site/
4499 where $pkgdatadir is as returned by "guile-config info pkgdatadir".
4500 Use --with-guile-site-dir=/your/own/path to specify the path manually.
4501 The default, --with-guile-site-dir, will install the Guile bindings
4502 under $datadir/guile/site.  There is a new section 'Guile
4503 Preparations' in the manual that discuss these issues.
4505 ** Fix run-time library path ordering in linking the Guile bindings.
4507 ** Improved manual on downloading, installing, getting help, bug reports etc.
4508 Suggested by Ludovic Courtès <ludovic.courtes@laas.fr>.
4510 ** Add Malay message translations.
4511 Thanks to Sharuzzaman Ahmat Raslan <sharuzzaman@myrealbox.com>.
4513 ** API and ABI modifications:
4514 No changes since last version.
4516 * Version 1.7.14 (released 2007-06-26)
4518 ** Don't enable Guile bindings unless we have Guile 1.8 or later.
4519 Patch from Ludovic Courtès <ludovic.courtes@laas.fr>.
4521 ** Fix memory leak during DSA signature verification.
4522 Patch from Ludovic Courtès <ludovic.courtes@laas.fr>.
4524 ** Fix crash in gnutls-cli when TLS handshake fails.
4525 Reported by Marc Haber <mh+debian-bugs@zugschlus.de> and Andreas
4526 Metzler <ametzler@downhill.at.eu.org> via Debian BTS #429183, see
4527 <http://bugs.debian.org/429183>.
4529 ** Minor OpenPGP fixes in stream_to_datum.
4530 Patch from Timo Schulz <twoaday@freakmail.de> and Ludovic Courtès
4531 <ludovic.courtes@laas.fr>.
4533 ** Fix off-by-one in TLS 1.2 handshake.
4534 Patch from Ludovic Courtès <ludovic.courtes@laas.fr>.
4536 ** Minor Guile binding self-test cleanup.
4537 Patch from Ludovic Courtès <ludovic.courtes@laas.fr>.
4539 ** Update gnulib files.
4541 ** API and ABI modifications:
4542 No changes since last version.
4544 * Version 1.7.13 (released 2007-06-11)
4546 ** OpenCDK copy updated to version 0.6.3.
4548 ** Build fixes for GnuTLS Guile bindings.
4549 Patch from Ludovic Courtès <ludovic.courtes@laas.fr>.
4551 ** Build fix for GTK-DOC manual.
4553 ** Update gnulib files.
4555 ** API and ABI modifications:
4556 No changes since last version.
4558 * Version 1.7.12 (released 2007-06-08)
4560 ** Guile bindings for GnuTLS have been included.
4561 Contributed by Ludovic Courtès <ludovic.courtes@laas.fr>.  There is a
4562 new chapter 'Guile Bindings' in the manual.
4564 ** Have PKCS8 parser return better error codes.
4565 Reported by Nate Nielsen <nielsen-list@memberwebs.com>, see
4566 <http://lists.gnupg.org/pipermail/gnutls-dev/2007-May/001653.html> and
4567 <http://lists.gnupg.org/pipermail/gnutls-dev/2007-May/001654.html>.
4569 ** Fix mem leak for sessions with client authentication via certificates.
4570 Reported by Andrew W. Nosenko <andrew.w.nosenko@gmail.com>, see
4571 <http://lists.gnupg.org/pipermail/gnutls-dev/2007-April/001539.html>.
4573 ** Fix mem leaks.
4574 Reported by Dennis Vshivkov <walrus@amur.ru>, see
4575 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=333050>.  Added
4576 self-test tests/parse_ca.c to test regressions.
4578 ** Fix build failures related to missing images in manual.
4579 Reported by Andreas Metzler <ametzler@downhill.at.eu.org>.
4581 ** Update gnulib files.
4583 ** API and ABI modifications:
4584 No changes since last version.
4586 * Version 1.7.11 (released 2007-05-26)
4588 ** Include opencdk.h in the release.
4589 Reported by Roman Bogorodskiy <novel@FreeBSD.org>.
4591 ** API and ABI modifications:
4592 No changes since last version.
4594 * Version 1.7.10 (released 2007-05-25)
4596 ** New API functions to extract DER encoded X.509 Subject/Issuer DN.
4597 Suggested by Nate Nielsen <nielsen-list@memberwebs.com>.
4599 ** Update of gnulib files.
4601 ** GnuTLS is now developed in GIT instead of CVS.
4602 See <http://repo.or.cz/w/gnutls.git> for a public repository.
4604 ** API and ABI modifications:
4605 gnutls_x509_crt_get_raw_issuer_dn: ADD.
4606 gnutls_x509_crt_get_raw_dn: ADD.
4608 * Version 1.7.9 (released 2007-05-12)
4610 ** X.509 certificates are preferred over OpenPGP keys.
4611 This is a change in the semantics of gnutls_set_default_priority.
4613 ** The included copy of OpenCDK has been updated to 0.6.1.
4614 There has been some API changes in OpenCDK, and the GnuTLS layer have
4615 been modified as well.  Note that while there are API/ABI incompatible
4616 changes in OpenCDK, this does not influence GnuTLS's API/ABI because
4617 its API/ABI have not changed.  From this version on, GnuTLS requires
4618 OpenCDK 0.6.0 or later.
4620 ** Fix build failure caused by missing doc/gnutls-logo.pdf.
4622 ** Change certtool's default serial number from 0 to a time-based value.
4624 ** Fix X.509 signing with RSA-PKCS#1 to set a NULL parameters fields.
4625 Before, we remove the parameters field, which resulted in a slightly
4626 different DER encoding which in turn caused signature verification
4627 failures of GnuTLS-generated RSA certificates in some other
4628 implementations (e.g., GnuPG 2.x's gpgsm).  Depending on which RFCs
4629 you read, this may or may not be correct, but our new behaviour appear
4630 to be consistent with other widely used implementations.
4632 ** Fix mem leaks in gnutls_x509_crt_print.
4634 ** API and ABI modifications:
4635 No changes since last version.
4637 * Version 1.7.8 (released 2007-04-16)
4639 ** Added examples for the authorization extension.
4640 See doc/examples/ex-client-authz.c and doc/examples/ex-serv-authz.c.
4642 ** The examples only use gnutls_set_default_priority().
4643 The exception is when DH_ANON is needed.
4645 ** Improve gnutls_set_default_priority() priorities.
4646 The new approach is for it to try and negotiate all secure and
4647 standard mechanisms available.  Currently, DH_ANON ciphersuites and
4648 LZO compressions are not enabled by default, because they are,
4649 respectively, insecure and non-standardized.  Note that TLS 1.2 will
4650 not be enabled by default in non-experimental release until it has
4651 been approved by the IETF.
4653 ** gnutls-cli and gnutls-serv now uses the library's default priorities.
4654 This means that to get DH_ANON and LZO compression, you'll need to
4655 specify that manually using '--kx anon' or '--comp lzo'.
4657 ** Minor fixes to the human display format of X.509 certificates.
4659 ** New APIs to extract Distinguished Name's from X.509 certificates.
4660 Based on patch from Howard Chu <hyc@symas.com>.
4662 ** Improved library searching for opencdk.
4663 It will now add the appropriate -R or -Wl,-rpath flags as necessary.
4664 The deprecated opencdk.m4 is no longer used.
4666 ** New APIs to list supported algorithms in the library.
4667 The APIs are gnutls_cipher_list, gnutls_mac_list,
4668 gnutls_compression_list, gnutls_protocol_list,
4669 gnutls_certificate_type_list, gnutls_kx_list, and
4670 gnutls_cipher_suite_info.  Suggested by Howard Chu <hyc@symas.com>.
4672 ** The gnutls_x509_crt_get_key_id API now handle non-RSA/DSA keys.
4674 ** New configure option --disable-tls-authorization to disable tls-authz.
4676 ** Fix prototype for `gnutls_psk_set_client_credentials'.
4677 The last parameter was renamed from 'flags' to 'format' and the type
4678 changed from 'unsigned int' to 'gnutls_psk_key_flags' (an enum type),
4679 which shouldn't cause any ABI changes.  Reported by ludo@chbouib.org
4680 (Ludovic Courtès).
4682 ** Fix allocation in gnutls_certificate_set_openpgp_key.
4683 Tiny patch from ludo@chbouib.org (Ludovic Courtès).
4685 ** API and ABI modifications:
4686 gnutls_x509_dn_t: ADD.
4687 gnutls_x509_ava_st: ADD.
4688 gnutls_x509_crt_get_subject,
4689 gnutls_x509_crt_get_issuer: ADD.
4690 gnutls_x509_dn_get_rdn_ava: ADD.
4691 gnutls_cipher_list: ADD.
4692 gnutls_mac_list: ADD.
4693 gnutls_compression_list: ADD.
4694 gnutls_protocol_list: ADD.
4695 gnutls_certificate_type_list: ADD.
4696 gnutls_kx_list: ADD.
4697 gnutls_cipher_suite_info: ADD.
4699 * Version 1.7.7 (released 2007-02-22)
4701 ** Support for supplemental handshake messages and authorization data.
4702 Supplemental data is described in RFC 4680 and the authorization
4703 extensions in draft-housley-tls-authz-extns-07.
4705 ** Support for authorization data in gnutls-cli and gnutls-serv.
4706 New parameters --authz-x509-attr-cert and --authz-saml-assertion.
4708 ** Fix for gnutls_x509_crt_check_hostname.
4709 Before it would have reported that the certificate matched a hostname
4710 when it did not have any dNSName or any CN field.  Report and tiny
4711 patch from "Richard W.M. Jones" <rjones@redhat.com>.
4713 ** New self test for RFC 2818 comparison in gnutls_x509_crt_check_hostname.
4714 Tests regressions of the bug, and several other features.
4716 ** GnuTLS now matches URI's with IP Addresses against iPAddress SAN's.
4717 Before there were no support for iPAddress SAN's during comparison.
4719 ** New API to print information about CRL's.
4720 The function is gnutls_x509_crl_print.
4722 ** New API to extract signature value from CRL's.
4723 The function is gnutls_x509_crl_get_signature.
4725 ** Support for directoryName Subject Alternative Name's.
4726 The gnutls_x509_crt_get_subject_alt_name function returns the DN as a
4727 string in the provided buffer.
4729 ** Internal improvements to certtool.
4730 It uses gnutls_x509_crl_print to print CRL information.  It uses some
4731 more gnulib modules to simplify error handling.
4733 ** API and ABI modifications:
4734 GNUTLS_HANDSHAKE_SUPPLEMENTAL: ADD, new gnutls_handshake_description_t element.
4735 gnutls_supplemental_data_format_type_t: ADD.
4736 gnutls_authz_data_format_type_t: ADD.
4737 gnutls_supplemental_get_name: ADD.
4738 gnutls_authz_recv_callback_func,
4739 gnutls_authz_send_callback_func: ADD, callback prototypes.
4740 gnutls_authz_enable: ADD.
4741 gnutls_authz_send_x509_attr_cert,
4742 gnutls_authz_send_saml_assertion,
4743 gnutls_authz_send_x509_attr_cert_url,
4744 gnutls_authz_send_saml_assertion_url: ADD.
4745 GNUTLS_SAN_DN: ADD, new gnutls_x509_subject_alt_name_t element.
4746 gnutls_x509_crl_print: ADD.
4747 gnutls_x509_crl_get_signature: ADD.
4749 * Version 1.7.6 (released 2007-02-12)
4751 ** Support for 'otherName' Subject Alternative Names.
4752 The existing API gnutls_x509_crt_get_subject_alt_name may now return
4753 the new type GNUTLS_SAN_OTHERNAME together with the otherName value.
4754 To find out the otherName OID (necessary for proper parsing of the
4755 value), use the new API gnutls_x509_crt_get_subject_alt_othername_oid.
4756 For known OIDs, gnutls_x509_crt_get_subject_alt_othername_oid will
4757 return "virtual" SAN values, e.g., GNUTLS_SAN_OTHERNAME_XMPP to
4758 simplify OID matching.  Suggested by Matthias Wimmer <m@tthias.eu>.
4760 ** Certtool can print otherName SAN values for certificates.
4761 For known otherName OIDs (currently only id-on-xmppAddr as defined by
4762 RFC 3920), it will also print the name.
4764 ** Fix TLS 1.2 RSA signing in servers.
4765 Before it used the old-style MD5+SHA1 signature, but the TLS
4766 signatures should be normal PKCS#1 signatures.  FYI, we use and
4767 require that DigestInfo parameters are present and NULL for TLS 1.2.
4769 ** Add APIs to access X.509 extensions sequentially.
4770 The existing APIs gnutls_x509_crt_get_extension_oid() and
4771 gnutls_x509_crt_get_extension_by_oid() does not permit callers to
4772 inspect the extensions in the order defined by the certificate.
4774 ** Add API to extract signature value from X.509 certificates.
4775 The function is gnutls_x509_crt_get_signature.
4777 ** Fix crash when generating proxy certificates in batch mode.
4778 If you don't specify a proxy policy in batch mode, it will use
4779 id-ppl-inheritALL.
4781 ** Add API to print information about X.509 certificates.
4782 The function is gnutls_x509_crt_print.
4784 ** Certtool uses the new API gnutls_x509_crt_print to print certificate info.
4785 One consequence of this is that the output syntax has changed
4786 slightly.  Some more fields are printed.
4788 ** Doc fixes.
4790 ** API and ABI modifications:
4791 gnutls_x509_crt_print: ADD
4792 gnutls_certificate_print_formats_t: ADD, new enum.
4793 gnutls_x509_crt_get_signature: ADD.
4794 gnutls_x509_crt_get_extension_data: ADD.
4795 gnutls_x509_crt_get_extension_info: ADD.
4796 gnutls_x509_crt_get_subject_alt_othername_oid: ADD.
4797 GNUTLS_SAN_OTHERNAME: ADD, new gnutls_x509_subject_alt_name_t element.
4798 GNUTLS_SAN_OTHERNAME_XMPP: ADD, new gnutls_x509_subject_alt_name_t element.
4800 * Version 1.7.5 (released 2007-02-06)
4802 ** Servers won't negotiate SRP RSA/DSS cipher suites if no SRP credential
4803 ** is set.
4805 ** Default behaviour for the gnutls-cli and gnutls-serv tools improved.
4807 ** Fix --list output for gnutls-cli and gnutls-serv.
4808 Mention TLS1.2, SHA512 etc.
4810 ** Manual contains new section on setting up a test HTTP server.
4811 A server set up following those descriptions are available online via
4812 <http://www.gnutls.org/server.html>.
4814 ** Update of gnulib files.
4816 ** API and ABI modifications:
4817 No changes since last version.
4819 * Version 1.7.4 (released 2007-02-05)
4821 ** Support for RSA signing using SHA-256/384/512.
4822 A new self test "sha2" tries to build a long X.509 certificate chain
4823 testing all new hashes.
4825 ** The gnutls-serv tool now use static DH parameters if none are supplied.
4827 ** Discuss proxy certificates in the manual.
4829 ** Improve bibliographical citations in the manual.
4831 ** Update of gnulib files.
4833 ** Fix certtool template handling of pathLenConstraints.
4834 It now defaults to -1 instead of 0, which causes the field to be
4835 missing unless the template specify it.
4837 ** API and ABI modifications:
4838 GNUTLS_MAC_SHA256,
4839 GNUTLS_MAC_SHA384,
4840 GNUTLS_MAC_SHA512: New gnutls_mac_algorithm_t values.
4841 GNUTLS_DIG_SHA256,
4842 GNUTLS_DIG_SHA384,
4843 GNUTLS_DIG_SHA512: New gnutls_digest_algorithm_t values.
4844 GNUTLS_SIGN_RSA_SHA256,
4845 GNUTLS_SIGN_RSA_SHA384,
4846 GNUTLS_SIGN_RSA_SHA512: New gnutls_sign_algorithm_t values.
4848 * Version 1.7.3 (released 2007-02-01)
4850 ** New option to certtool: --generate-proxy.
4851 This will generate a Proxy Certificate from an end entity certificate.
4852 Proxy Certificates are documented in RFC 3820.  You will need to
4853 specify the proxy certificate's private key with --load-privkey, the
4854 user certificate with --load-certificate and the private key used to
4855 sign the new proxy certificate with --load-ca-privkey.  Certtool will
4856 query for proxy path length and the policy language OID.  Currently
4857 only OIDs that have an empty policy are supported (which includes the
4858 two OIDs defined by RFC 3820).
4860 ** Certtool --certificate-info now prints information for Proxy Certificates.
4861 Before the proxy extension was just printed as DER encoded data.
4863 ** New APIs to set proxy subject names and get/set proxy cert extension.
4865 ** Fix parsing of pathLenConstraints in BasicConstraints with missing cA.
4867 ** Added self-test to test for regressions of pathLenConstraint bug.
4868 Incidentally, this also test (some) other regressions or changes in
4869 the output from certtool --certificate-info.
4871 ** When certtool generates CA certificates, pressing enter on the path
4872 ** length constraint query will now remove the field.
4873 Before it set the path length constraint to 0, which is a rather poor
4874 default.
4876 ** Certtool now print times in UTC when printing certificate/CRL info.
4878 ** Add better fix to work around C++ compiler bug on Mac OS X.
4879 Reported and tiny patch provided by Matthias Scheler <tron@NetBSD.org>.
4881 ** Fix import of ASCII armored OpenPGP keys.
4882 Patch by ludovic.courtes@laas.fr (Ludovic Courtès).
4884 ** Update of gnulib files.
4886 ** API and ABI modifications:
4887 gnutls_x509_crt_set_proxy_dn: ADD.
4888 gnutls_x509_crt_set_proxy: ADD.
4889 gnutls_x509_crt_get_proxy: ADD.
4891 * Version 1.7.2 (released 2007-01-14)
4893 ** Certtool now print the value of the pathLenConstraints field for certs.
4895 ** Certtool now query for path length constraints when generating CA certs.
4896 For batch uses, the certtool configuration name is "path_len".
4897 Suggested by Sascha Ziemann <sascha.ziemann@secunet.com>.
4899 ** Add new API to get/set pathLenConstraint in the Basic Constraints.
4900 The new functions gnutls_x509_crt_get_basic_constraints and
4901 gnutls_x509_crt_set_basic_constraints provide a superset of the
4902 functionality in the old gnutls_x509_crt_get_ca_status and
4903 gnutls_x509_crt_set_ca_status (respectively), but the old functions
4904 will continue to be supported.
4906 ** Add new API in OpenCDK to extract public/secret OpenPGP key to S-expr.
4907 The functions are cdk_pubkey_to_sexp and cdk_seckey_to_sexp.  A proper
4908 OpenCDK release with this patch will be made soon, which should bump
4909 the OpenCDK version number.  Patch by Mario Lenz <mario.lenz@gmx.net>.
4911 ** Certtool --to-p12 can now store more than one certificate in the blob.
4912 Before it could only store one certificate, but now it will read and
4913 store as many certificate there are from the --load-certificate file.
4914 Suggested by Sascha Ziemann <sascha.ziemann@secunet.com>.
4916 ** Clean up separation of gnutls and gnutls-extra for OpenPGP.
4917 In particular, the OpenPGP function variables are no longer part of
4918 the exported libgnutls interface, and no header files from
4919 libgnutls-extra (GPL) are needed by libgnutls (LGPL).  The variables
4920 were never intended for non-internal purposes, and thus this does not
4921 imply a change in the external API/ABI.
4923 ** Print URL to gaa when missing, and fix srcdir!=builddir for GAA files.
4924 Reported by ludovic.courtes@laas.fr (Ludovic Courtès).
4926 ** GnuTLS no longer uses -mms-bitfields --enable-runtime-pseudo-reloc.
4927 Before these parameters were set to make GnuTLS build under mingw32,
4928 however, they appear to no longer be necessary.
4930 ** A minor fix to the C++ library to make it build.
4931 Reported by Pavlov Konstantin <thresh@altlinux.ru>.
4933 ** Update of gnulib files.
4935 ** API and ABI modifications:
4936 gnutls_x509_crt_get_basic_constraints: ADD.
4937 gnutls_x509_crt_set_basic_constraints: ADD.
4938 cdk_pubkey_to_sexp: ADD (in opencdk).
4939 cdk_seckey_to_sexp: ADD (in opencdk).
4941 * Version 1.7.1 (released 2006-12-28)
4943 ** TLS 1.2 server side fix.
4944 The Certificate Request sent did not contain the list of supported
4945 hashes field, thus violating the protocol.  It will now contain an
4946 empty list.  Reported by ludovic.courtes@laas.fr (Ludovic Courtès).
4948 ** TLS 1.2 DSA signature verification fix.
4949 Reported by ludovic.courtes@laas.fr (Ludovic Courtès).
4951 ** Fix the list of trusted CAs that server's send to clients.
4952 Before, the list contained issuer DN's instead of subject DN's of the
4953 trusted CAs.  Reported by Max Kellermann <max@duempel.org>.
4955 ** Fix gnutls_certificate_set_x509_crl to initialize the CRL before using it.
4956 Also added a self-test in tests/certificate_set_x509_crl.c to test the
4957 function.  Reported by Max Kellermann <max@duempel.org>.
4959 ** Encode UID fields in DN's as DirectoryString.
4960 Before GnuTLS encoded and parsed UID fields as IA5String.  This was
4961 incorrect, it should have used DirectoryString.  Now it will use
4962 DirectoryString for the UID field, but for backwards compatibility it
4963 will also accept IA5String UID's.  Reported by Max Kellermann
4964 <max@duempel.org>.
4966 ** Improve out-of-sourcedir builds from CVS.
4967 Reported by ludovic.courtes@laas.fr (Ludovic Courtès).
4969 ** Bootstrap tools changed.
4970 We now require autoconf 2.61, automake 1.10, and gettext 0.16, when
4971 building GnuTLS from CVS.  Libtool 1.5.22 is used.
4973 ** Fixed a syntax error in lib/gnutls.asn.
4974 Reported by Paul Millar <p.millar@physics.gla.ac.uk>.
4976 ** Added German translation of GnuTLS messages.
4978 ** Update of gnulib files.
4980 ** API and ABI modifications:
4981 No changes since last version.
4983 * Version 1.7.0 (released 2006-11-29)
4985 ** The default protocol priority try TLS 1.1 and TLS 1.2 too.
4986 The details is that the protocol priority set by
4987 `gnutls_set_default_priority' has been changed from TLS 1.0 and SSL
4988 3.0 to TLS 1.2, TLS 1.1, TLS 1.0 and SSL 3.0.
4990 ** Preliminary support for TLS 1.2.
4991 The client has been successfully tested against
4992 https://www.mikestoolbox.org:4433/.
4994 ** Anonself test now print a lot of debugging info, including TLS version.
4996 ** Doc fixes in OpenCDK, to avoid some gtk-doc warnings.
4998 ** Update of gnulib files.
5000 ** API and ABI modifications:
5001 GNUTLS_TLS1_2: New gnutls_protocol_t enum member.
5003 *** Pulled up from stable 1.6.x branch:
5005 ** Fix ./configure failure with non-GCC compilers.
5006 This fixes the following error message:
5007 configure: error: conditional "HAVE_LD_OUTPUT_DEF" was never defined.
5008 Reported by "Michael C. Vergallen" <mvergall@telenet.be>.
5010 * Version 1.6.3 (released 2007-05-26)
5012 ** New API functions to extract DER encoded X.509 Subject/Issuer DN.
5013 Suggested by Nate Nielsen <nielsen-list@memberwebs.com>.  Backported
5014 from the 1.7.x branch, see
5015 <http://lists.gnu.org/archive/html/help-gnutls/2007-05/msg00029.html>.
5017 ** Have PKCS8 parser return better error codes.
5018 Reported by Nate Nielsen <nielsen-list@memberwebs.com>, see
5019 <http://lists.gnupg.org/pipermail/gnutls-dev/2007-May/001653.html> and
5020 <http://lists.gnupg.org/pipermail/gnutls-dev/2007-May/001654.html>.
5022 ** Fix mem leak for sessions with client authentication via certificates.
5023 Reported by Andrew W. Nosenko <andrew.w.nosenko@gmail.com>, see
5024 <http://lists.gnupg.org/pipermail/gnutls-dev/2007-April/001539.html>.
5026 ** Fix building of 'tlsia' self test.
5027 Earlier some gcc are known to build tlsia linking to
5028 $prefix/lib/libgnutls-extra.so rather than the libgnutls-extra.so in
5029 the build directory, even though command line parameters look OK.
5030 Changing order of some parameters fixes it.
5032 ** API and ABI modifications:
5033 gnutls_x509_crt_get_raw_issuer_dn: ADD.
5034 gnutls_x509_crt_get_raw_dn: ADD.
5036 * Version 1.6.2 (released 2007-04-18)
5038 ** Fix X.509 signing with RSA-PKCS#1 to set a NULL parameters fields.
5039 Before, we remove the parameters field, which resulted in a slightly
5040 different DER encoding which in turn caused signature verification
5041 failures of GnuTLS-generated RSA certificates in some other
5042 implementations (e.g., GnuPG 2.x's gpgsm).  Depending on which RFCs
5043 you read, this may or may not be correct, but our new behaviour appear
5044 to be consistent with other widely used implementations.
5046 ** Regenerate the PKIX ASN.1 syntax tree.
5047 For some reason, after changing the ASN.1 type of ldap-UID in the last
5048 release, the generated C file built from the ASN.1 schema was not
5049 refreshed.  This can cause problems when reading/writing UID
5050 components inside X.500 Distinguished Names.  Reported by devel
5051 <dev001@pas-world.com>.
5053 ** Updated translations.
5055 ** API and ABI modifications:
5056 No changes since last version.
5058 * Version 1.6.1 (released 2006-12-28)
5060 ** Fix the list of trusted CAs that server's send to clients.
5061 Before, the list contained issuer DN's instead of subject DN's of the
5062 trusted CAs.  Reported by Max Kellermann <max@duempel.org>.
5064 ** Fix gnutls_certificate_set_x509_crl to initialize the CRL before using it.
5065 Reported by Max Kellermann <max@duempel.org>.
5067 ** Encode UID fields in DN's as DirectoryString.
5068 Before GnuTLS encoded and parsed UID fields as IA5String.  This was
5069 incorrect, it should have used DirectoryString.  Now it will use
5070 DirectoryString for the UID field, but for backwards compatibility it
5071 will also accept IA5String UID's.  Reported by Max Kellermann
5072 <max@duempel.org>.
5074 ** Fix ./configure failure with non-GCC compilers.
5075 This fixes the following error message:
5076 configure: error: conditional "HAVE_LD_OUTPUT_DEF" was never defined.
5077 Reported by "Michael C. Vergallen" <mvergall@telenet.be>.
5079 ** API and ABI modifications:
5080 No changes since last version.
5082 * Version 1.6.0 (released 2006-11-17)
5084 ** No changes since 1.5.5.
5085 The major changes compared to the 1.4.x branch are:
5087 *** A GnuTLS C++ library is part of the official distribution.
5088 Currently there are no examples or documentation, but hopefully this
5089 will change.  See gnutlsxx.h for the API.
5091 *** Windows is a supported platform.
5092 There are, however, two know bugs.  One is related to select() in
5093 command line tools (not, nota bene, in the library), the other is a
5094 problem with libgcrypt that causes delays.  Help is needed to resolve
5095 those issues, so we feel we can't delay the release because of this.
5097 *** New APIs for custom push/pull function error reporting.
5098 The new APIs are gnutls_transport_set_errno and
5099 gnutls_transport_set_global_errno.  See the release notes for version
5100 1.5.4 for more information.
5102 *** Self tests are run under valgrind, if available.  See --disable-valgrind.
5104 * Version 1.5.5 (released 2006-11-16)
5106 ** Correctly bump shared library version after adding new APIs.
5107 This was forgotten in the last release.
5109 ** Fix unsigned vs signed problem in ex-x509-info.c example.
5110 Reported by Tim Kosse <tim.kosse@filezilla-project.org>.
5112 ** Fix the rsa-md5-collision self test to work for MinGW+Wine.
5114 ** Update of gnulib files.
5116 ** API and ABI modifications:
5117 No changes since last version.
5119 * Version 1.5.4 (released 2006-11-07)
5121 ** New API functions to set errno in push/pull functions.
5122 Under Windows, setting the errno variable in a push/pull replacement
5123 may end up setting the wrong errno variable, and GnuTLS send/recv
5124 functions become confused about the real errno returned from a failed
5125 push/pull function.  Therefor, we have added two APIs to set the errno
5126 variable used by GnuTLS.  The APIs can also help to keep things
5127 thread-safe, by avoiding potentially global variables.  Typically,
5128 instead of setting errno in your push/pull function, you will call one
5129 of these functions.  It is recommended to use
5130 gnutls_transport_set_errno, but if you don't have the session variable
5131 easily accessible in the push/pull replacement function, you can use
5132 gnutls_transport_set_global_errno.  Suggested by Tim Kosse
5133 <tim.kosse@filezilla-project.org>.
5135 void gnutls_transport_set_errno (gnutls_session_t session, int err);
5136 void gnutls_transport_set_global_errno (int err);
5138 ** When calling `recv' or `send' Windows errors are handled properly.
5139 The Windows recv/send functions doesn't use errno, and GnuTLS now use
5140 WSAGetLastError to access the error condition instead.
5142 ** Several OpenPGP API fixes.
5143 All suggested by ludovic.courtes@laas.fr (Ludovic Courtès).  The most
5144 important fix is to change the return value of
5145 gnutls_openpgp_privkey_get_pk_algorithm and
5146 gnutls_openpgp_key_get_pk_algorithm from 'int' to
5147 'gnutls_pk_algorithm_t', which is an enum type (and thus API/ABI
5148 compatible with 'int').
5150 ** When a GnuTLS server receive a SSLv2 Client Hello for an unknown TLS
5151 ** version, try to negotiate the highest version support by the GnuTLS server,
5152 ** instead of the lowest.
5153 Reported by <Pasi.Eronen@nokia.com>.
5155 ** Replace old constructs with use of gnulib modules.
5156 For example, we can now assume unistd.h, sys/stat.h, sys/socket.h in
5157 the code.  If the headers doesn't exist on the target system, gnulib
5158 will make sure its replacement header files are used instead.
5160 ** Fix SOVERSION computation for *.def files.
5161 This fixes build errors similar to "No rule to make target
5162 `libgnutls-`expr', needed by `all-am'." when building for Windows.
5164 ** gnutls_check-version uses strverscmp from gnulib.
5166 ** Update of gnulib files.
5168 ** API and ABI modifications:
5169 gnutls_transport_set_errno: ADD
5170 gnutls_transport_set_global_errno: ADD
5172 * Version 1.5.3 (released 2006-10-26)
5174 ** Add new self-test of RSA-MD5 signature chains.
5175 Note that we already, since GnuTLS 1.2.9, reject RSA-MD5 signatures
5176 when verifying X.509 chains.  The code is in tests/rsa-md5-collision/
5177 and is based on the work by Marc Stevens et al, see
5178 <http://www.win.tue.nl/hashclash/TargetCollidingCertificates/>.
5180 ** Re-factor self tests.
5182 ** The include copy of Libtasn1 is updated to version 0.3.7.
5184 ** The included copy of OpenCDK is updated to version 0.5.11.
5186 ** Fix the filename of the *.def file on Windows after library version bump.
5188 ** Separated the gnulib directory into one for LGPL modules and one for GPL.
5189 This allows the GPL'd part of GnuTLS to take advantage of the GPL'd
5190 gnulib modules.  Earlier we could only use the LGPL'ed module from
5191 gnulib, because two gnulib directories in the same project didn't
5192 work.
5194 ** API and ABI modifications:
5195 No changes since last version.
5197 * Version 1.5.2 (released 2006-10-03)
5199 ** Decrement the shared library version back to 13 (as in the 1.4.x branch).
5200 Note that if you installed 1.5.0 or 1.5.1, they will have a higher
5201 shared library version than this version, so you'll have to remove
5202 them and possibly relink your applications.  The reason for this is
5203 that no API/ABI changes have been made since the 1.4.x branch, and
5204 that incrementing the shared library version was a mistake.  Reported
5205 by Andreas Metzler <ametzler@downhill.at.eu.org>.
5207 ** Fix off-by-one error when computing length to malloc.
5208 The code is used by gnutls_openpgp_add_keyring_file and
5209 gnutls_openpgp_add_keyring_mem.  Reported by "Adam Langley"
5210 <agl@imperialviolet.org>.
5212 ** Add version script for the GnuTLS C++ library.
5213 Reported by Andreas Metzler <ametzler@downhill.at.eu.org>.
5215 ** Fix the C++ compiler detection logic.
5216 Reported by Andreas Metzler <ametzler@downhill.at.eu.org>.
5218 ** Update of gnulib files.
5220 ** API and ABI modifications:
5221 No changes since last version.
5223 * Version 1.5.1 (released 2006-09-21)
5225 ** Fix PKCS#1 verification to avoid a variant of Bleichenbacher's
5226 ** Crypto 06 rump session attack.
5227 In particular, we check that the digestAlgorithm.parameters field is
5228 missing or empty, to avoid that it can contain "garbage" that may be
5229 used to alter the numeric properties of the signature.  See
5230 <http://www.imc.org/ietf-openpgp/mail-archive/msg14307.html> (which is
5231 not exactly the same as the problem we fix here).  Reported by Yutaka
5232 OIWA <y.oiwa@aist.go.jp>.
5234 See GNUTLS-SA-2006-4 on http://www.gnutls.org/security.html for more
5235 up to date information.
5237 ** Add self test to test for above flaw.
5239 ** Fix gnutls-cli-debug regarding resume support detection.
5240 Earlier, if the session-id from the server had a length of 0, it would
5241 indicate that the server supports resumption, which isn't the case.
5242 Reported by Kataja Kai <kai.kataja@op.fi>.
5244 ** Fix building of examples on FreeBSD by including netinet/in.h.
5245 Reported by Roman Bogorodskiy <novel@FreeBSD.org>.
5247 ** Fix certtool bug that caused the private key to not be loaded when
5248 generating a certificate with --load-request, which in turn triggered
5249 another unrelated bug in gnutls_x509_crt_sign2 (also fixed).  Reported
5250 by Sascha Ziemann <sascha.ziemann@secunet.com>.
5252 ** gnutls-cli and gnutls-serv works on Windows.
5253 The problem was the select() call that doesn't work on file
5254 descriptors (stdin) on Windows.  We borrowed some code from plibc to
5255 solve this.  It appears to be somewhat unreliable though.
5257 ** Autoconf 2.60 is now used.
5259 ** API and ABI modifications:
5260 No changes since last version.
5262 * Version 1.5.0 (released 2006-08-13)
5264 ** Change SRP and Cert-Type extensions to match IANA registry.
5266 ** Fixed bug in OpenPGP authentication handshake.
5268 ** Improvements for building under MinGW.
5269 Provides internal inet_ntop and inet_pton functions and arpa/inet.h
5270 header.  Calls WSAStartup and WSACleanup in gnutls_global_init and
5271 gnutls_global_deinit, respectively.  Loads getaddrinfo and getnameinfo
5272 at run-time from ws2_32.dll, and falls back on a simple replacement if
5273 it is not available.  Builds the library with -mms-bitfields
5274 -Wl,--enable-runtime-pseudo-reloc.  Links with --output-def, to
5275 create *.def files, which are installed.
5277 ** The examples now (conditionally) include config.h and link to gnulib.
5278 No other source changes were necessary, so the examples should
5279 continue to be possible to use stand-alone without any autoconf or
5280 gnulib stuff.
5282 ** Added C++ header "gnutlsxx.h" and library "libgnutlsxx".
5283 You may unconditionally disable it with --disable-cxx.  See
5284 includes/gnutls/gnutlsxx.h and lib/gnutlsxx.cpp for the
5285 implementation.
5287 ** Made command line tool '--version' behave according to GNU Standards.
5288 This enables 'make distcheck' to succeed.
5290 ** OpenCDK updated to 0.5.9 to fix some problems with OpenPGP support.
5292 ** Make --without-included-libtasn1 work.
5293 Reported by Daniel Black <dragonheart@gentoo.org>.
5295 ** Fix a crash (strcmp() on a NULL value) in the certificate verification logic.
5296 See http://www.gnu.org/software/gnutls/security.html regardging
5297 GNUTLS-SA-2006-2 for more up to date information.  Reported by
5298 satyakumar <satyam_kkd@hyd.hellosoft.com>.
5300 ** API and ABI modifications:
5301 No changes since last version.
5303 * Version 1.4.5 (released 2006-11-06)
5305 ** When a GnuTLS server receive a SSLv2 Client Hello for an unknown TLS
5306 ** version, try to negotiate the highest version support by the GnuTLS server,
5307 ** instead of the lowest.
5308 Reported by <Pasi.Eronen@nokia.com>.
5310 ** Fix typo in doc/examples/ex-serv-pgp.c.
5311 Reported by Adam Langley" <agl@imperialviolet.org>.
5313 ** API and ABI modifications:
5314 No changes since last version.
5316 * Version 1.4.4 (released 2006-09-12)
5318 ** Relax the test that caught signatures that exploit the variant of
5319 ** Bleichenbacher's Crypto 06 rump session attack on our
5320 ** verification logic flaw.
5321 In particular, we now permit the digestAlgorithm.parameters field to
5322 be present but empty, whereas in 1.4.3 we actually checked that the
5323 field was absent.
5325 ** Revert the removal of debug information for the GNUTLS-SA-2006-3 problem.
5326 The messages are only printed in debug mode, which is not recommended
5327 for normal use, and thus logging this situation cannot be abused as an
5328 oracle in typical recommended situations.
5330 ** API and ABI modifications:
5331 No changes since last version.
5333 * Version 1.4.3 (released 2006-09-08)
5335 ** Fix PKCS#1 verification to avoid a variant of Bleichenbacher's
5336 ** Crypto 06 rump session attack.
5337 In particular, we check that the digestAlgorithm.parameters field is
5338 empty, to avoid that it can contain "garbage" that may be used to
5339 alter the numeric properties of the signature.  See
5340 <http://www.imc.org/ietf-openpgp/mail-archive/msg14307.html> (which is
5341 not exactly the same as the problem we fix here).  Reported by Yutaka
5342 OIWA <y.oiwa@aist.go.jp>.
5344 See GNUTLS-SA-2006-4 on http://www.gnutls.org/security.html for more
5345 up to date information.
5347 ** Fix PKCS#1 decryption to avoid Bleichenbacher's Crypto 98 attack.
5348 See <http://www.bell-labs.com/user/bleichen/papers/pkcs.ps.gz>.
5349 Reported by Werner Koch <wk@gnupg.org>.
5351 See GNUTLS-SA-2006-3 on http://www.gnutls.org/security.html for more
5352 up to date information.
5354 ** Fix crash in gnutls_x509_crt_sign2 if passed a NULL issuer_key.
5356 ** API and ABI modifications:
5357 No changes since last version.
5359 * Version 1.4.2 (released 2006-08-12)
5361 ** Fix a crash (strcmp() on a NULL value) in the certificate verification logic.
5362 This can happen if you call gnutls_certificate_verify_peers2 and have
5363 a certain mix of local CA certificates and the peer send special
5364 certificates, that together trigger certain behaviour.  It is not
5365 known at this point whether the crash can be triggered without the
5366 special local CA certificate, and thus turn this into a remote crash
5367 of clients that verify server certificates when they talk to a server
5368 with the special server certificate.  See GNUTLS-SA-2006-2 on
5369 http://www.gnu.org/software/gnutls/security.html for more up to date
5370 information.  Reported by satyakumar <satyam_kkd@hyd.hellosoft.com>.
5372 ** Change SRP and Cert-Type extensions to match IANA registry.
5374 ** OpenCDK updated to 0.5.9 to fix some problems with OpenPGP support.
5376 ** Make --without-included-libtasn1 work.
5377 Reported by Daniel Black <dragonheart@gentoo.org>.
5379 ** API and ABI modifications:
5380 No changes since last version.
5382 * Version 1.4.1 (released 2006-06-14)
5384 ** Replaced inactive ifdefs to enable openpgp support in test programs.
5386 ** Fixed bug in OpenPGP authentication handshake.
5388 ** Fixed typographical in man pages.
5390 ** Build fixes of the manual.
5392 ** Added Swedish translation.
5394 ** API and ABI modifications:
5395 No changes since last version.
5397 * Version 1.4.0 (released 2006-05-15)
5399 ** Remove GnuTLS 0.8.x compatibility functions.
5401 ** The libgcrypt RNG is initialized in gnutls_global_init().
5403 ** TLS/IA API changes from Emile van Bergen.
5404 A dummy credential structure is not needed now, if you wish to use the
5405 low-level TLS/IA API, simply call gnutls_ia_enable to enable TLS/IA on
5406 a session.
5408 ** The self-tests are now run under valgrind, if it is installed.
5410 ** Libtasn1 is updated to 0.3.4, and that version is now required.
5412 ** The command line tools now use getaddrinfo and support IPv6.
5414 ** API and ABI modifications:
5415 _gnutls_x509_get_raw_crt_activation_time,
5416 _gnutls_x509_get_raw_crt_expiration_time: Removed.
5417 gnutls_ia_require_inner_phase: Removed, replaced by gnutls_ia_enable.
5418 gnutls_ia_enable: Added.
5420 * Version 1.3.5 (released 2006-03-08)
5422 ** Error messages are now translated using GNU Gettext.
5424 ** The function gnutls_x509_crt_to_xml now return an internal error.
5425 This means that the code to convert X.509 certificates to XML format
5426 does not work any more.  The reason is that the function called
5427 libtasn1 internal functions.  It seems unclean for libtasn1 to export
5428 the APIs needed here.  Instead it would be better to implement XML
5429 support inside libtasn1 properly.  If you need this functionality
5430 strongly, please consider looking into implementing this suggested
5431 approach instead.  As a workaround, you may also modify lib/x509/xml.c
5432 (change '#if 1' to '#if 0') and build using --with-included-libtasn1.
5434 ** Libraries are now built with libtool's -no-undefined.
5435 This helps producing libraries for Windows using mingw32.
5437 ** Doc fixes to explain that gnutls_record_send can block.
5439 ** Libtasn1 0.3.1 or later is now required.
5440 The include copy has been updated too.
5442 ** gnutls-cli can now recognize services and port numbers with the -p option.
5444 ** API and ABI modifications:
5445 No changes since last version.
5447 * Version 1.3.4 (released 2006-02-09)
5449 ** Fix read of out bounds bug in DER parser.
5450 Reported by Evgeny Legerov <admin@gleg.net>, and debugging help from
5451 Protover SSL.  Libtasn1 0.2.18 is now required, which contains the
5452 previous bug fix.  The included libtasn1 version in GnuTLS has been
5453 updated.
5455 ** Fixed bug in non-blocking gnutls_bye(). gnutls_record_send() will no 
5456 longer invalidate a session if the underlying send fails, but it will 
5457 prevent future writes. That is to allow reading the already received data.
5458 Patches and bug reports by Yoann Vandoorselaere <yoann@prelude-ids.org>
5460 ** Corrected bugs in gnutls_certificate_set_x509_crl() and
5461 gnutls_certificate_set_x509_trust(), that caused memory corruption if 
5462 more than one certificates were added. Report and patch by Max Kellermann.
5464 ** Fix build problems of OpenCDK on AIX.
5465 Thanks to "Heiden, John" <JHeiden@UTNet.UToledo.Edu>.
5467 ** API and ABI modifications:
5468 No changes since last version.
5470 * Version 1.3.3 (released 2006-01-12)
5472 ** New API to access the TLS master secret.
5473 When possible, you should use the TLS PRF functions instead.
5474 Suggested by Jouni Malinen <jkmaline@cc.hut.fi>.
5476 ** Improved handling when multiple libraries use GnuTLS at the same time.
5477 Now gnutls_global_init() can be called multiple times, and
5478 gnutls_global_deinit() will only deallocate the structure when it has
5479 been called as many times as gnutls_global_init() was called.
5481 ** Added a self test of TLS resume functionality.
5483 ** Fix crash in TLS resume code, caused by TLS/IA changes.
5485 ** Documentation fixes about thread unsafety, prompted by
5486 ** discussion with bryanh@giraffe-data.com (Bryan Henderson).
5487 In particular, gnutls_global_init() and gnutls_global_deinit() are not
5488 thread safe.  Careful callers may want to protect the call using a
5489 mutex.  The problem could also be ignored, which would cause a memory
5490 leak under rare conditions when two threads invoke the function
5491 roughly at the same time.
5493 ** Add 'const' keywords in various places, from Frediano ZIGLIO.
5495 ** The code was indented again, including the external header files.
5497 ** API and ABI modifications:
5498 New functions to retrieve the master secret value:
5499   gnutls_session_get_master_secret
5501 Add a 'const' keyword to existing API:
5502   gnutls_x509_crq_get_challenge_password
5504 * Version 1.3.2 (released 2005-12-15)
5506 ** GnuTLS now support TLS Inner application (TLS/IA).
5507 This is per draft-funk-tls-inner-application-extension-01.  This
5508 functionality is added to libgnutls-extra, so it is licensed under the
5509 GNU General Public License.
5511 ** New APIs to access the TLS Pseudo-Random-Function (PRF).
5512 The PRF is used by some protocols building on TLS, such as EAP-PEAP
5513 and EAP-TTLS.  One function to access the raw PRF and one to access
5514 the PRF seeded with the client/server random fields are provided.
5515 Suggested by Jouni Malinen <jkmaline@cc.hut.fi>.
5517 ** New APIs to acceess the client and server random fields in a session.
5518 These fields can be useful by protocols using TLS.  Note that these
5519 fields are typically used as input to the TLS PRF, and if this is your
5520 intended use, you should use the TLS PRF API that use the
5521 client/server random field directly.  Suggested by Jouni Malinen
5522 <jkmaline@cc.hut.fi>.
5524 ** Internal type cleanups.
5525 The uint8, uint16, uint32 types have been replaced by uint8_t,
5526 uint16_t, uint32_t.  Gnulib is used to guarantee the presence of
5527 correct types on platforms that lack them.  The uint type have been
5528 replaced by unsigned.
5530 ** API and ABI modifications:
5531 New functions to invoke the TLS Pseudo-Random-Function (PRF):
5532   gnutls_prf
5533   gnutls_prf_raw
5535 New functions to retrieve the session's client and server random values:
5536   gnutls_session_get_server_random
5537   gnutls_session_get_client_random
5539 New function, to perform TLS/IA handshake:
5540   gnutls_ia_handshake
5542 New function to decide whether to do a TLS/IA handshake:
5543   gnutls_ia_handshake_p
5545 New functions to allocate a TLS/IA credential:
5546   gnutls_ia_allocate_client_credentials
5547   gnutls_ia_free_client_credentials
5548   gnutls_ia_allocate_server_credentials
5549   gnutls_ia_free_server_credentials
5551 New functions to handle the AVP callback:
5552   gnutls_ia_set_client_avp_function
5553   gnutls_ia_set_client_avp_ptr
5554   gnutls_ia_get_client_avp_ptr
5555   gnutls_ia_set_server_avp_function
5556   gnutls_ia_set_server_avp_ptr
5557   gnutls_ia_get_server_avp_ptr
5559 New functions, to toggle TLS/IA application phases:
5560   gnutls_ia_require_inner_phase
5562 New function to mix session keys with inner secret:
5563   gnutls_ia_permute_inner_secret
5565 Low-level API (used internally by gnutls_ia_handshake):
5566   gnutls_ia_endphase_send
5567   gnutls_ia_send
5568   gnutls_ia_recv
5570 New functions that can be used after successful TLS/IA negotiation:
5571   gnutls_ia_generate_challenge
5572   gnutls_ia_extract_inner_secret
5574 Enum type with TLS/IA modes:
5575   gnutls_ia_mode_t
5577 Enum type with TLS/IA packet types:
5578   gnutls_ia_apptype_t
5580 Enum values for TLS/IA alerts:
5581   GNUTLS_A_INNER_APPLICATION_FAILURE
5582   GNUTLS_A_INNER_APPLICATION_VERIFICATION
5584 New error codes, to signal when an application phase has finished:
5585   GNUTLS_E_WARNING_IA_IPHF_RECEIVED
5586   GNUTLS_E_WARNING_IA_FPHF_RECEIVED
5588 New error code to signal TLS/IA verify failure:
5589   GNUTLS_E_IA_VERIFY_FAILED
5591 * Version 1.3.1 (released 2005-12-08)
5593 ** Support for DHE-PSK cipher suites has been added.
5594 This method offers perfect forward secrecy.
5596 ** Fix gnutls-cli STARTTLS hang when SIGINT is sent too quickly, thanks to
5597 Otto Maddox <ottomaddox@fastmail.fm> and Nozomu Ando <nand@mac.com>.
5599 ** Corrected a bug in certtool for 64 bit machines. Reported
5600 by Max Kellermann <max@duempel.org>.
5602 ** New function to set a X.509 private key and certificate pairs, and/or
5603 CRLs, from an PKCS#12 file, suggested by Emile van Bergen
5604 <emile@e-advies.nl>.
5606 The integrity of the PKCS#12 file is protected through a password
5607 based MAC; public-key based signatures for integrity protection are
5608 not supported.  PKCS#12 bags may be encrypted using password derived
5609 symmetric keys, public-key based encryption is not supported.  The
5610 PKCS#8 keys may be encrypted using passwords.  The API use the same
5611 password for all operations.  We believe that any more flexibility
5612 create too much complexity that would hurt overall security, but may
5613 add more PKCS#12 related APIs if real-world experience indicate
5614 otherwise.
5616 ** gnutls_x509_privkey_import_pkcs8 now accept unencrypted PEM PKCS#8 keys,
5617 reported by Emile van Bergen <emile@e-advies.nl>.
5618 This will enable "certtool -k -8" to parse those keys.
5620 ** Certtool now generate keys in unencrypted PKCS#8 format for empty passwords.
5621 Use "certtool -p -8" and press press enter at the prompt.  Earlier,
5622 certtool would have encrypted the key using an empty password.
5624 ** Certtool now accept --password for --key-info and encrypted PKCS#8 keys.
5625 Earlier it would have prompted the user for it, even if --password was
5626 supplied.
5628 ** Added self test of PKCS#8 parsing.
5629 Unencrypted and encrypted (pbeWithSHAAnd3-KeyTripleDES-CBC and
5630 pbeWithSHAAnd40BitRC2-CBC) formats are tested.  The test is in
5631 tests/pkcs8.
5633 ** API and ABI modifications:
5634 New function to set X.509 credentials from a PKCS#12 file:
5635   gnutls_certificate_set_x509_simple_pkcs12_file
5637 New gnutls_kx_algorithm_t enum type:
5638   GNUTLS_KX_DHE_PSK
5640 New API to return session data (basically same as gnutls_session_get_data):
5641   gnutls_session_get_data2
5643 New API to set PSK Diffie-Hellman parameters:
5644   gnutls_psk_set_server_dh_params
5646 * Version 1.3.0 (2005-11-15)
5648 ** Support for TLS Pre-Shared Key (TLS-PSK) ciphersuites have been added.
5649 This add several new APIs, see below.  Read the updated manual for
5650 more information.  A new self test "pskself" has been added, that will
5651 test this functionality.
5653 ** The session resumption data are now system independent.
5655 ** The code has been re-indented to conform to the GNU coding style.
5657 ** Removed the RIPEMD ciphersuites.
5659 ** Added a discussion of the internals of gnutls in manual.
5661 ** Fixes for Tru64 UNIX 4.0D that lack MAP_FAILED, from Albert Chin.
5663 ** Remove trailing comma in enums, for IBM C v6, from Albert Chin.
5665 ** Make sure config.h is included first in a few files, from Albert Chin.
5667 ** Don't use C++ comments ("//") as they are invalid, from Albert Chin.
5669 ** Don't install SRP programs and man pages if --disable-srp-authentication,
5670 from Albert Chin.
5672 ** API and ABI modifications:
5673 New gnutls_kx_algorithm_t key exchange type: GNUTLS_KX_PSK
5675 New gnutls_credentials_type_t credential type:
5676   GNUTLS_CRD_PSK
5678 New credential types:
5679   gnutls_psk_server_credentials_t
5680   gnutls_psk_client_credentials_t
5682 New functions to allocate PSK credentials:
5683   gnutls_psk_allocate_client_credentials
5684   gnutls_psk_free_client_credentials
5685   gnutls_psk_free_server_credentials
5686   gnutls_psk_allocate_server_credentials
5688 New enum type for PSK key flags:
5689   gnutls_psk_key_flags
5691 New function prototypes for credential callback:
5692   gnutls_psk_client_credentials_function
5693   gnutls_psk_server_credentials_function
5695 New function to set PSK username and key:
5696   gnutls_psk_set_client_credentials
5698 New function to set PSK passwd file:
5699   gnutls_psk_set_server_credentials_file
5701 New function to extract PSK user in server:
5702   gnutls_psk_server_get_username
5704 New functions to set PSK callback:
5705   gnutls_psk_set_server_credentials_function
5706   gnutls_psk_set_client_credentials_function
5708 Use size_t instead of int for output size parameter:
5709   gnutls_srp_base64_encode
5710   gnutls_srp_base64_decode
5712 * Version 1.2.11 (2006-05-11)
5713 - The function gnutls_x509_crt_to_xml is not supported any more, and
5714   return an internal error.  The reason is that the function called
5715   internal libtasn1 functions which are no longer exported from
5716   libtasn1.
5717 - Updated libtasn1 requirement to 0.3.4 and refreshed internal mintiasn1.
5718 - Updated gnulib compatibility files.
5719 - Fixed _gnutls_x509_get_raw_crt_expiration_time and
5720   _gnutls_x509_get_raw_crt_activation_time to return (time_t)-1 on errors.
5721 - API and ABI modifications:
5722   No changes since last version.
5724 * Version 1.2.10 (2006-02-09)
5725 - Fix read out bounds bug in DER parser.  Reported by Evgeny Legerov
5726   <admin@gleg.net>, and debugging help from Protover SSL.
5727 - Libtasn1 0.2.18 is now required (contains the previous bug fix).
5728   The included version has been updated too.
5729 - Fix gnutls-cli STARTTLS hang when SIGINT is sent too quickly, thanks to
5730   Otto Maddox <ottomaddox@fastmail.fm> and Nozomu Ando <nand@mac.com>.
5731 - Corrected a bug in certtool for 64 bit machines. Reported
5732   by Max Kellermann <max@duempel.org>.
5733 - Corrected bugs in gnutls_certificate_set_x509_crl() and
5734   gnutls_certificate_set_x509_trust(), that caused memory corruption if
5735   more than one certificates were added. Report and patch by Max Kellermann.
5736 - Fixed bug in non-blocking gnutls_bye(). gnutls_record_send() will no 
5737   longer invalidate a session if the underlying send fails, but it will 
5738   prevent future writes. That is to allow reading the already received data.
5739   Patches and bug reports by Yoann Vandoorselaere <yoann@prelude-ids.org>
5741 * Version 1.2.9 (2005-11-07)
5742 - Documentation was updated and improved.
5743 - RSA-MD2 is now supported for verifying digital signatures.
5744 - Due to cryptographic advances, verifying untrusted X.509
5745   certificates signed with RSA-MD2 or RSA-MD5 will now fail with a
5746   GNUTLS_CERT_INSECURE_ALGORITHM verification output.  For
5747   applications that must remain interoperable, you can use the
5748   GNUTLS_VERIFY_ALLOW_SIGN_RSA_MD2 or GNUTLS_VERIFY_ALLOW_SIGN_RSA_MD5
5749   flags when verifying certificates.  Naturally, this is not
5750   recommended default behaviour for applications.  To enable the
5751   broken algorithms, call gnutls_certificate_set_verify_flags with the
5752   proper flag, to change the verification mode used by
5753   gnutls_certificate_verify_peers2.
5754 - Make it possible to send empty data through gnutls_record_send,
5755   to align with the send(2) API.
5756 - Some changes in the certificate receiving part of handshake to prevent
5757   some possible errors with non-blocking servers.
5758 - Added numeric version symbols to permit simple CPP-based feature
5759   tests, suggested by Daniel Stenberg <daniel@haxx.se>.
5760 - The (experimental) low-level crypto alternative to libgcrypt used
5761   earlier (Nettle) has been replaced with crypto code from gnulib.
5762   This leads to easier re-use of these components in other projects,
5763   leading to more review and simpler maintenance.  The new configure
5764   parameter --with-builtin-crypto replace the old --with-nettle, and
5765   must be used if you wish to enable this functionality.  See README
5766   under "Experimental" for more information.  Internally, GnuTLS has
5767   been updated to use the new "Generic Crypto" API in gl/gc.h.  The
5768   API is similar to the old crypto/gc.h, because the gnulib code were
5769   based on GnuTLS's gc.h.
5770 - Fix compiler warning in the "anonself" self test.
5771 - API and ABI modifications:
5772 gnutls_x509_crt_list_verify: Added 'const' to prototype in <gnutls/x509.h>.
5773                              This doesn't reflect a change in behaviour,
5774                              so we don't break backwards compatibility.
5775 GNUTLS_MAC_MD2: New gnutls_mac_algorithm_t value.
5776 GNUTLS_DIG_MD2: New gnutls_digest_algorithm_t value.
5777 GNUTLS_VERIFY_ALLOW_SIGN_RSA_MD2,
5778 GNUTLS_VERIFY_ALLOW_SIGN_RSA_MD5: New gnutls_certificate_verify_flags values.
5779                                   Use when calling
5780                                   gnutls_x509_crt_list_verify,
5781                                   gnutls_x509_crt_verify, or
5782                                   gnutls_certificate_set_verify_flags.
5783 GNUTLS_CERT_INSECURE_ALGORITHM: New gnutls_certificate_status_t value,
5784                                 used when broken signature algorithms
5785                                 is used (currently RSA-MD2/MD5).
5786 LIBGNUTLS_VERSION_MAJOR,
5787 LIBGNUTLS_VERSION_MINOR,
5788 LIBGNUTLS_VERSION_PATCH,
5789 LIBGNUTLS_VERSION_NUMBER: New CPP symbols, indicating the GnuTLS
5790                           version number, can be used for feature existence
5791                           tests.
5793 * Version 1.2.8 (2005-10-07)
5794 - Libgcrypt 1.2.2 is required to fix a bug for forking GnuTLS servers.
5795 - Don't install the auxilliary libexamples library used by the
5796   examples in doc/examples/ on "make install", report and tiny patch
5797   from Thomas Klausner <tk@giga.or.at>.
5798 - If you pass a X.509 CA or PGP trust database to the command line
5799   tool, it will now abort the connection if the server certificate
5800   validation fails.  Use the parameter --insecure to continue even
5801   after certificate validation failures.  Inspired from discussion
5802   with Alexander Kotelnikov <sacha@myxomop.com>.
5803 - The test for socklen_t has been moved to gnulib.
5804 - Link failures for duplicate or missing "program_name" symbol has been fixed,
5805   patch from Martin Lambers <marlam@marlam.de>.
5806 - The command line tool and the examples no longer uses mmap or bzero,
5807   to make them more portable, patch from Martin Lambers
5808   <marlam@marlam.de>.
5809 - Made the PKCS #12 API handle null passwords. Based on patch by
5810   Anton Altaparmakov <aia21@cam.ac.uk>.
5811 - The GTK-DOC manual should build with current released tools.
5812   (But a copy of the output is included, so the tools are not required.)
5813 - The inet_ntop function is now used through gnulib.
5814 - API and ABI modifications:
5815   No changes since last version.
5817 * Version 1.2.7 (2005-09-09)
5818 - The GnuTLS and GnuTLS-extra libraries are now built with versioned symbols.
5819 - Certtool now complains when reading out-of-range X.509 serial
5820   numbers, suggested by Fran <e_agf@yahoo.es>.
5821 - Certtool now uses the readline library (when available) when reading
5822   X.509 serial numbers.
5823 - Fixed build problems in getpass on uClibc and Mingw32 platforms.
5824 - Fixed compile warning regarding socklen_t on Mingw32, reported by
5825   Martin Lambers <marlam@marlam.de>.
5826 - Fixed examples in doc/examples/, suggested by Fran <e_agf@yahoo.es>.
5827 - Gnulib is now used for the core library, enabling future code cleanups.
5828 - The gnutls-cli tool now use gnutls_certificate_verify_peers2,
5829   suggested by Daniel Stenberg <daniel@haxx.se>.
5830 - Doc fixes for gnutls_transport_set_push and gnutls_transport_set_pull.
5831 - Minilibtasn1 is now 0.2.17 (removed optional use of C99 macros).
5832 - Disable zlib support if zlib.h is not present.
5833 - A number of internal cleanups.
5834 - API and ABI modifications:
5835   No changes since last version.
5837 * Version 1.2.6 (2005-07-16)
5838 - MiniLZO updated to version 2.01 and moved to separate directory.
5839 - Collision between system LZO header files and MiniLZO header file
5840   fixed, reported by Matthias Urlichs <smurf@smurf.noris.de>.
5841 - Will now test for liblzo functionality in liblzo2 too, reported by
5842   Thomas Klausner <tk@giga.or.at>.
5843 - Minilibtasn1 is now 0.2.14 (no code changes).
5844 - Some code changes to avoid GTK-DOC warnings.
5845 - API and ABI modifications:
5846   No changes since last version.
5848 * Version 1.2.5 (2005-07-03)
5849 - More builddir != srcdir fixes, reported by Mike Castle
5850   <dalgoda@ix.netcom.com>.
5851 - Fixed off-by-one bug in the size parameter of gnutls_x509_crt_get*_dn,
5852   reported by Adam Langley <alangley@gmail.com>.
5853 - Corrected some stuff in minilzo detection. Pointed out by 
5854   Sergey Lipnevich.
5855 - MiniLZO updated to version 2.00.
5856 - gnutls_x509_crt_list_import now accept a DER formatted CRL.
5857 - API and ABI modifications:
5858   No changes since last version.
5860 * Version 1.2.4 (2005-05-28)
5861 - Corrected some bugs that could affect 64 bit systems.
5862 - Some corrections in the header files to include the prototype
5863   of memmem properly (affected 64 bit systems). Report and patch
5864   by Yoann Vandoorselaere <yoann@prelude-ids.org>.
5865 - Introduced the --fix-key option to certtool, which can be used to
5866   regenerate the (optional) parameters in a private key. It should
5867   be used together with --key-info.
5868 - Corrected a bug in certificate chain verification that could lead
5869   to marking a trusted chain as non trusted, if the last certificate in
5870   the chain was a self signed one.
5871 - Gnulib portability files were updated.
5872 - License were updated to reflect new FSF address.
5873 - API and ABI modifications:
5874   No changes since last version.
5876 * Version 1.2.3 (2005-04-28)
5877 - Corrected bug in record packet parsing that could lead
5878   to a denial of service attack.
5879 - Corrected bug in RSA key export. Previously exported keys
5880   can be fixed using certtool. Use certtool -k <infile >outfile
5881 - API and ABI modifications:
5882     gnutls_x509_privkey_fix(): Add.
5884 * Version 1.2.2 (2005-04-25)
5885 - gnutls_error_to_alert() now considers
5886   GNUTLS_E_UNEXPECTED_HANDSHAKE_PACKET.
5887 - Fixed error in session resuming that could cause a crash in a session.
5888 - Fixed pkcs12 friendly name and local key identifier decoding.
5889 - Internal cleanups, removed duplicate typedef/struct definitions,
5890   and made source code include external include file, to check
5891   function prototypes during compile time.
5892 - API and ABI modifications:
5893   No changes since last version.  At least not intentional, but due
5894   to the include header changes, there may be inadvertant changes,
5895   please let us know if you find any.
5897 * Version 1.2.1 (2005-04-04)
5898 - gnutls_bye() will no longer fail when RDWR is used and application
5899   data are available for reading.
5900 - Added more strict checks for the SRP parameters (g,n), when they
5901   are not in the included list.
5902 - Added warning to certtool when MD5 is being used for digital
5903   signatures.
5904 - Optimizations ("-O2 -finline-functions") are not enabled by default,
5905   instead the standard autoconf defaults are used.  Use `./configure
5906   CFLAGS="-O2 -finline-functions"' to get the old optimizations.
5907 - Added the option --get-dh-params to certtool, in order to get the
5908   parameters included in the library primes and generators.
5909 - Improved the semantics of GNUTLS_VERIFY_ALLOW_X509_V1_CA_CRT, to
5910   allow only trusted Version 1 CAs and introduced
5911   GNUTLS_VERIFY_ALLOW_ANY_X509_V1_CA_CRT which has the old semantics.
5912 - Nettle self tests now build properly, reported by Pierre
5913   <pierre42d@9online.fr>.
5914 - Eliminated some memory leaks in DHE and RSA-EXPORT cipher suites.
5915   Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
5916 - If the library has been compiled with features disabled, a warning is 
5917   issued during the compilation of any program.
5918 - API and ABI modifications:
5919     gnutls_x509_crt_list_import(): Add
5920     gnutls_x509_crq_get_attribute_by_oid(): Add.
5921     gnutls_x509_crq_set_attribute_by_oid(): Add
5922     gnutls_x509_crt_set_extension_by_oid(): Add.
5923     GNUTLS_VERIFY_ALLOW_X509_V1_CA_CRT: Modify semantics.
5924     GNUTLS_VERIFY_ALLOW_ANY_X509_V1_CA_CRT: Add, old behaviour.
5926 * Version 1.2.0 (2005-01-27)
5927 - Added the definitions and OIDs for the RIPEMD-160 hash algorithm.
5928 - Introduced gnutls_x509_crt_sign2(), gnutls_x509_crq_sign2() and 
5929   gnutls_x509_crl_sign2().
5930 - Fixed license header in source code files.
5932 * Version 1.1.23 (2005-01-18)
5933 - It is now possible to generate PKCS#12 structures without private
5934   keys using "certtool --to-p12", suggested by Fabian Fagerholm
5935   <fabbe@paniq.net>.
5936 - Certtool now prints information for the RSA and DSA parameters of
5937   certificates and private keys.
5938 - Corrected the write of CRL distribution points.
5939 - The certificate chain verification function now checks certificates
5940   in the reverse order to minimize the spent resources.
5941 - Corrected several bugs found by Marcin Garski <mgarski@post.pl>
5942 - The functions gnutls_x509_crl_get_issuer_dn, gnutls_x509_crq_get_dn,
5943   gnutls_x509_crt_get_issuer_dn, gnutls_x509_crt_get_dn, and
5944   gnutls_x509_rdn_get now set *sizeof_buf to the buffer length that is
5945   required, instead of the string length.  That is, the value has been
5946   incremented by 1 to account for the terminating zero. Reported by
5947   Martin Lambers <marlam@web.de>.
5948 - Debug output shouldn't crash on platforms that doesn't handle NULL
5949   printf %s values.  Reported by Michael.Ringe@aachen.utimaco.de.
5950 - Sync included copy of libtasn1 with version 0.2.13.
5951 - Client X.509 authenticated connections via gnutls-cli should now work again.
5953 * Version 1.1.22 (2004-11-04)
5954 - Replace GNU LD version script with Libtool -export-symbols-regex,
5955   from Joe Orton <joe@manyfish.co.uk>.
5956 - Documentation improvements.
5957 - Code indented using 'indent -i4 -kr'.
5958 - The API manual is included in Devhelp format.  (Was in last release too,
5959   but the NEWS entry was forgotten.)
5960 - The OpenSSL compatibility code now use the internal crypto interface.
5961 - Added simple self test of OpenSSL compatibility library.
5962 - Internally, libtool convenience libraries are used.
5963 - Cleanups to configure.ac.
5965 * Version 1.1.21 (2004-10-27)
5966 - Print DN of certificates with unknown characters in them, but in hexform
5967   only.
5968 - Added second precision to the X.509 parsing and generation functions.
5969 - Corrected bug in _gnutls_x509_get_dn_oid(), and returns the
5970   actual OID.
5971 - Add parameter --la-file to libgnutls-config and libgnutls-extra-config,
5972   tiny patch contributed by Joe Orton <joe@manyfish.co.uk>.
5973 - Add pkg-config meta files, suggested by Stéphane LOEUILLET
5974   <stephane.loeuillet@tiscali.fr>.
5975 - Fix memory initializaion bug in gnutls_certificate_set_x509_trust,
5976   tiny patch by Aleix Conchillo Flaque <aleix@member.fsf.org>.
5977 - Add self test of PKCS#12 functionality in "certtool", based on test
5978   vectors from Joe Orton <joe@manyfish.co.uk>.
5979 - Fix library order in libgnutls*-config --libs output, to permit
5980   static linking, reported by Yoann Vandoorselaere
5981   <yoann@prelude-ids.org>.
5983 * Version 1.1.20 (2004-10-12)
5984 - Fix compile problem in gl/getpass.c on some systems.
5986 * Version 1.1.19 (2004-10-07)
5987 - Fix memory leak in gnutls_certificate_verify_peers and
5988   gnutls_certificate_free_credentials, report and patch by Simon
5989   Posnjak <simon.posnjak@cetrtapot.si>.
5990 - Fix crash in `certtool --to-p12 --load-privkey foo', i.e. exporting
5991   a key and no certificate to PKCS#12.
5992 - Fix objdir != srcdir builds, reported by "Gerrit P. Haase"
5993   <gp@familiehaase.de>.
5994 - Fixes faulty getpass implementation in libextra/opencdk/, reported
5995   by Yoann Vandoorselaere <yoann@prelude-ids.org>.
5996 - Uses memmem instead of strnstr in lib/.
5997 - Using more GNULib portability files, although not yet inside lib/.
5998 - Added gnutls_certificate_verify_peers to gnutls/compat.h.
5999   Nikos deprecated gnutls_certificate_verify_peers in favor of
6000   gnutls_certificate_verify_peers2 earlier in the 1.1 branch.
6001 - Improvements to the manual.
6002 - Add new example "ex-rfc2818" for certificate verification, from Nikos.
6003 - Known bug: the library require snprintf.  This has not yet been
6004   fixed, but will be handled via GNULib later on.
6006 * Version 1.1.18 (2004-08-24)
6007 - Corrected handling of certificate with dates after year 2038.
6008 - Corrected DER decoder which could incorrectly treat input as BER and fail.
6009 - Correct certtool --smime-to-p7 end of line character handling.
6010 - Added example client and server for anonymous authentication.
6011 - Added self test that tests anonymous TLS client and server.
6012 - Added self tests of Nettle and generic crypto layer.
6013 - Added API reference manual in HTML format in doc/reference/ using GTK-DOC.
6014   Online version at <http://www.gnu.org/software/gnutls/reference/>.
6015 - Assume C89 or better; removed checks for size_t, ptrdiff_t and time_t.
6016 - Man pages for API functions are included.
6018 * Version 1.1.17 (2004-08-18)
6019 - Bug fix of padding string in RSA PKCS#1 v1.5 type 2 encryption,
6020   reported by Robey Pointer <robey@danger.com>.
6021 - Generic crypto interface for secret key ciphers, hashes and randomness added.
6022   See section "Experimental" within section "COMPILATION ISSUES" in README.
6023 - Removed length limit on passwords read by 'certtool'.
6024 - Documentation fixes.
6026 * Version 1.1.16 (2004-08-15)
6027 - Fix missing gnulib linker parameter when building certtool.
6028 - Add gnulib module 'progname', needed by module 'error'.
6029 - Improve building with srcdir != objdir.
6031 * Version 1.1.15 (2004-08-15)
6032 - Certtool has simplistic --smime-to-p7 to translate RFC 2633 messages into
6033   PKCS #7 format.
6034 - Ported to Mac OS X / Darwin.
6035 - Ported to FreeBSD.
6037 * Version 1.1.14 (2004-08-09)
6038 - Documentation converted to Texinfo format.
6039 - Bug fix of test suite.
6040 - Configure now print build information, used by Autobuild.
6042 * Version 1.1.13 (2004-08-05)
6043 - Added simple self test suite.
6045 * Version 1.1.12 (2004-08-02)
6046 - Updated the SRP authentication to conform to the
6047   latest (yet unreleased) draft. Unfortunately this breaks
6048   compatibility with previous versions.
6049 - Changed the makefiles to be more portable.
6050 - SRP ciphersuites were moved to the gnutls library.
6051 - Added some default limits in the verification of certificate
6052   chains, to avoid denial of service attacks. Also added 
6053   gnutls_certificate_set_verify_limits() to override them.
6054   Issue pointed out by Patrik Hornik <patrik@hornik.sk>.
6055 - Added gnutls_certificate_verify_peers2().
6057 * Version 1.1.11 (2004-07-16)
6058 - Added the '_t' suffix to all exported symbols.
6059 - Fixed bug in RSA encryption, report and patch by Martijn Koster 
6060   <mak@greenhills.co.uk>.
6061 - Corrected a bug in certificate verification. Pointed out by
6062   Yoann Vandoorselaere <yoann@prelude-ids.org>
6063 - Added the GNUTLS_VERIFY_DO_NOT_ALLOW_SAME flags to the
6064   verification functions.
6065 - The ephemeral DH and RSA parameters are no longer stored in the
6066   session resume DB.
6067 - Do not free the SRP (prime and generator) parameters obtained from the 
6068   callback if they are the static ones defined in extra.h
6069 - Eliminated some memory leaks. Reported by Yoann Vandoorselaere.
6071 * Version 1.1.10 (2004-06-12)
6072 - Added gnutls_sign_algorithm_get_name() and gnutls_pk_algorithm_get_name()
6073 - Corrected bug in TLS renegotiation.
6074 - Corrected bug in OpenPGP key loading using a callback.
6075 - gnutls-srpcrypt was renamed to srptool
6076 - Allow handshake requests by the client.
6077 - Automatically disable certificate types that do not have corresponding
6078   certificates.
6079 - Added gnutls_auth_client_get_type() and gnutls_auth_server_get_type()
6080 - Opencdk library is being included if not found.
6081 - certtool can now add ip address SAN extension.
6082 - certtool has now support for more X.520 DN attribute types.
6083 - Better handling of EOF in gnutls_record_recv().
6084 - _gnutls_deinit() is no longer used. Sessions are not
6085   automatically removed any more, on abnormal termination.
6086 - Corrected session resuming in SRP ciphersuites.
6087 - Updated to conform to the latest srp draft (draft-ietf-tls-srp-07)
6088 - Added new functions to allow access to the ephemeral
6089   Diffie Hellman parameters.
6090 - Added the functions gnutls_x509_crt_get_pk_rsa_raw() and
6091   gnutls_x509_crt_get_pk_dsa_raw() to retrieve parameters from certificates.
6092 - Added the functions gnutls_dh_get_group(), gnutls_dh_get_pubkey() and
6093   gnutls_rsa_export_get_pubkey() to retrieve parameters of the DH or
6094   RSA-EXPORT key exchange.
6095 - Some fixes in the session resuming code.
6096 - Added gnutls_openpgp_keyring_check_id().
6098 * Version 1.1.9 (2004-04-14)
6099 - Added support for authority key identifier and the extended key usage
6100   X.509 extension fields. The certtoool was updated to support them.
6101 - The RC2 cipher is no more included. The one in libgcrypt is now used.
6102 - Added batch support to certtool. Now it can use templates.
6104 * Version 1.1.8 (2004-04-07)
6105 - Implemented all the tests for the SRP group parameters in
6106   client side. This may lead to incompatibility with very
6107   old gnutls servers.
6108 - Corrected bug in RSA parameters handling which could cause
6109   unexpected crashes.
6110 - Optimized the copying of rsa_params.
6112 * Version 1.1.7 (2004-03-29)
6113 - Added gnutls_certificate_set_params_function() and 
6114   gnutls_anon_set_params_function() that set the RSA or DH
6115   parameters using a callback.
6116 - Added functions gnutls_rsa_params_cpy(), gnutls_dh_params_cpy()
6117   and gnutls_x509_privkey_cpy().
6118 - Corrected a compilation issue when opencdk was installed in a
6119   non standard directory.
6120 - Deprecated: gnutls_srp_server_set_select_function(), 
6121   gnutls_certificate_client_set_select_function(), gnutls_srp_server_set_select_function().
6123 * Version 1.1.6 (2004-02-24)
6124 - Several bug fixes, by Arne Thomassen.
6125 - Fixed a bug where 'server name' extension was always sent.
6127 * Version 1.1.5 (2004-01-06)
6128 - Added the gnutls_sign_algorithm type.
6130 * Version 1.1.4 (2004-01-04)
6131 - Improved gnutls-cli's SRP behaviour in SRP ciphersuites.
6132   If they are of highest priority then the abbreviated handshake
6133   is used.
6134 - Removed all references of missing files.
6135 - Changed handshake behaviour to send the lowest TLS version
6136   when an unsupported version was advertized. The current behaviour
6137   is to send the maximum version we support.
6138 - Corrected problem printing the DC attributes in a DN.
6140 * Version 1.1.3 (2003-12-30)
6141 - Implemented TLS 1.1 (and also obsoleted the TLS 1.0 CBC protection
6142   hack).
6144 * Version 1.1.2 (2003-12-28)
6145 - Added CRL verification functionality to certtool.
6146 - Corrected the CRL distribution point extension handling.
6148 * Version 1.1.1 (2003-12-26)
6149 - Added PKCS #7 support to certtool utility.
6150 - Added support for reading and generating CRL distribution
6151   points extensions in certificates.
6152 - Added support for generating CRLs in the library and the
6153   certtool utility.
6154 - Added support for the Subject Key ID PKIX extension.
6156 * Version 1.1.0 (2003-12-21)
6157 - The error codes GNUTLS_E_NO_TEMPORARY_DH_PARAMS and GNUTLS_E_NO_TEMPORARY_RSA_PARAMS
6158   are no longer returned by the handshake function. Ciphersuites that
6159   require temporary parameters are removed when such parameters do not exist.
6160 - Added the callbacks gnutls_certificate_client_retrieve_function() and
6161   gnutls_certificate_server_retrieve_function(), to allow a client or a server
6162   to specify certificates for the handshake without storing them to the
6163   credentials structure.
6164 - Added support for generating and exporting DSA private keys.
6165 - Added gnutls_x509_crt_set_key_usage() and certtool can now set the
6166   certificate's key usage.
6167 - Added gnutls_openpgp_key_get_key_usage().
6169 * Version 1.0.25 (2005-04-27)
6170 - Corrected bug in record packet parsing that could lead
6171   to a denial of service attack.
6172 - Corrected bug in RSA key export.
6174 * Version 1.0.24 (2005-01-18)
6175 - Corrected several bugs found by Marcin Garski <mgarski@post.pl>
6177 * Version 1.0.23 (2004-11-13)
6178 - Replace GNU LD version script with Libtool -export-symbols-regex,
6179   from Joe Orton <joe@manyfish.co.uk>.
6180 - Copy libtasn1 has been updated to version 0.2.11.
6181 - Corrected the write of CRL distribution points.
6182 - It is now possible to generate PKCS#12 structures without private
6183   keys using "certtool --to-p12", suggested by Fabian Fagerholm
6184   <fabbe@paniq.net>.
6186 * Version 1.0.22 (2004-10-28)
6187 - Print DN of certificates with unknown characters in them, but in hexform
6188   only.
6189 - Corrected bug in _gnutls_x509_get_dn_oid(), and returns the
6190   actual OID.
6191 - Added second precision to the X.509 parsing functions.
6192 - Add parameter --la-file to libgnutls-config and libgnutls-extra-config,
6193   tiny patch contributed by Joe Orton <joe@manyfish.co.uk>.
6194 - Add pkg-config meta files, suggested by Stéphane LOEUILLET
6195   <stephane.loeuillet@tiscali.fr>.
6196 - Fix memory initializaion bug in gnutls_certificate_set_x509_trust,
6197   tiny patch by Aleix Conchillo Flaque <aleix@member.fsf.org>.
6198 - Fix certtool --password for PKCS #12, back ported from 1.1.x branch.
6199 - Fix library order in libgnutls*-config --libs output, to permit
6200   static linking, reported by Yoann Vandoorselaere
6201   <yoann@prelude-ids.org>.
6203 * Version 1.0.21 (2004-10-07)
6204 - Fix memory leak in gnutls_certificate_verify_peers and
6205   gnutls_certificate_free_credentials, report and patch by Simon
6206   Posnjak <simon.posnjak@cetrtapot.si>.
6207 - Fix crash in `certtool --to-p12 --load-privkey foo', i.e. exporting
6208   a key and no certificate to PKCS#12.
6209 - Fix objdir != srcdir builds, reported by "Gerrit P. Haase"
6210   <gp@familiehaase.de>.
6211 - Avoid redefining getpass if system already has it, reported by
6212   Yoann Vandoorselaere <yoann@prelude-ids.org>.
6213 - Add new example "ex-rfc2818" for certificate verification, from Nikos.
6214 - Known bug: the library require snprintf.
6216 * Version 1.0.20 (2004-08-18)
6217 - Bug fix of padding string in RSA PKCS#1 v1.5 type 2 encryption,
6218   reported by Robey Pointer <robey@danger.com>.
6220 * Version 1.0.19 (2004-08-09)
6221 - Bug fix of test suite.
6223 * Version 1.0.18 (2004-08-05)
6224 - Added simple self test suite.
6226 * Version 1.0.17 (2004-08-02)
6227 - Updated the SRP authentication to conform to the
6228   latest (yet unreleased) draft. Unfortunately this breaks
6229   compatibility with previous versions.
6230 - Changed the makefiles to be more portable.
6231 - Added some default limits in the verification of certificate
6232   chains, to avoid denial of service attacks. Also added 
6233   gnutls_certificate_set_verify_limits() to override them.
6234   Issue pointed out by Patrik Hornik <patrik@hornik.sk>.
6235 - Added gnutls_certificate_verify_peers2().
6237 * Version 1.0.16 (2004-07-10)
6238 - Do not free the SRP (prime and generator) parameters obtained from the 
6239   callback if they are the static ones defined in extra.h.
6240 - Eliminated some memory leaks. Reported by Yoann Vandoorselaere.
6241 - Some fixes in the makefiles.
6243 * Version 1.0.15 (2004-06-29)
6244 - Fixed bug in RSA encryption, report and patch by Martijn Koster 
6245   <mak@greenhills.co.uk>.
6246 - Corrected a bug in certificate verification. Pointed out by
6247   Yoann Vandoorselaere <yoann@prelude-ids.org>.
6249 * Version 1.0.14 (2004-06-12)
6250 - Automatically disable certificate types that do not have corresponding
6251   certificates.
6252 - Updates in the documentation.
6253 - certtool can now add ip address SAN extension.
6254 - certtool has now support for more X.520 DN attribute types.
6255 - Opencdk library is being included if not found.
6256 - Added gnutls_openpgp_keyring_check_id().
6257 - Corrected a serious bug in the included libtasn1 library.
6258 - Corrected session resuming in SRP ciphersuites.
6259 - Updated to conform to the latest srp draft (draft-ietf-tls-srp-07)
6260 - Added the functions gnutls_x509_crt_get_pk_rsa_raw() and
6261   gnutls_x509_crt_get_pk_dsa_raw() to retrieve parameters from certificates.
6262 - Some fixes in the session resuming code.
6264 * Version 1.0.13 (2004-04-29)
6265 - Some complilation fixes.
6266 - Added the --xml parameter to the certtool utility.
6268 * Version 1.0.12 (2004-04-23)
6269 - Corrected bug in OpenPGP key loading using a callback.
6270 - Renamed gnutls-srpcrypt to srptool
6271 - Allow handshake requests by the client.
6272 * Things backported from the development branch:
6273 - Added support for authority key identifier and the extended key usage
6274   X.509 extension fields. The certtoool was updated to support them.
6275 - Added batch support to certtool. Now it can use templates.
6276 - The RC2 cipher is no more included. The one in libgcrypt is now used.
6278 * Version 1.0.11 (2004-04-17)
6279 - Added gnutls_sign_algorithm_get_name() and gnutls_pk_algorithm_get_name()
6280 - Corrected bug in TLS renegotiation.
6282 * Version 1.0.10 (2004-04-03)
6283 - Corrected bug in RSA parameters handling which could cause
6284   unexpected crashes.
6285 - Corrected bug in SSL 3.0 authentication.
6287 * Version 1.0.9 (2004-03-29)
6288 - Added gnutls_certificate_set_params_function() and 
6289   gnutls_anon_set_params_function() that set the RSA or DH
6290   parameters using a callback.
6291 - Added functions gnutls_rsa_params_cpy(), gnutls_dh_params_cpy()
6292   and gnutls_x509_privkey_cpy().
6293 - Corrected a compilation issue when opencdk was installed in a
6294   non standard directory.
6295 - Documented the changes need in multi-threaded application due
6296   to the new libgcrypt.
6298 * Version 1.0.8 (2004-02-28)
6299 - Corrected bug in mutual certificate authentication in SSL 3.0.
6301 * Version 1.0.7 (2004-02-25)
6302 - Implemented TLS 1.1 (and also obsoleted the TLS 1.0 CBC protection
6303   hack).
6304 - Some updates in the documentation.
6306 * Version 1.0.6 (2004-02-12)
6307 * Backported things from the development branch (while maintaining
6308   backwards compatibility):
6309 - Improved gnutls-cli's SRP behaviour in SRP ciphersuites.
6310   If they are of highest priority then the abbreviated handshake
6311   is used.
6312 - The error codes GNUTLS_E_NO_TEMPORARY_DH_PARAMS and GNUTLS_E_NO_TEMPORARY_RSA_PARAMS
6313   are no longer returned by the handshake function. Ciphersuites that
6314   require temporary parameters are removed when such parameters do not exist.
6315 - Added the callbacks gnutls_certificate_client_retrieve_function() and
6316   gnutls_certificate_server_retrieve_function(), to allow a client or a server
6317   to specify certificates for the handshake without storing them to the
6318   credentials structure.
6319 - Added support for generating and exporting DSA private keys.
6321 * Version 1.0.5 (2004-02-11)
6322 - Fixed a bug where 'server name' extension was always sent.
6323 * Backported things from the development branch:
6324 - Added CRL verification functionality to certtool.
6325 - Corrected the CRL distribution point extension handling.
6326 - Added PKCS #7 support to certtool utility.
6327 - Added support for reading and generating CRL distribution
6328   points extensions in certificates.
6329 - Added support for generating CRLs in the library and the
6330   certtool utility.
6331 - Added support for the Subject Key ID PKIX extension.
6332 - Added the gnutls_sign_algorithm type.
6334 * Version 1.0.4 (2004-01-04)
6335 - Changed handshake behaviour to send the lowest TLS version
6336   when an unsupported version was advertized. The current behaviour
6337   is to send the maximum version we support.
6338 - certtool no longer asks the password in unencrypted private
6339   keys.
6340 - The source is now compiled to use the reentrant libc functions.
6342 * Version 1.0.3 (2003-12-21)
6343 - Corrected bug in gnutls_bye() which made it return an error code
6344   of INVALID_REQUEST instead of success.
6345 - Corrected a bug in the GNUTLS_KEY key usage definitions.
6347 * Version 1.0.2 (2003-12-18)
6348 - Corrected a bug in the RSA key generation. This was
6349   generating unusable RSA keys.
6351 * Version 1.0.1 (2003-12-10)
6352 - Some minor fixes in the makefiles. They now include CFLAGS
6353   from libgcrypt or opencdk if installed in a non standard directory.
6354 - Fixed the SRP detection test in gnutls-cli-debug.
6355 - Added gnutls_rsa_params_export_pkcs1() and gnutls_rsa_params_import_pkcs1().
6357 * Version 1.0.0 (2003-12-04)
6358 - Exported the static SRP group parameters.
6359 - Some fixes in the certificate authenticated SRP ciphersuites.
6360 - Improved the support for draft-ietf-tls-srp-05. The two-phase
6361   handshake is now fully supported without any interaction with
6362   the application layer (except for a callback).
6364 * Version 0.9.99 (2003-11-28)
6365 - Some fixes in the gnutls.h header for the gnutls_server_name_set()
6366   and gnutls_server_name_get() prototypes.
6367 - Exported the gnutls_x509_privkey_sign_data(), gnutls_x509_privkey_verify_data() 
6368   and gnutls_x509_crt_verify_data().
6369 - Some fixes in the openpgp authentication.
6370 - Removed the Twofish cipher.
6372 * Version 0.9.98 (2003-11-16)
6373 - The openssl compatibility layer was moved to gnutls-openssl
6374   library instead of being included in the gnutls-extra library.
6375 - Added the RIPEMD ciphersuites defined in draft-ietf-tls-openpgp-keys-04.
6376 - Building with openpgp support is now mandatory.
6377 - gnutls4 compatibility header is no longer included by default in
6378   gnutls.h.
6379 - gnutls8 function usage yelds a deprecation warning in gcc3.
6380 - gnutls_x509_*_set_dn_by_oid() and gnutls_x509_*_get_*_dn_by_oid()
6381   functions have a raw_flag parameter added.
6382 - Added gnutls_x509_*_get_dn_oid() and gnutls_x509_crt_get_extension_oid()
6383   functions which return the available OIDs.
6385 * Version 0.9.97 (2003-11-11)
6386 - The certtool utility can now generate PKCS #12 structures
6387   without specifying a certificate.
6388 - Added capability to read CRLs to certtool.
6389 - Corrected some functions which return GNUTLS_E_SHORT_MEMORY_BUFFER
6390   to properly set the required buffer size.
6391 - Corrected a bug in libgcrypt detection.
6393 * Version 0.9.96 (2003-11-09)
6394 - Some changes to allow compilation with mingw32.
6395 - Several code cleanups.
6397 * Version 0.9.95 (2003-11-02)
6398 - Improved the verification functions. Added new verification
6399   output flags and removed the unused and redundant ones.
6400 - Improved the OpenPGP key support.
6401 - The prime utility was removed, and its functionality was moved
6402   to certtool.
6404 * Version 0.9.94 (2003-10-30)
6405 - Added manpages for the included programs.
6406 - Documented and improved the certtool utility. 
6407 - Added PKCS #12 support to certtool utility.
6409 * Version 0.9.93 (2003-10-26)
6410 - Corrected some compilation issues.
6411 - Improved the certtool command line utility.
6413 * Version 0.9.92 (2003-10-25)
6414 - The RFC2818 hostname verification is now case insensitive.
6415 - Added support for generating X.509 certificates.
6416 - Added the certtool, a tool for generating X.509 certificates
6418 * Version 0.9.91 (2003-10-17)
6419 - Fixed a compilation issue in the openpgp authentication part.
6421 * Version 0.9.90 (2003-10-08)
6422 - Updated the openpgp key API (depends on the unreleased new
6423   opencdk).
6425 * Version 0.9.8 (2003-10-02)
6426 - Updated the SRP implementation to follow the latest draft
6427   (draft-ietf-tls-srp-05).
6428 - Improved the gnutls-cli behaviour in error handling,
6429   and added a check for the peer's hostname.
6430 - Use versioned symbols in the library (where available).
6431 - RIJNDAEL ciphersuites were renamed to AES.
6433 * Version 0.9.7 (2003-08-25)
6434 - The tex files are now included in the distribution.
6435 - The library can now decrypt PKCS #12 files encrypted with
6436   the RC2-40 cipher.
6437 - The missing rfc2818_hostname object is now included.
6438 - Several corrections and bug fixes in the library by 
6439   Arne Thomassen <arne@arne-thomassen.de>.
6440 - CR is now allowed in the base64 decoder.
6442 * Version 0.9.6 (2003-06-28)
6443 - Added gnutls_x509_privkey_get_key_id() and gnutls_x509_crt_get_key_id()
6444   functions which return a unique (per public key) ID. These can
6445   be used to check if the private key corresponds to a given certificate.
6446 - Corrections in the TLS layer openpgp certificate packet parser.
6447 - Corrected a bug in the record layer buffering, which affected
6448   the case where external pull function was used. Report and patch
6449   by Sergey Poznyakoff <gray@Mirddin.farlep.net>.
6450 - Corrected a bug in gnutls-srpcrypt where a non allocated variable
6451   was freed.
6452 - SRP programs are now built by default.
6453 - Added API to read and write to PKCS #12 structures. Prototypes
6454   in gnutls/pkcs12.h.
6455 - The gnutls_transport_ptr type was changed to a pointer type (void*).
6457 * Version 0.9.5 (2003-04-06)
6458 - Several improvements in the PKCS #7 handling
6459 - Eliminated several hard coded constants in MPI parameters.
6461 * Version 0.9.4 (2003-03-28)
6462 - Corrected a parsing error in the Certificate request message.
6463 - Corrected behaviour when a certificate request message is received.
6464   Now a certificate packet is always sent, and in SSL 3.0 cipher suites
6465   a no_certificate alert is sent instead.
6466 - Added functionality to generate PKCS #7 structures (with certificates).
6468 * Version 0.9.3 (2003-03-24)
6469 - Support for MD2 was dropped. 
6470 - Improved the error logging functions, by adding a level, and
6471   by allowing debugging messages just by increasing the level.
6472 - The diffie Hellman ciphersuites are now of higher priority than
6473   the plain RSA.
6474 - The RSA premaster secret version check can no longer be disabled.
6475 - Implemented the counter measure discussed in the paper "Attacking
6476   RSA-based Sessions in SSL/TLS", against the attack described in the
6477   same paper.
6478 - Added the functions: gnutls_handshake_get_last_in(), 
6479   gnutls_handshake_get_last_out().
6480 - The gnutls_certificate_set_rsa_params() was renamed to 
6481   gnutls_certificate_set_rsa_export_params().
6482 - Added the new functions: gnutls_certificate_set_x509_key()
6483   gnutls_certificate_set_x509_trust(), gnutls_certificate_set_x509_crl(),
6484   gnutls_x509_crt_export(), gnutls_x509_crl_export().
6485 - Added support for encoding and decoding PKCS #8 2.0 encrypted 
6486   RSA private keys.
6488 * Version 0.9.2 (2003-03-15)
6489 - Some corrections in the memory mapping code (file is unmapped after 
6490   it is read).
6491 - Added support for PKCS#10 certificate requests generation.
6493 * Version 0.9.1 (2003-03-12)
6494 - Corrected a bug in 64 bit architectures, which affected the
6495   serial number calculation in the record layer.
6496 - Added gnutls_certificate_free_keys() which deletes all the
6497   private keys and certificates from the credentials structure.
6498 - Corrected a broken buffer check in _gnutls_io_read_buffered(),
6499   which caused some unexpected packet length errors. Report and patch
6500   by Ian Peters <itp@ximian.com>.
6501 - Added ability to generate RSA keys.
6502 - Increased the maximum parameter size in order to read some large keys
6503   by some CAs. Patch by Ian Peters <itp@ximian.com>.
6504 - Added an strnstr() function and the requirement in some functions to
6505   use null terminated PEM structures is no more.
6506 - Use mmap() if available to read files.
6507 - Fixed a memory leak in SRP code reported by Rupert Kittinger 
6508   <r.kittinger@efkon.com>.
6510 * Version 0.9.0 (2003-03-03)
6511 - This version is not binary compatible with the previous ones.
6512 - The library notifies the application on empty and illegal SRP usernames, 
6513   so that proper notification (via an alert) is sent to the peer.
6514 - Added ability to send some messages back to the application using
6515   the gnutls_global_set_log_function().
6516 - gnutls_dh_params_generate() and gnutls_rsa_params_generate() now use 
6517   gnutls_malloc() to allocate the output parameters.
6518 - Added support for MD2 algorithm in certificate signature verification.
6519 - The RSA and DH parameter generation interface was changed. Added
6520   ability to import and export from and to PKCS3 structures. This 
6521   was needed to read parameters generated using the openssl dhparam tool.
6522 - Several changes in the temporary (DH/RSA) parameter codebase. No DH 
6523   parameters are now included in the library. Also the credentials structure 
6524   can now hold only one temporary parameter of a kind.
6525 - Added a new Certificate, CRL, Private key and PKCS7 structures handling 
6526   API, defined in gnutls/x509.h
6527 - Added gnutls_certificate_set_verify_flags() function to allow setting the 
6528   verification flags in the credentials structure. They will be used in the
6529   *verify_peers functions.
6530 - Added protection against the new TLS 1.0 record layer timing attack.
6531 - Added support for Certificate revocation lists. Functions defined
6532   in gnutls/x509.h
6533 - The only functions that were removed are:
6534   gnutls_x509_certificate_to_xml()
6535   gnutls_x509_extract_dn_string()
6536 - Ported to libtasn1 0.2.x
6538 * Version 0.8.1 (2003-01-22)
6539 - Improved the SRP support, to prevent attackers guessing the
6540   available usernames by brute force.
6541 - Improved the SRP detection in gnutls-cli-debug
6542 - Some fixes which now allow compilation.
6544 * Version 0.8.0 (2003-01-20)
6545 - Added gnutls_x509_extract_dn_string() which returns a 
6546   distinguished name in a single string.
6547 - Added gnutls_openpgp_extract_key_name_string() which returns
6548   an openpgp user ID in a single string.
6549 - Added gnutls_x509_extract_certificate_ca_status() which returns
6550   the CA status of the given certificate.
6551 - Added SRP-6 support. Follows draft-ietf-tls-srp-04.
6552 - If libtasn1 is not present in the system, it is included in 
6553   the main gnutls library.
6554 - If liblzo is present in the system, then the included minilzo
6555   will not be used, and libgnutls-extra will depend on liblzo.
6556 - GNUTLS_E_PARSING_ERROR error code was replaced by GNUTLS_E_BASE64_DECODING_ERROR, 
6557   and GNUTLS_E_SRP_PWD_PARSING_ERROR. GNUTLS_E_ASCII_ARMOR_ERROR was also 
6558   replaced by GNUTLS_E_BASE64_DECODING_ERROR.
6560 * Version 0.6.0 (2002-12-08)
6561 - Added "gnutls/compat4.h" header. This is included in gnutls.h
6562   to emulate the old 0.4.x API.
6563 - Example programs are now stored in doc/examples/
6564 - Several improvements and updates in the documentation.
6565 - Added the certificate authenticated SRP cipher suites.
6566 - gnutls_x509_extract_certificate_dn_string() was updated to return
6567   an RFC2253 conforming string.
6568 - Added the SRP related functions:
6569    gnutls_srp_verifier()
6570    gnutls_srp_base64_encode()
6571    gnutls_srp_base64_decode()
6572 - Added the function gnutls_srp_set_server_credentials_function()
6573   to allow retrieving SRP parameters from an external backend - other
6574   than password files.
6575 - Added the function gnutls_openpgp_set_recv_key_function()
6576   which can be used to set a callback, to get OpenPGP keys.
6577 - Exported the functions:
6578    gnutls_malloc()
6579    gnutls_free()
6580   which should be used by callback functions.
6581 - Changed the semantics of gnutls_pem_base64_encode_alloc()
6582   and gnutls_pem_base64_decode_alloc(). In the default case
6583   were the gnutls library is used with malloc/realloc/free,
6584   these are binary compatible.
6586 * Version 0.5.11 (2002-11-05)
6587 - Some fixes in 'gnutls-cli' client program to prevent some segmentation 
6588   faults at exit.
6589 - Example programs found in the documentation can now be generated by
6590   running "make examples" in doc/tex directory.
6591 - Added more descriptive error strings, to gnutls_strerror().
6592 - Documented error codes, and the function reference list is now sorted.
6593 - Optimized buffering code.
6594 - gnutls_x509_extract_certificate_dn_string() was rewritten.
6595 - Added GNUTLS_E_SHORT_MEMORY_BUFFER error code, which is returned in the
6596   case where the memory buffer provided is not long enough.
6597 - Depends on the new OpenCDK 0.3.2.
6599 * Version 0.5.10 (2002-10-13)
6600 - Updated documentation.
6601 - Added server name extension. This allows clients to specify the
6602   name of the server they connect to. Useful to HTTPS.
6603 - Several corrections in the code base, mostly in signed/unsigned,
6604   checkings.
6606 * Version 0.5.9 (2002-10-10)
6607 - Corrected some code which worked fine in gcc 3.2, but not with any
6608   other compiler.
6609 - Updated 'gnutls-cli' with the '--starttls' option, to allow testing
6610   starttls implementations.
6611 - Added gnutls_x509_extract_key_pk_algorithm() function which extracts
6612   the private key type, of a DER encoded key.
6613 - Added gnutls_x509_extract_certificate_dn_string() which returns the 
6614   certificate's distinguished name in a single string.
6615 - Added gnutls_set_default_priority() and gnutls_set_default_export_priority()
6616   functions, to avoid calling all the *_priority() functions if the defaults
6617   are acceptable.
6618 - Added int gnutls_x509_check_certificates_hostname() which check whether
6619   the given hostname matches the owner of the given X.509 certificate.
6621 * Version 0.5.8 (2002-09-25)
6622 - Updated documentation.
6623 - Added gnutls_record_get_direction() which replaces the obsolete
6624   gnutls_handshake_get_direction().
6625 - Added function to convert error codes to alert descriptions
6626 - Added LZO compression
6628 * Version 0.5.7 (2002-09-11)
6629 - Some fixes in the memory allocation functions (realloc).
6630 - Improved the string functions used in XML certificate generation.
6631 - Removed dependency on libgdbm.
6632 - Corrected bug in gnutls_dh_params_set() which affected
6633   gnutls_dh_params_deinit().
6634 - Corrected bug in session resuming code in server side.
6636 * Version 0.5.6 (2002-09-06)
6637 - Corrected bugs in SRP implementation, which prevented gnutls 
6638   to interoperate with other implementations. (interoperability testing
6639   was done by David Taylor)
6640 - Corrected bug in cert_type extension.
6641 - Corrected extension type checks which used an 8 bit extension size,
6642   instead of 16 bits.
6643 - Added versioning in the XML output of certificate functions.
6644 - Removed the X.509 test suite.
6646 * Version 0.5.5 (2002-09-03)
6647 - Updated the SRP implementation to the latest draft. The blowfish
6648   crypt implementation was removed, since the new draft does not allow
6649   other hash algorithms except for the srpsha. 
6650 - Renamed all the constructed types in order to have more consistent
6651   names. 
6652 - Improved the certificate and key read functions. Now they can read 
6653   the certificate and the private key from the same file.
6654 - Updated and corrected documentation.
6656 * Version 0.5.4 (2002-08-27)
6657 - Fixes in TLS 1.0 PRF and SSL3 random functions.
6658 - gnutls_handshake_set_exportable_detection() was obsoleted.
6659 - Added gnutls_openpgp_extract_key_id() which returns the key ID.
6660 - Corrected bug in DHE key exchange
6661 - Added support for temporary RSA keys which are needed for the
6662   export cipher suites.
6663 - Added the TLS_RSA_EXPORT_ARCFOUR_40_MD5 ciphersuite.
6665 * Version 0.5.3 (2002-08-23)
6666 - No changes. Replaces the tarball of 0.5.2 which accidentally contained
6667   code from the unstable branch.
6669 * Version 0.5.2 (2002-08-22)
6670 - Added an error code that is returned in clients which connect
6671   to export only servers. This must be enabled using the
6672   gnutls_handshake_set_exportable_detection() function.
6673 - Updated openssl compatibility layer.
6674 - Added gnutls_handshake_get_direction() function which returns
6675   the state of the handshake when interrupted.
6677 * Version 0.5.1 (2002-07-17)
6678 - Corrected the m4 macros which used <gnutls.h> instead of
6679   <gnutls/gnutls.h>
6680 - Documentation fixes
6681 - Added gnutls_transport_set_ptr2() function, which accepts two
6682   different pointers, to be used while receiving, and 
6683   while sending data.
6684 - Semantic changes in gnutls_record_set_max_size(). The requested
6685   size is now immediately enforced at the output buffers.
6686 - gnutls_global_init_extra() now fails if the library versions do
6687   not match.
6688 - Fixes in client and server example programs. Null encryption can
6689   be used in these programs, to assist in debuging.
6690 - Fixes in zlib compression code.
6692 * Version 0.5.0 (2002-07-06)
6693 - Added X.509 certificate tests in tests/ directory
6694 - Removed stubs for SRP and Anonymous authentication. They served
6695   no purpose since they are always included, unless it was requested
6696   not to do so.
6697 - Added gnutls_handshake_set_private_extensions() function. This
6698   function can be used to enable private (gnutls specific) cipher suites
6699   and compression algorithms.
6700 - Added check for C99 macro support by the compiler.
6701 - Added functions gnutls_b64_encode_fmt2() and gnutls_b64_decode_fmt2()
6702 - Added the new libtasn1 library.
6703 - Removed the gdbm backend. Applications are now responsible for the
6704   session resuming backend. The gnutls-serv application contains an
6705   simple example on how to use gdbm for resuming.
6706 - Headers for the gnutls library are now installed in $(includedir)/gnutls
6707 - Added an OpenSSL compatible interface (with some limitations).
6708 - Added functions to convert DER encoded certificates to XML format.
6710 * Version 0.4.4 (2002-06-24)
6711 - Corrected bug in PKCS-1 RSA encryption which prevented gnutls to encrypt
6712   using keys of some specific size.
6714 * Version 0.4.3 (2002-05-23)
6715 - The gnutls-extra library now compiles fine, if the opencdk library is
6716   not present.
6717 - Several bug fixes.
6718 - Added gnutls_global_set_mem_func() function, to set the memory allocation
6719   functions, if other than the defaults are to be used.
6720 - The default memory allocation functions are now the ones in libc.
6722 * Version 0.4.2 (2002-05-21)
6723 - Separated ASN.1 structures parser documentation and TLS library
6724   documentation.
6725 - Added gnutls_handshake_set_rsa_pms() function, which disables the
6726   version check in RSA premaster secret.
6727 - Added gnutls_session_is_resumed() function, which reports if a session
6728   is a resumed one.
6729 - Added gnutls_state_set_ptr() and gnutls_state_get_ptr() functions, to
6730   assist in callback functions.
6731 - Replaced the included 1024 bit prime for Diffie Hellman, with a new
6732   random one.
6733 - Relicensed the library under the GNU Lesser General Public License
6734 - Added gnutls-extra library which contains the GPL covered code of gnutls.
6736 * Version 0.4.1 (2002-04-07)
6737 - Now uses alloca() for temporary variables
6738 - Optimized RSA signing
6739 - Added functions to return the peer's certificate activation and
6740   expiration time.
6741 - Corrected time function's behaviour (the time value returned no longer
6742   relate to local timezone).
6744 * Version 0.4.0 (2002-04-01)
6745 - Added support for RFC2630 (PKCS7) X.509 certificate sets
6746 - Added new functions: gnutls_x509_extract_certificate_pk_algorithm(),
6747   gnutls_openpgp_extract_key_pk_algorithm().
6748 - Several optimizations in the Handshake protocol
6749 - Several optimizations in RSA algorithm
6750 - Unified the return values because of small buffers.
6752 * Version 0.3.92 (2002-03-23)
6753 - Updated documentation
6754 - Combined error codes of ASN.1 parser and gnutls
6755 - Removed GNUTLS_CERT_TRUSTED from the CertificateStatus enumeration
6756 - Added protection against CBC chosen plaintext attack (disabled by default)
6757 - Improved and optimized compression support
6759 * Version 0.3.91 (2002-03-03)
6760 - Added gnutls-cli-debug program
6761 - Corrections in session resumption
6762 - Rehandshake can now handle negotiation of different authentication
6763   type.
6764 - gnutls-cli, gnutls-serv, gnutls-srpcrypt and gnutls-cli-debug are 
6765   now being installed.
6767 * Version 0.3.90 (2002-02-24)
6768 - Handshake messages are not kept in memory any more. Now we use 
6769   less memory during a handshake
6770 - Added support for certificates with DSA parameters
6771 - Added DHE_DSS cipher suites
6772 - Key exchange methods changed so they do not depend on the 
6773   certificate type. Added certificate type negotiation TLS extension.
6774 - Added openpgp key support (EXPERIMENTAL)
6775 - Improved Diffie Hellman key exchange support.
6776 - Bug fixes in the RSA key exchange.
6777 - Added check for the requested TLS extensions
6778 - TLS extensions now use a 16 bit type field.
6779 - Added a minimal string library to assist in ASN.1 parsing
6780 - Changes in ASN.1 parser to work with the new bison
6781 - Added gnutls_x509_extract_subject_alt_name(), which deprecates 
6782   gnutls_x509_extract_subject_dns_name()
6783 - gnutls_x509_set_trust_(file/mem) can now be called multiple times
6784 - gnutls_srp_server_set_cred_file() can now be called multiple times
6786 * Version 0.3.5 (2002-01-25)
6787 - Corrected the RSA key exchange method, to avoid attacks against
6788   PKCS-1 formating.
6790 * Version 0.3.4 (2002-01-20)
6791 - Corrected bugs in DHE_RSA key exchange method
6793 * Version 0.3.3 (2002-01-19)
6794 - Added gnutls_x509pki_verify_certificate()
6795 - Added gnutls_x509pki_set_trust_mem() and gnutls_x509pki_set_key_mem()
6796 - Bug fixes in srpcrypt (based on patch by Marc Huber)
6797 - Bug fixes in the Handshake protocol (based on patch by Guillaume Morin)
6798 - Corrected library versioning
6800 * Version 0.3.2 (2002-01-05)
6801 - Corrected bug which did not allow a client to accept multiple CA names
6802 - Added gnutls_fingerprint()
6803 - Added gnutls_x509pki_extract_certificate_serial()
6804 - Added gnutls_b64_encode_fmt() and gnutls_b64_decode_fmt()
6805 - Corrected behaviour in version advertizing
6806 - Updated documentation
6807 - Prefixed all types in gnutls.h with 'GNUTLS_' to avoid namespace collisions
6809 * Version 0.3.1 (2001-12-21)
6810 - Corrections in the configuration files
6811 - Fixes a bug in anonymous authentication
6813 * Version 0.3.0 (2001-12-17)
6814 - Corrected bug in new integer formatting (now we use the old format again)
6815 - Several corrections and usual cleanups
6817 * Version 0.2.91 (2001-12-10)
6818 - Fixes in MPI handling (fixes possible bug with signed integers)
6819 - Removed name indication extension
6820 - Added gnutls_transport_get_ptr() and gnutls_db_get_ptr()
6821 - Optimizations in server certificate callback.
6822 - Fixes in anonymous authentication
6823 - Corrections in client ciphersuite selection
6825 * Version 0.2.90 (2001-12-07)
6826 - gnutls_handshake(), gnutls_read() etc. functions no longer require
6827   the 'SOCKET cd' argument. This argument is set using the function
6828   gnutls_set_transport_ptr().
6829 - introduced gnutls_x509pki_get_peer_certificate_list(). This function returns
6830   a list containing peer's certificate and issuers DER encoded.
6831 - Updated X.509 certificate handling API
6832 - Added callback to select the server certificate
6833 - More consistent function naming (changes in several function names)
6834 - Buffer overflow checking in ASN.1 structures parser
6835 - Updated documentation
6837 * Version 0.2.11 (2001-11-16)
6838 - Changed the meaning of GNUTLS_E_REHANDSHAKE value. If this value
6839   is returned, then the caller should perform a handshake or send
6840   an alert to the peer.
6841 - Made receive buffer dynamic. Normally if no large chunks are received
6842   it occupies less space.
6843 - Added max_record_size extension
6844 - Bugfixes in session handling
6845 - Improved non blocking IO support in the Handshake Protocol
6846 - Usual bugfixes and cleanups
6847 - Documentation updated (includes ASN.1 documentation)
6849 * Version 0.2.10 (2001-11-05)
6850 - Corrected bugs and improved non blocking IO
6851 - Added hooks to use external database to store sessions
6852 - Usual cleanups
6854 * Version 0.2.9 (2001-10-27)
6855 - AUTH_INFO types and structures were moved to library internals
6856 - AUTH_FAILED is no longer returned in SRP authentication
6857   (any fatal error in SRP means auth failed)
6858 - Introduced GNUTLS_E_INTERRUPTED
6859 - Added support for non blocking IO
6860 - gnutls_recv() and gnutls_send() are now obsolete
6861 - Changed semantics of gnutls_rehandshake()
6863 * Version 0.2.4 (2001-10-12)
6864 - Better handling of X.509 certificate extensions
6865 - Added DHE_RSA ciphersuites
6866 - Updated the Name Indication (dnsname) extension
6867 - Improvements in Diffie Hellman primes handling
6869 * Version 0.2.3 (2001-09-19)
6870 - Memory optimizations in gnutls_recv()
6871 - Fixed several memory leaks
6872 - Added ability to specify callback for x509 client certificate selection
6873 - Better documentation
6875 * Version 0.2.2 (2001-08-21)
6876 - Several bugfixes (library and documentation)
6878 * Version 0.2.1 (2001-08-07)
6879 - SRP fixes
6881 * Version 0.2.0 (2001-08-07)
6882 - Partial support for X.509v3 Certificate extensions.
6883 - Added Internal memory handlers
6884 - Removed gnutls_x509_set_cn()
6885 - Added X.509 client authentication
6886 - Several bug fixes and protocol fixes
6888 * Version 0.1.9 (2001-07-30)
6889 - Corrected bug(s) in ChangeCipherSpec packet (fixes renegotiate)
6890 - SRP is updated to conform to the newest draft.
6891 - Added support for DNSNAME extension.
6892 - Reentracy fixes in ASN.1 Parsing.
6893 - Optimizations in hash/hmac functions
6894 - (Error) message handling has changed
6895 - Better Protocol Version handling
6896 - Added X.509 Certificate Verification
6897 - gnutls_read() semantics are now closer to read(2) - added EOF
6898 - Documented some part of gnutls in doc/tex/ using Latex
6900 * Version 0.1.4 (2001-06-22)
6901 - Corrected (srp) base64 encoding.
6902 - Changed bcrypt algorithm to include username.
6903 - Added RSA Ciphersuites (no certificate checking).
6904 - Fixes in SSL 2.0 client hello parsing.
6905 - Added ASN.1 and DER parsers.
6906 - Bugfixes in session resuming
6907 - Updated Ciphersuite selection algorithm
6908 - Added internal representation of X.509 structures.
6909 - Added global state
6911 * Version 0.1.3 (2001-06-01)
6912 - Updated API (and the way it is documented - we use inline documentation)
6913 - Added function to access alert messages.
6914 - Added support for renegotiating parameters.
6915 - Better and Faster Resume Database handling.
6916 - Several bugfixes
6918 * Version 0.1.2 (2001-05-14)
6919 - Updated API
6920 - Fixes in extension handling
6922 * Version 0.1.1 (2001-05-13)
6923 - Added compatibility with Stanford's libsrp library
6925 * Version 0.1.0 (2001-05-09)
6926 - Added SSL 2.0 client hello support
6927 - GNUTLS is a gnu library
6928 - Added support for TLS extensions.
6929 - Added support for SRP
6931 * Version 0.0.7 (2001-01-11)
6932 - Added server side session resuming (using gdbm)
6933 - Added twofish algorithm
6935 * Version 0.0.6 (2000-12-20)
6936 - Added client side session resuming
6937 - Better documentation (check doc/API)
6938 - Better socket handling (gnutls can be used with select())
6939 - Some primitive support for non blocking IO and socket options has been added.
6941 * Version 0.0.5 (2000-12-07)
6942 - Added Compression (using ZLIB)
6943 - Added SSL 3.0 support
6945 ----------------------------------------------------------------------
6946 Copying and distribution of this file, with or without modification,
6947 are permitted in any medium without royalty provided the copyright
6948 notice and this notice are preserved.