Update Guile bindings to the current OpenPGP API.
[gnutls.git] / NEWS
blob1c6af685290317ca3970d8b92df20c940771ac9d
1 GNU TLS NEWS -- History of user-visible changes.                -*- outline -*-
2 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Simon Josefsson
3 Copyright (C) 2000, 2001, 2002, 2003, 2004 Nikos Mavrogiannopoulos
4 See the end for copying conditions.
6 * Version 2.9.7 (unreleased)
8 ** API and ABI modifications:
9 No changes since last version.
11 * Version 2.9.6 (released 2009-09-22)
13 ** libgnutls: Enable Camellia ciphers by default.
15 ** API and ABI modifications:
16 No changes since last version.
18 * Version 2.9.5 (released 2009-09-10)
20 ** libgnutls: Add new functions to extract X.509 Issuer Alternative Names.
21 The new functions are gnutls_x509_crt_get_issuer_alt_name2,
22 gnutls_x509_crt_get_issuer_alt_name, and
23 gnutls_x509_crt_get_issuer_alt_othername_oid.  Contributed by Brad
24 Hards <bradh@frogmouth.net>.
26 ** API and ABI modifications:
27 gnutls_x509_crt_get_issuer_alt_name2: ADDED.
28 gnutls_x509_crt_get_issuer_alt_name: ADDED.
29 gnutls_x509_crt_get_issuer_alt_othername_oid: ADDED.
31 * Version 2.9.4 (released 2009-09-03)
33 ** libgnutls: Client-side TLS 1.2 and SHA-256 ciphersuites now works.
34 The new supported ciphersuites are AES-128/256 in CBC mode with
35 ANON-DH/RSA/DHE-DSS/DHE-RSA.  Contributed by Daiki Ueno.  Further,
36 SHA-256 is now the preferred default MAC (however it is only used with
37 TLS 1.2).
39 ** libgnutls: Make OpenPGP hostname checking work again.
40 The patch to resolve the X.509 CN/SAN issue accidentally broken
41 OpenPGP hostname comparison.
43 ** libgnutls: When printing X.509 certificates, handle XMPP SANs better.
44 Reported by Howard Chu <hyc@symas.com> in
45 <https://savannah.gnu.org/support/?106975>.
47 ** Fix use of deprecated types internally.
48 Use of deprecated types in GnuTLS from now on will lead to a compile
49 error, to prevent this from happening again.
51 ** API and ABI modifications:
52 No changes since last version.
54 * Version 2.9.3 (released 2009-08-19)
56 ** libgnutls: Support for TLS tickets was contributed by Daiki Ueno.
57 The new APIs are gnutls_session_ticket_enable_client,
58 gnutls_session_ticket_enable_server, and
59 gnutls_session_ticket_key_generate.
61 ** gnutls-cli, gnutls-serv: New parameter --noticket to disable TLS tickets.
63 ** API and ABI modifications:
64 gnutls_session_ticket_key_generate: ADDED.
65 gnutls_session_ticket_enable_client: ADDED.
66 gnutls_session_ticket_enable_server: ADDED.
68 * Version 2.9.2 (released 2009-08-14)
70 ** libgnutls: Fix problem with NUL bytes in X.509 CN and SAN fields.
71 By using a NUL byte in CN/SAN fields, it was possible to fool GnuTLS
72 into 1) not printing the entire CN/SAN field value when printing a
73 certificate and 2) cause incorrect positive matches when matching a
74 hostname against a certificate.  Some CAs apparently have poor
75 checking of CN/SAN values and issue these (arguable invalid)
76 certificates.  Combined, this can be used by attackers to become a
77 MITM on server-authenticated TLS sessions.  The problem is mitigated
78 since attackers needs to get one certificate per site they want to
79 attack, and the attacker reveals his tracks by applying for a
80 certificate at the CA.  It does not apply to client authenticated TLS
81 sessions.  Research presented independently by Dan Kaminsky and Moxie
82 Marlinspike at BlackHat09.  Thanks to Tomas Hoger <thoger@redhat.com>
83 for providing one part of the patch.  [GNUTLS-SA-2009-4] [CVE-2009-2730].
85 ** libgnutls: Fix rare failure in gnutls_x509_crt_import.
86 The function may fail incorrectly when an earlier certificate was
87 imported to the same gnutls_x509_crt_t structure.
89 ** minitasn1: Internal copy updated to libtasn1 v2.3.
91 ** libgnutls: Fix return value of gnutls_certificate_client_get_request_status.
92 Before it always returned false.  Reported by Peter Hendrickson
93 <pdh@wiredyne.com> in
94 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3668>.
96 ** libgnutls: Fix off-by-one size computation error in unknown DN printing.
97 The error resulted in truncated strings when printing unknown OIDs in
98 X.509 certificate DNs.  Reported by Tim Kosse
99 <tim.kosse@filezilla-project.org> in
100 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3651>.
102 ** libgnutls: Fix PKCS#12 decryption from password.
103 The encryption key derived from the password was incorrect for (on
104 average) 1 in every 128 input for random inputs.  Reported by "Kukosa,
105 Tomas" <tomas.kukosa@siemens-enterprise.com> in
106 <http://permalink.gmane.org/gmane.network.gnutls.general/1663>.
108 ** libgnutls: Return correct bit lengths of some MPIs.
109 gnutls_dh_get_prime_bits, gnutls_rsa_export_get_modulus_bits, and
110 gnutls_dh_get_peers_public_bits.  Before the reported value was
111 overestimated.  Reported by Peter Hendrickson <pdh@wiredyne.com> in
112 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3607>.
114 ** libgnutls: Avoid internal error when invoked after GNUTLS_E_AGAIN.
115 Report and patch by Tim Kosse <tim.kosse@filezilla-project.org> in
116 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3671>
118 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3670>.
120 ** libgnutls: Relax checking of required libtasn1/libgcrypt versions.
121 Before we required that the runtime library used the same (or more
122 recent) libgcrypt/libtasn1 as it was compiled with.  Now we just check
123 that the runtime usage is above the minimum required.  Reported by
124 Marco d'Itri <md@linux.it> via Andreas Metzler
125 <ametzler@downhill.at.eu.org> in <http://bugs.debian.org/540449>.
127 ** tests: Added new self-test pkcs12_s2k_pem to detect MPI bit length error.
129 ** tests: Improved test vectors in self-test pkcs12_s2k.
131 ** tests: Added new self-test dn2 to detect off-by-one size error.
133 ** tests: Fix failure in "chainverify" because a certificate have expired.
135 ** API and ABI modifications:
136 No changes since last version.
138 * Version 2.9.1 (released 2009-06-08)
140 ** libgnutls: Fix crash in gnutls_global_init after earlier init/deinit cycle.
141 Forwarded by Martin von Gagern <Martin.vGagern@gmx.net> from
142 <http://bugs.gentoo.org/272388>.
144 ** tests: Added new self-tests init_roundtrip.c to detect previous problem.
146 ** Reduce stack usage for some CRQ functions.
148 ** Doc fixes for CRQ functions.
150 ** API and ABI modifications:
151 No changes since last version.
153 * Version 2.9.0 (released 2009-05-28)
155 ** Doc fixes.
157 ** API and ABI modifications:
158 No changes since last version.
160 * Version 2.8.3 (released 2009-08-13)
162 ** libgnutls: Fix patch for NUL in CN/SAN in last release.
163 Code intended to be removed would lead to an read-out-bound error in
164 some situations.  Reported by Tomas Hoger <thoger@redhat.com>.  A CVE
165 code have been allocated for the vulnerability: [CVE-2009-2730].
167 ** libgnutls: Fix rare failure in gnutls_x509_crt_import.
168 The function may fail incorrectly when an earlier certificate was
169 imported to the same gnutls_x509_crt_t structure.
171 ** libgnutls-extra, libgnutls-openssl: Fix MinGW cross-compiling build error.
173 ** tests: Made self-test mini-eagain take less time.
175 ** doc: Typo fixes.
177 ** API and ABI modifications:
178 No changes since last version.
180 * Version 2.8.2 (released 2009-08-10)
182 ** libgnutls: Fix problem with NUL bytes in X.509 CN and SAN fields.
183 By using a NUL byte in CN/SAN fields, it was possible to fool GnuTLS
184 into 1) not printing the entire CN/SAN field value when printing a
185 certificate and 2) cause incorrect positive matches when matching a
186 hostname against a certificate.  Some CAs apparently have poor
187 checking of CN/SAN values and issue these (arguable invalid)
188 certificates.  Combined, this can be used by attackers to become a
189 MITM on server-authenticated TLS sessions.  The problem is mitigated
190 since attackers needs to get one certificate per site they want to
191 attack, and the attacker reveals his tracks by applying for a
192 certificate at the CA.  It does not apply to client authenticated TLS
193 sessions.  Research presented independently by Dan Kaminsky and Moxie
194 Marlinspike at BlackHat09.  Thanks to Tomas Hoger <thoger@redhat.com>
195 for providing one part of the patch.  [GNUTLS-SA-2009-4].
197 ** libgnutls: Fix return value of gnutls_certificate_client_get_request_status.
198 Before it always returned false.  Reported by Peter Hendrickson
199 <pdh@wiredyne.com> in
200 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3668>.
202 ** libgnutls: Fix off-by-one size computation error in unknown DN printing.
203 The error resulted in truncated strings when printing unknown OIDs in
204 X.509 certificate DNs.  Reported by Tim Kosse
205 <tim.kosse@filezilla-project.org> in
206 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3651>.
208 ** libgnutls: Return correct bit lengths of some MPIs.
209 gnutls_dh_get_prime_bits, gnutls_rsa_export_get_modulus_bits, and
210 gnutls_dh_get_peers_public_bits.  Before the reported value was
211 overestimated.  Reported by Peter Hendrickson <pdh@wiredyne.com> in
212 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3607>.
214 ** libgnutls: Avoid internal error when invoked after GNUTLS_E_AGAIN.
215 Report and patch by Tim Kosse <tim.kosse@filezilla-project.org> in
216 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3671>
218 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3670>.
220 ** libgnutls: Relax checking of required libtasn1/libgcrypt versions.
221 Before we required that the runtime library used the same (or more
222 recent) libgcrypt/libtasn1 as it was compiled with.  Now we just check
223 that the runtime usage is above the minimum required.  Reported by
224 Marco d'Itri <md@linux.it> via Andreas Metzler
225 <ametzler@downhill.at.eu.org> in <http://bugs.debian.org/540449>.
227 ** minitasn1: Internal copy updated to libtasn1 v2.3.
229 ** tests: Fix failure in "chainverify" because a certificate have expired.
231 ** API and ABI modifications:
232 No changes since last version.
234 * Version 2.8.1 (released 2009-06-10)
236 ** libgnutls: Fix crash in gnutls_global_init after earlier init/deinit cycle.
237 Forwarded by Martin von Gagern <Martin.vGagern@gmx.net> from
238 <http://bugs.gentoo.org/272388>.
240 ** libgnutls: Fix PKCS#12 decryption from password.
241 The encryption key derived from the password was incorrect for (on
242 average) 1 in every 128 input for random inputs.  Reported by "Kukosa,
243 Tomas" <tomas.kukosa@siemens-enterprise.com> in
244 <http://permalink.gmane.org/gmane.network.gnutls.general/1663>.
246 ** API and ABI modifications:
247 No changes since last version.
249 * Version 2.8.0 (released 2009-05-27)
251 ** doc: Fix gnutls_dh_get_prime_bits.  Fix error codes and algorithm lists.
253 ** Major changes compared to the v2.4 branch:
255 *** lib: Linker version scripts reduces number of exported symbols.
257 *** lib: Limit exported symbols on systems without LD linker scripts.
259 *** libgnutls: Fix namespace issue with version symbols.
261 *** libgnutls: Add functions to verify a hash against a certificate.
262 gnutls_x509_crt_verify_hash: ADDED
263 gnutls_x509_crt_get_verify_algorithm: ADDED
265 *** gnutls-serv: Listen on all interfaces, including both IPv4 and IPv6.
267 *** i18n: The GnuTLS gettext domain is now 'libgnutls' instead of 'gnutls'.
269 *** certtool: Query for multiple dnsName subjectAltName in interactive mode.
271 *** gnutls-cli: No longer accepts V1 CAs by default during X.509 chain verify.
273 *** gnutls-serv: No longer disable MAC padding by default.
275 *** gnutls-cli: Certificate information output format changed.
277 *** libgnutls: New priority strings %VERIFY_ALLOW_SIGN_RSA_MD5
278 *** and %VERIFY_ALLOW_X509_V1_CA_CRT.
280 *** libgnutls: gnutls_x509_crt_print prints signature algorithm in oneline mode.
282 *** libgnutls: gnutls_openpgp_crt_print supports oneline mode.
284 *** libgnutls: gnutls_handshake when sending client hello during a
285 rehandshake, will not offer a version number larger than the current.
287 *** libgnutls: New interface to get key id for certificate requests.
288 gnutls_x509_crq_get_key_id: ADDED.
290 *** libgnutls: gnutls_x509_crq_print will now also print public key id.
292 *** certtool: --verify-chain now prints results of using library verification.
294 *** libgnutls: Libgcrypt initialization changed.
296 *** libgnutls: Small byte reads via gnutls_record_recv() optimized.
298 *** gnutls-cli: Return non-zero exit code on error conditions.
300 *** gnutls-cli: Corrected bug which caused a rehandshake request to be ignored.
302 *** certtool: allow setting arbitrary key purpose object identifiers.
304 *** libgnutls: Change detection of when to use a linker version script.
305 Use --enable-ld-version-script or --disable-ld-version-script to
306 override auto-detection logic.
308 *** Fix warnings and build GnuTLS with more warnings enabled.
310 *** New API to set X.509 credentials from PKCS#12 memory structure.
311 gnutls_certificate_set_x509_simple_pkcs12_mem: ADDED
313 *** Old libgnutls.m4 and libgnutls-config scripts removed.
314 Please use pkg-config instead.
316 *** libgnutls: Added functions to handle CRL extensions.
317 gnutls_x509_crl_get_authority_key_id: ADDED
318 gnutls_x509_crl_get_number: ADDED
319 gnutls_x509_crl_get_extension_oid: ADDED
320 gnutls_x509_crl_get_extension_info: ADDED
321 gnutls_x509_crl_get_extension_data: ADDED
322 gnutls_x509_crl_set_authority_key_id: ADDED
323 gnutls_x509_crl_set_number: ADDED
325 *** libgnutls: Added functions to handle X.509 extensions in Certificate
326 Requests.
327 gnutls_x509_crq_get_key_rsa_raw: ADDED
328 gnutls_x509_crq_get_attribute_info: ADDED
329 gnutls_x509_crq_get_attribute_data: ADDED
330 gnutls_x509_crq_get_extension_info: ADDED
331 gnutls_x509_crq_get_extension_data: ADDED
332 gnutls_x509_crq_get_key_usage: ADDED
333 gnutls_x509_crq_get_basic_constraints: ADDED
334 gnutls_x509_crq_get_subject_alt_name: ADDED
335 gnutls_x509_crq_get_subject_alt_othername_oid: ADDED
336 gnutls_x509_crq_get_extension_by_oid: ADDED
337 gnutls_x509_crq_set_subject_alt_name: ADDED
338 gnutls_x509_crq_set_basic_constraints: ADDED
339 gnutls_x509_crq_set_key_usage: ADDED
340 gnutls_x509_crq_get_key_purpose_oid: ADDED
341 gnutls_x509_crq_set_key_purpose_oid: ADDED
342 gnutls_x509_crq_print: ADDED
343 gnutls_x509_crt_set_crq_extensions: ADDED
345 *** certtool: Print and set CRL and CRQ extensions.
347 *** minitasn1: Internal copy updated to libtasn1 v2.1.
349 *** examples: Now released into the public domain.
351 *** The Texinfo and GTK-DOC manuals were improved.
353 *** Several self-tests were added and others improved.
355 *** API/ABI changes in GnuTLS 2.8 compared to GnuTLS 2.6.x
356 No offically supported interfaces have been modified or removed.  The
357 library should be completely backwards compatible on both the source
358 and binary level.
360 The shared library no longer exports some symbols that have never been
361 officially supported, i.e., not mentioned in any of the header files.
362 The symbols are:
364   _gnutls*
365   gnutls_asn1_tab
366   
367 Normally when symbols are removed, the shared library version has to
368 be incremented.  This leads to a significant cost for everyone using
369 the library.  Because none of the above symbols have ever been
370 intended for use by well-behaved applications, we decided that the it
371 would be better for those applications to pay the price rather than
372 incurring problems on the majority of applications.
374 If it turns out that applications have been using unofficial
375 interfaces, we will need to release a follow-on release on the v2.8
376 branch to exports additional interfaces.  However, initial testing
377 suggests that few if any applications have been using any of the
378 internal symbols.
380 Although not a new change compared to 2.6.x, we'd like to remind you
381 interfaces have been modified so that X.509 chain verification now
382 also checks activation/expiration times on certificates.  The affected
383 functions are:
385 gnutls_x509_crt_list_verify: CHANGED, checks activation/expiration times.
386 gnutls_certificate_verify_peers: Likewise.
387 gnutls_certificate_verify_peers2: Likewise.
388 GNUTLS_CERT_NOT_ACTIVATED: ADDED.
389 GNUTLS_CERT_EXPIRED: ADDED.
390 GNUTLS_VERIFY_DISABLE_TIME_CHECKS: ADDED.
392 This change in behaviour was made during the GnuTLS 2.6.x cycle, and
393 we gave our rationale for it in earlier release notes.
395 The following symbols have been added to the library:
397 gnutls_certificate_set_x509_simple_pkcs12_mem: ADDED
398 gnutls_x509_crl_get_authority_key_id: ADDED
399 gnutls_x509_crl_get_extension_data: ADDED
400 gnutls_x509_crl_get_extension_info: ADDED
401 gnutls_x509_crl_get_extension_oid: ADDED
402 gnutls_x509_crl_get_number: ADDED
403 gnutls_x509_crl_set_authority_key_id: ADDED
404 gnutls_x509_crl_set_number: ADDED
405 gnutls_x509_crq_get_attribute_data: ADDED
406 gnutls_x509_crq_get_attribute_info: ADDED
407 gnutls_x509_crq_get_basic_constraints: ADDED
408 gnutls_x509_crq_get_extension_by_oid: ADDED
409 gnutls_x509_crq_get_extension_data: ADDED
410 gnutls_x509_crq_get_extension_info: ADDED
411 gnutls_x509_crq_get_key_id: ADDED.
412 gnutls_x509_crq_get_key_purpose_oid: ADDED
413 gnutls_x509_crq_get_key_rsa_raw: ADDED
414 gnutls_x509_crq_get_key_usage: ADDED
415 gnutls_x509_crq_get_subject_alt_name: ADDED
416 gnutls_x509_crq_get_subject_alt_othername_oid: ADDED
417 gnutls_x509_crq_print: ADDED
418 gnutls_x509_crq_set_basic_constraints: ADDED
419 gnutls_x509_crq_set_key_purpose_oid: ADDED
420 gnutls_x509_crq_set_key_usage: ADDED
421 gnutls_x509_crq_set_subject_alt_name: ADDED
422 gnutls_x509_crt_get_verify_algorithm: ADDED
423 gnutls_x509_crt_set_crq_extensions: ADDED
424 gnutls_x509_crt_verify_hash: ADDED
426 The following interfaces have been added to the header files:
428 GNUTLS_VERSION: ADDED, replaces LIBGNUTLS_VERSION.
429 GNUTLS_VERSION_MAJOR: ADDED, replaces LIBGNUTLS_VERSION_MAJOR.
430 GNUTLS_VERSION_MINOR: ADDED, replaces LIBGNUTLS_VERSION_MINOR.
431 GNUTLS_VERSION_PATCH: ADDED, replaces LIBGNUTLS_VERSION_PATCH.
432 GNUTLS_VERSION_NUMBER: ADDED, replaces LIBGNUTLS_VERSION_NUMBER.
433 GNUTLS_EXTRA_VERSION: ADDED, replaces LIBGNUTLS_EXTRA_VERSION.
435 The following interfaces have been deprecated:
437 LIBGNUTLS_VERSION: DEPRECATED.
438 LIBGNUTLS_VERSION_MAJOR: DEPRECATED.
439 LIBGNUTLS_VERSION_MINOR: DEPRECATED.
440 LIBGNUTLS_VERSION_PATCH: DEPRECATED.
441 LIBGNUTLS_VERSION_NUMBER: DEPRECATED.
442 LIBGNUTLS_EXTRA_VERSION: DEPRECATED.
444 * Version 2.7.14 (released 2009-05-26)
446 ** libgnutls: Fix namespace issue with version symbol for libgnutls-extra.
447 The symbol LIBGNUTLS_EXTRA_VERSION were renamed to
448 GNUTLS_EXTRA_VERSION.  The old symbol will continue to work but is
449 deprecated.
451 ** Doc: Several typo fixes in documentation.
452 Reported by Peter Hendrickson <pdh@wiredyne.com>.
454 ** API and ABI modifications:
455 GNUTLS_VERSION: ADDED, replaces LIBGNUTLS_EXTRA_VERSION.
456 LIBGNUTLS_EXTRA_VERSION: DEPRECATED.
458 * Version 2.7.13 (released 2009-05-25)
460 ** libgnutls: Fix version of some exported symbols in the shared library.
461 Reported by Andreas Metzler <ametzler@downhill.at.eu.org> in
462 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3576>.
464 ** tests: Handle recently expired certificates in chainverify self-test.
465 Reported by Andreas Metzler <ametzler@downhill.at.eu.org> in
466 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3580>.
468 ** API and ABI modifications:
469 No changes since last version.
471 * Version 2.7.12 (released 2009-05-20)
473 ** gnutls-serv, gnutls-cli-debug: Make them work on Windows.
475 ** tests/crq_key_id: Don't read entropy from /dev/random in self-test.
476 Reported by Andreas Metzler <ametzler@downhill.at.eu.org> in
477 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3570>.
479 ** Fix build failures.
480 Missing sa_family_t and vsnprintf on IRIX.  Reported by "Tom
481 G. Christensen" <tgc@jupiterrise.com> in
482 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3571>.
484 ** minitasn1: Internal copy updated to libtasn1 v2.2.
485 GnuTLS should work fine with libtasn1 v1.x and that is still
486 supported.
488 ** API and ABI modifications:
489 No changes since last version.
491 * Version 2.7.11 (released 2009-05-18)
493 ** minitasn1: Fix build failure when using internal libtasn1.
494 Reported by "Tom G. Christensen" <tgc@jupiterrise.com> in
495 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3548>.
497 ** libgnutls: Fix build failure with --disable-cxx.
498 Reported by Andreas Metzler <ametzler@downhill.at.eu.org> in
499 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3557>.
501 ** gnutls-serv: Fix build failure for unportable NI_MAXHOST/NI_MAXSERV.
502 Reported by "Tom G. Christensen" <tgc@jupiterrise.com> in
503 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3560>
505 ** Building with many warning flags now requires --enable-gcc-warnings.
506 This avoids crying wolf for normal compiles.
508 ** API and ABI modifications:
509 No changes since last version.
511 * Version 2.7.10 (released 2009-05-13)
513 ** examples: Now released into the public domain.
514 This makes the license of the example code compatible with more
515 licenses, including the (L)GPL.
517 ** minitasn1: Internal copy updated to libtasn1 v2.1.
518 GnuTLS should work fine with libtasn1 v1.x and that is still
519 supported.
521 ** libgnutls: Fix crash in signature verification
522 The fix for the CVE-2009-1415 problem wasn't merged completely.
524 ** doc: Fixes for GTK-DOC output.
526 ** API and ABI modifications:
527 No changes since last version.
529 * Version 2.7.9 (released 2009-05-11)
531 ** doc: Fix strings in man page of gnutls_priority_init.
533 ** doc: Fix tables of error codes and supported algorithms.
535 ** Fix build failure when cross-compiled using MinGW.
537 ** Fix build failure when LZO is enabled.
538 Reported by Arfrever Frehtes Taifersar Arahesis
539 <arfrever.fta@gmail.com> in
540 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3522>.
542 ** Fix build failure on systems without AF_INET6, e.g., Solaris 2.6.
543 Reported by "Tom G. Christensen" <tgc@jupiterrise.com> in
544 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3524>.
546 ** Fix warnings in self-tests.
548 ** API and ABI modifications:
549 No changes since last version.
551 * Version 2.7.8 (released 2009-05-03)
553 ** libgnutls: Fix DSA key generation.
554 Merged from stable branch.  [GNUTLS-SA-2009-2] [CVE-2009-1416]
556 ** libgnutls: Check expiration/activation time on untrusted certificates.
557 Merged from stable branch.  Reported by Romain Francoise
558 <romain@orebokech.com>.  This changes the semantics of
559 gnutls_x509_crt_list_verify, which in turn is used by
560 gnutls_certificate_verify_peers and gnutls_certificate_verify_peers2.
561 We add two new gnutls_certificate_status_t codes for reporting the new
562 error condition, GNUTLS_CERT_NOT_ACTIVATED and GNUTLS_CERT_EXPIRED.
563 We also add a new gnutls_certificate_verify_flags flag,
564 GNUTLS_VERIFY_DISABLE_TIME_CHECKS, that can be used to disable the new
565 behaviour.  [GNUTLS-SA-2009-3] [CVE-2009-1417]
567 ** lib: Linker version scripts reduces number of exported symbols.
568 The linker version script now lists all exported ABIs explicitly, to
569 avoid accidentally exporting unintended functions.  Compared to
570 before, most symbols beginning with _gnutls* are no longer exported.
571 These functions have never been intended for use by applications, and
572 there were no prototypes for these function in the public header
573 files.  Thus we believe it is possible to do this without incrementing
574 the library ABI version which normally has to be done when removing an
575 interface.
577 ** lib: Limit exported symbols on systems without LD linker scripts.
578 Before all symbols were exported.  Now we limit the exported symbols
579 to (for libgnutls and libgnutls-extra) gnutls* and (for libgnutls)
580 _gnutls*.  This is a superset of the actual supported ABI, but still
581 an improvement compared to before.  This is implemented using Libtool
582 -export-symbols-regex.  It is more portable than linker version
583 scripts.
585 ** libgnutls: Incremented CURRENT/AGE libtool version to reflect new symbols.
586 This should have been done in the last release.
588 ** gnutls-serv: Listen on all interfaces, including both IPv4 and IPv6.
589 Reported by Peter Hendrickson <pdh@wiredyne.com> in
590 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3476>.
592 ** doc: Improved sections for the info manual.
593 We now follow the advice given by the texinfo manual on which
594 directory categories to use.  In particular, libgnutls moved from the
595 'GNU Libraries' section to the 'Software libraries' and the command
596 line tools moved from 'Network Applications' to 'System
597 Administration'.
599 ** API and ABI modifications:
600 gnutls_x509_crt_list_verify: CHANGED, checks activation/expiration times.
601 gnutls_certificate_verify_peers: Likewise.
602 gnutls_certificate_verify_peers2: Likewise.
603 GNUTLS_CERT_NOT_ACTIVATED: ADDED.
604 GNUTLS_CERT_EXPIRED: ADDED.
605 GNUTLS_VERIFY_DISABLE_TIME_CHECKS: ADDED.
607 * Version 2.7.7 (released 2009-04-20)
609 ** libgnutls: Applied patch by Cedric Bail to add functions
610 gnutls_x509_crt_verify_hash() and gnutls_x509_crt_get_verify_algorithm().
612 ** gnutls.pc: Add -ltasn1 to 'pkg-config --libs --static gnutls' output.
613 Reported by Andreas Metzler <ametzler@downhill.at.eu.org> in
614 <http://article.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3467>.
616 ** minitasn1: Internal copy updated to libtasn1 v1.8.
617 GnuTLS is also internally ready to be used with libtasn1 v2.0.
619 ** doc: Fix build failure of errcodes/printlist.
620 Reported by Roman Bogorodskiy <novel@FreeBSD.org> in
621 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3435>.
623 ** i18n: The GnuTLS gettext domain is now 'libgnutls' instead of 'gnutls'.
624 It is currently only used by the core library.  This will enable a new
625 domain 'gnutls' for translations of the command line tools.
627 ** Corrected possible memory corruption on signature verification failure. 
628 Reported by Miroslav Kratochvil <exa.exa@gmail.com>
630 ** API and ABI modifications:
631 gnutls_x509_crt_verify_hash: ADDED
632 gnutls_x509_crt_get_verify_algorithm: ADDED
634 * Version 2.7.6 (released 2009-02-27)
636 ** certtool: Query for multiple dnsName subjectAltName in interactive mode.
637 This applies both to generating certificates and certificate requests.
639 ** pkix.asn: Removed unneeded definitions to reduce memory usage.
641 ** gnutls-cli: No longer accepts V1 CAs by default during X.509 chain verify.
642 Use --priority NORMAL:%VERIFY_ALLOW_X509_V1_CA_CRT to permit V1 CAs to
643 be used for chain verification.
645 ** gnutls-serv: No longer disable MAC padding by default.
646 Use --priority NORMAL:%COMPAT to disable MAC padding again.
648 ** gnutls-cli: Certificate information output format changed.
649 The tool now uses libgnutls' functions to print certificate
650 information.  This avoids code duplication.
652 ** libgnutls: New priority strings %VERIFY_ALLOW_SIGN_RSA_MD5
653 ** and %VERIFY_ALLOW_X509_V1_CA_CRT.
654 They can be used to override the default certificate chain validation
655 behaviour.
657 ** libgnutls: Added %SSL3_RECORD_VERSION priority string that allows to 
658 specify the client hello message record version. Used to overcome buggy 
659 TLS servers. Report by Martin von Gagern.
661 ** libgnutls: gnutls_x509_crt_print prints signature algorithm in oneline mode.
663 ** libgnutls: gnutls_openpgp_crt_print supports oneline mode.
665 ** doc: Update gnutls-cli and gnutls-serv --help output descriptions.
667 ** API and ABI modifications:
668 No changes since last version.
670 * Version 2.7.5 (released 2009-02-06)
672 ** libgnutls: Accept chains where intermediary certs are trusted.
673 Before GnuTLS needed to validate the entire chain back to a
674 self-signed certificate.  GnuTLS will now stop looking when it has
675 found an intermediary trusted certificate.  The new behaviour is
676 useful when chains, for example, contains a top-level CA, an
677 intermediary CA signed using RSA-MD5, and an end-entity certificate.
678 To avoid chain validation errors due to the RSA-MD5 cert, you can
679 explicitly add the intermediary RSA-MD5 cert to your trusted certs.
680 The signature on trusted certificates are not checked, so the chain
681 has a chance to validate correctly.  Reported by "Douglas E. Engert"
682 <deengert@anl.gov> in
683 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3351>.
685 ** libgnutls: result_size in gnutls_hex_encode now holds
686 the size of the result. Report by John Brooks <special@dereferenced.net>.
688 ** libgnutls: gnutls_handshake when sending client hello during a
689 rehandshake, will not offer a version number larger than the current.
690 Reported by Tristan Hill <stan@saticed.me.uk>.
692 ** libgnutls: Permit V1 Certificate Authorities properly.
693 Before they were mistakenly rejected even though
694 GNUTLS_VERIFY_ALLOW_ANY_X509_V1_CA_CRT and/or
695 GNUTLS_VERIFY_ALLOW_X509_V1_CA_CRT were supplied.  Reported by
696 "Douglas E. Engert" <deengert@anl.gov> in
697 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3351>.
699 ** API and ABI modifications:
700 No changes since last version.
702 * Version 2.7.4 (released 2009-01-07)
704 ** libgnutls: deprecate X.509 validation chains using MD5 and MD2 signatures.
705 This is a bugfix -- the previous attempt to do this from internal x509
706 certificate verification procedures did not return the correct value
707 for certificates using a weak hash.  Reported by Daniel Kahn Gillmor
708 <dkg@fifthhorseman.net> in
709 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3332>,
710 debugged and patch by Tomas Mraz <tmraz@redhat.com> and Daniel Kahn
711 Gillmor <dkg@fifthhorseman.net>.
713 ** libgnutls: New interface to get key id for certificate requests.
714 Patch from David Marín Carreño <davefx@gmail.com> in
715 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3321>.
717 ** libgnutls: gnutls_x509_crq_print will now also print public key id.
719 ** certtool: --verify-chain now prints results of using library verification.
720 Earlier, certtool --verify-chain used its own validation algorithm
721 which wasn't guaranteed to give the same result as the libgnutls
722 internal validation algorithm.  Now this command print a new final
723 line with header 'Chain verification output:' that contains the result
724 from using the internal verification algorithm on the same chain.
726 ** tests: Add crq_key_id self-test of gnutls_x509_crq_get_key_id.
728 ** API and ABI modifications:
729 gnutls_x509_crq_get_key_id: ADDED.
731 * Version 2.7.3 (released 2008-12-10)
733 ** libgnutls: Fix chain verification for chains that ends with RSA-MD2 CAs.
734 Reported by Michael Kiefer <Michael-Kiefer@web.de> in
735 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=507633> forwarded by
736 Andreas Metzler <ametzler@downhill.at.eu.org> in
737 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3309>.
739 ** libgnutls: Libgcrypt initialization changed.
740 If libgcrypt has not already been initialized, GnuTLS will now
741 initialize libgcrypt with disabled secure memory.  Initialize
742 libgcrypt explicitly in your application if you want to enable secure
743 memory.  Before GnuTLS initialized libgcrypt to use GnuTLS's memory
744 allocation functions, which doesn't use secure memory, so there is no
745 real change in behaviour.
747 ** libgnutls: Fix memory leak in PSK authentication.
748 Reported by Michael Weiser <michael@weiser.dinsnail.net> in
749 <http://permalink.gmane.org/gmane.network.gnutls.general/1465>.
751 ** libgnutls: Small byte reads via gnutls_record_recv() optimized.
753 ** certtool: Move gcry_control(GCRYCTL_ENABLE_QUICK_RANDOM, 0) call earlier.
754 It needs to be invoked before libgcrypt is initialized.
756 ** gnutls-cli: Return non-zero exit code on error conditions.
758 ** gnutls-cli: Corrected bug which caused a rehandshake request to be ignored.
760 ** tests: Added chainverify self-test that tests X.509 chain verifications.
762 ** API and ABI modifications:
763 No changes since last version.
765 * Version 2.7.2 (released 2008-11-18)
767 ** libgnutls: Fix X.509 certificate chain validation error. [GNUTLS-SA-2008-3]
768 The flaw makes it possible for man in the middle attackers (i.e.,
769 active attackers) to assume any name and trick GNU TLS clients into
770 trusting that name.  Thanks for report and analysis from Martin von
771 Gagern <Martin.vGagern@gmx.net>.  [CVE-2008-4989]
773 Any updates with more details about this vulnerability will be added
774 to <http://www.gnu.org/software/gnutls/security.html>
776 ** libgnutls: Fix namespace issue with version symbols.
777 The symbols LIBGNUTLS_VERSION, LIBGNUTLS_VERSION_MAJOR,
778 LIBGNUTLS_VERSION_MINOR, LIBGNUTLS_VERSION_PATCH, and
779 LIBGNUTLS_VERSION_NUMBER were renamed to GNUTLS_VERSION_NUMBER,
780 GNUTLS_VERSION_MAJOR, GNUTLS_VERSION_MINOR, GNUTLS_VERSION_PATCH, and
781 GNUTLS_VERSION_NUMBER respectively.  The old symbols will continue to
782 work but are deprecated.
784 ** certtool: allow setting arbitrary key purpose object identifiers.
786 ** libgnutls: Fix detection of C99 macros, to make debug logging work again.
788 ** libgnutls: Add missing prototype for gnutls_srp_set_prime_bits.
789 Reported by Kevin Quick <quick@sparq.org> in
790 <https://savannah.gnu.org/support/index.php?106454>.
792 ** libgnutls-extra: Make building with LZO compression work again.
793 Build failure reported by Arfrever Frehtes Taifersar Arahesis
794 <arfrever.fta@gmail.com> in
795 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3194>.
797 ** libgnutls: Change detection of when to use a linker version script.
798 Use --enable-ld-version-script or --disable-ld-version-script to
799 override auto-detection logic.
801 ** doc: Change license on the manual to GFDLv1.3+.
803 ** doc: GTK-DOC fixes for new splitted configuration system.
805 ** doc: Texinfo stylesheet uses white background.
807 ** tests: Add cve-2008-4989.c self-test.
808 Tests regressions of the GNUTLS-SA-2008-3 security problem, and the
809 follow-on problem with crashes on length 1 certificate chains.
811 ** gnulib: Deprecated modules removed.
812 Modules include memchr and memcmp.
814 ** Fix warnings and build GnuTLS with more warnings enabled.
816 ** minitasn1: Internal copy updated to libtasn1 v1.7.
818 ** API and ABI modifications:
819 gnutls_certificate_set_x509_simple_pkcs12_mem: ADDED
820 GNUTLS_VERSION: ADDED, replaces LIBGNUTLS_VERSION.
821 GNUTLS_VERSION_MAJOR: ADDED, replaces LIBGNUTLS_VERSION_MAJOR.
822 GNUTLS_VERSION_MINOR: ADDED, replaces LIBGNUTLS_VERSION_MINOR.
823 GNUTLS_VERSION_PATCH: ADDED, replaces LIBGNUTLS_VERSION_PATCH.
824 GNUTLS_VERSION_NUMBER: ADDED, replaces LIBGNUTLS_VERSION_NUMBER.
825 LIBGNUTLS_VERSION: DEPRECATED.
826 LIBGNUTLS_VERSION_MAJOR: DEPRECATED.
827 LIBGNUTLS_VERSION_MINOR: DEPRECATED.
828 LIBGNUTLS_VERSION_PATCH: DEPRECATED.
829 LIBGNUTLS_VERSION_NUMBER: DEPRECATED.
831 * Version 2.7.1 (released 2008-10-31)
833 ** certtool: print a PKCS #8 key even if it is not encrypted.
835 ** Old libgnutls.m4 and libgnutls-config scripts removed.
836 Please use pkg-config instead.
838 ** Configuration system modified.
839 There is now a configure script in lib/ and libextra/ as well, because
840 gnulib works better with a config.h per gnulib directory.
842 ** API and ABI modifications:
843 No changes since last version.
845 * Version 2.7.0 (released 2008-10-16)
847 ** libgnutls: Added functions to handle CRL extensions.
849 ** libgnutls: Added functions to handle X.509 extensions in Certificate
850 Requests.
852 ** libgnutls: Improved error string for GNUTLS_E_AGAIN.
853 Suggested by "Lavrentiev, Anton (NIH/NLM/NCBI) [C]" <lavr@ncbi.nlm.nih.gov>.
855 ** certtool: Print and set CRL and CRQ extensions.
857 ** libgnutls-extra: Protect internal symbols with static.
858 Fixes problem when linking certtool statically.  Tiny patch from Aaron
859 Ucko <ucko@ncbi.nlm.nih.gov>.
861 ** libgnutls-openssl: fix out of bounds access.
862 Problem in X509_get_subject_name and X509_get_issuer_name.  Tiny patch
863 from Thomas Viehmann <tv@beamnet.de>.
865 ** libgnutlsxx: Define server_session::get_srp_username even if no SRP.
867 ** tests: Make tests compile when using internal libtasn1.
868 Patch by ludo@gnu.org (Ludovic Courtès).
870 ** Changed detection of libtasn1 and libgcrypt to avoid depending on *-config.
871 We now require a libgcrypt that has Camellia constants declared in
872 gcrypt.h, which means v1.3.0 or later.
874 ** API and ABI modifications:
875 gnutls_x509_crl_get_authority_key_id: ADDED
876 gnutls_x509_crl_get_number: ADDED
877 gnutls_x509_crl_get_extension_oid: ADDED
878 gnutls_x509_crl_get_extension_info: ADDED
879 gnutls_x509_crl_get_extension_data: ADDED
880 gnutls_x509_crl_set_authority_key_id: ADDED
881 gnutls_x509_crl_set_number: ADDED
882 gnutls_x509_crq_get_key_rsa_raw: ADDED
883 gnutls_x509_crq_get_attribute_info: ADDED
884 gnutls_x509_crq_get_attribute_data: ADDED
885 gnutls_x509_crq_get_extension_info: ADDED
886 gnutls_x509_crq_get_extension_data: ADDED
887 gnutls_x509_crq_get_key_usage: ADDED
888 gnutls_x509_crq_get_basic_constraints: ADDED
889 gnutls_x509_crq_get_subject_alt_name: ADDED
890 gnutls_x509_crq_get_subject_alt_othername_oid: ADDED
891 gnutls_x509_crq_get_extension_by_oid: ADDED
892 gnutls_x509_crq_set_subject_alt_name: ADDED
893 gnutls_x509_crq_set_basic_constraints: ADDED
894 gnutls_x509_crq_set_key_usage: ADDED
895 gnutls_x509_crq_get_key_purpose_oid: ADDED
896 gnutls_x509_crq_set_key_purpose_oid: ADDED
897 gnutls_x509_crq_print: ADDED
898 gnutls_x509_crt_set_crq_extensions: ADDED
900 * Version 2.6.6 (released 2009-04-30)
902 ** libgnutls: Corrected double free on signature verification failure.
903 Reported by Miroslav Kratochvil <exa.exa@gmail.com>.  See the advisory
904 for more details.  [GNUTLS-SA-2009-1] [CVE-2009-1415]
906 ** libgnutls: Fix DSA key generation.
907 Noticed when investigating the previous GNUTLS-SA-2009-1 problem.  All
908 DSA keys generated using GnuTLS 2.6.x are corrupt.  See the advisory
909 for more details.  [GNUTLS-SA-2009-2] [CVE-2009-1416]
911 ** libgnutls: Check expiration/activation time on untrusted certificates.
912 Reported by Romain Francoise <romain@orebokech.com>.  Before the
913 library did not check activation/expiration times on certificates, and
914 was documented as not doing so.  We have realized that many
915 applications that use libgnutls, including gnutls-cli, fail to perform
916 proper checks.  Implementing similar logic in all applications leads
917 to code duplication.  Hence, we decided to check whether the current
918 time (as reported by the time function) is within the
919 activation/expiration period of certificates when verifying untrusted
920 certificates.
922 This changes the semantics of gnutls_x509_crt_list_verify, which in
923 turn is used by gnutls_certificate_verify_peers and
924 gnutls_certificate_verify_peers2.  We add two new
925 gnutls_certificate_status_t codes for reporting the new error
926 condition, GNUTLS_CERT_NOT_ACTIVATED and GNUTLS_CERT_EXPIRED.  We also
927 add a new gnutls_certificate_verify_flags flag,
928 GNUTLS_VERIFY_DISABLE_TIME_CHECKS, that can be used to disable the new
929 behaviour.
931 More details about the vulnerabilities will be posted at
932 <http://www.gnu.org/software/gnutls/security.html>.
934 ** gnutls-cli, gnutls-cli-debug: Fix AIX build problem.
935 Reported by LAUPRETRE François (P) <francois.laupretre@ratp.fr> in
936 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3468>.
938 ** tests: Fix linking of tests/openpgp/keyring self-test.
939 Reported by Daniel Black in <https://savannah.gnu.org/support/?106543>.
941 ** API and ABI modifications:
942 gnutls_x509_crt_list_verify: CHANGED, checks activation/expiration times.
943 gnutls_certificate_verify_peers: Likewise.
944 gnutls_certificate_verify_peers2: Likewise.
945 GNUTLS_CERT_NOT_ACTIVATED: ADDED.
946 GNUTLS_CERT_EXPIRED: ADDED.
947 GNUTLS_VERIFY_DISABLE_TIME_CHECKS: ADDED.
949 * Version 2.6.5 (released 2009-04-11)
951 ** libgnutls: Added %SSL3_RECORD_VERSION priority string that allows to
952 specify the client hello message record version. Used to overcome buggy
953 TLS servers. Report by Martin von Gagern.
955 ** GnuTLS no longer uses the libtasn1-config script to find libtasn1.
956 Libtasn1 0.3.4 or later is required.  This is to align with the
957 upcoming libtasn1 v2.0 release that doesn't have a libtasn1-script.
959 ** API and ABI modifications:
960 No changes since last version.
962 * Version 2.6.4 (released 2009-02-06)
964 ** libgnutls: Accept chains where intermediary certs are trusted.
965 Before GnuTLS needed to validate the entire chain back to a
966 self-signed certificate.  GnuTLS will now stop looking when it has
967 found an intermediary trusted certificate.  The new behaviour is
968 useful when chains, for example, contains a top-level CA, an
969 intermediary CA signed using RSA-MD5, and an end-entity certificate.
970 To avoid chain validation errors due to the RSA-MD5 cert, you can
971 explicitly add the intermediary RSA-MD5 cert to your trusted certs.
972 The signature on trusted certificates are not checked, so the chain
973 has a chance to validate correctly.  Reported by "Douglas E. Engert"
974 <deengert@anl.gov> in
975 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3351>.
977 ** libgnutls: result_size in gnutls_hex_encode now holds
978 the size of the result. Report by John Brooks <special@dereferenced.net>.
980 ** libgnutls: gnutls_handshake when sending client hello during a
981 rehandshake, will not offer a version number larger than the current.
982 Reported by Tristan Hill <stan@saticed.me.uk>.
984 ** libgnutls: Permit V1 Certificate Authorities properly.
985 Before they were mistakenly rejected even though
986 GNUTLS_VERIFY_ALLOW_ANY_X509_V1_CA_CRT and/or
987 GNUTLS_VERIFY_ALLOW_X509_V1_CA_CRT were supplied.  Reported by
988 "Douglas E. Engert" <deengert@anl.gov> in
989 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3351>.
991 ** libgnutls: deprecate X.509 validation chains using MD5 and MD2 signatures.
992 This is a bugfix -- the previous attempt to do this from internal x509
993 certificate verification procedures did not return the correct value
994 for certificates using a weak hash.  Reported by Daniel Kahn Gillmor
995 <dkg@fifthhorseman.net> in
996 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3332>,
997 debugged and patch by Tomas Mraz <tmraz@redhat.com> and Daniel Kahn
998 Gillmor <dkg@fifthhorseman.net>.
1000 ** libgnutls: Fix compile error with Sun CC.
1001 Reported by Jeff Cai <jeff.cai@sun.com> in
1002 <https://savannah.gnu.org/support/?106549>.
1004 ** API and ABI modifications:
1005 No changes since last version.
1007 * Version 2.6.3 (released 2008-12-12)
1009 ** libgnutls: Fix chain verification for chains that ends with RSA-MD2 CAs.
1010 Reported by Michael Kiefer <Michael-Kiefer@web.de> in
1011 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=507633> forwarded by
1012 Andreas Metzler <ametzler@downhill.at.eu.org> in
1013 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3309>.
1015 ** libgnutls: Fix memory leak in PSK authentication.
1016 Reported by Michael Weiser <michael@weiser.dinsnail.net> in
1017 <http://permalink.gmane.org/gmane.network.gnutls.general/1465>.
1019 ** certtool: Move gcry_control(GCRYCTL_ENABLE_QUICK_RANDOM, 0) call earlier.
1020 It needs to be invoked before libgcrypt is initialized.
1022 ** gnutls-cli: Return non-zero exit code on error conditions.
1024 ** gnutls-cli: Corrected bug which caused a rehandshake request to be ignored.
1026 ** API and ABI modifications:
1027 No changes since last version.
1029 * Version 2.6.2 (released 2008-11-12)
1031 ** libgnutls: Fix crash in X.509 validation code for self-signed certificates.
1032 The patch to fix the security problem GNUTLS-SA-2008-3 introduced a
1033 problem for certificate chains that contained just one self-signed
1034 certificate.  Reported by Michael Meskes <meskes@debian.org> in
1035 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=505279>.
1037 ** API and ABI modifications:
1038 No changes since last version.
1040 * Version 2.6.1 (released 2008-11-10)
1042 ** libgnutls: Fix X.509 certificate chain validation error. [GNUTLS-SA-2008-3]
1043 The flaw makes it possible for man in the middle attackers (i.e.,
1044 active attackers) to assume any name and trick GNU TLS clients into
1045 trusting that name.  Thanks for report and analysis from Martin von
1046 Gagern <Martin.vGagern@gmx.net>.  [CVE-2008-4989]
1048 Any updates with more details about this vulnerability will be added
1049 to <http://www.gnu.org/software/gnutls/security.html>
1051 ** libgnutls: Add missing prototype for gnutls_srp_set_prime_bits.
1052 Reported by Kevin Quick <quick@sparq.org> in
1053 <https://savannah.gnu.org/support/index.php?106454>.
1055 ** libgnutls-extra: Protect internal symbols with static.
1056 Fixes problem when linking certtool statically.  Tiny patch from Aaron
1057 Ucko <ucko@ncbi.nlm.nih.gov>.
1059 ** libgnutls-openssl: Fix patch against X509_get_issuer_name.
1060 It incorrectly returned the subject DN instead of issuer DN in v2.6.0.
1061 Thanks to Thomas Viehmann <tv@beamnet.de> for report.
1063 ** certtool: Print a PKCS #8 key even if it is not encrypted.
1065 ** tests: Make tests compile when using internal libtasn1.
1066 Patch by ludo@gnu.org (Ludovic Courtès).
1068 ** API and ABI modifications:
1069 No changes since last version.
1071 * Version 2.6.0 (released 2008-10-06)
1073 ** libgnutls: Correct printing and parsing of IPv6 addresses.
1075 ** libgnutls-openssl: fix out of bounds access.
1076 Problem in X509_get_subject_name and X509_get_issuer_name.  Tiny patch
1077 from Thomas Viehmann <tv@beamnet.de>.
1079 ** certtool: Use inet_pton for parsing IPv6 addresses.
1081 ** Major changes compared to the v2.4 branch:
1083 *** Added API to replace and update the crypto backend.
1085 *** certtool: can add several subject alternative names via template file.
1087 *** opencdk: Parse (but not decrypt) encrypted secret keys.
1089 *** libgnutls: gnutls_x509_crt_set_subject_alt_name() was added that can
1090 either set or append alternative names. It can also handle binary structures
1091 such as IP addresses.
1093 *** libgnutls: New function to set minimum acceptable SRP bits.
1094 The function is gnutls_srp_set_prime_bits.
1096 *** libgnutls: Add interface to deal with public key and signature algorithms.
1097 The functions are called gnutls_pk_list, gnutls_pk_get_id,
1098 gnutls_sign_list, and gnutls_sign_get_id.
1100 *** libgnutls: New interfaces to get name of public key and signing algorithms.
1101 The functions are gnutls_sign_get_name and gnutls_pk_get_name.
1103 *** libgnutls: New API to get a string corresponding to a error symbol.
1104 The function is gnutls_strerror_name.
1106 *** libgnutls: New API to set the public parameters in a certificate request
1107 *** from a private key.
1108 The function is gnutls_x509_crq_set_key_rsa_raw.
1110 *** libgnutls: New API to set a callback to extract TLS Finished data.
1111 The function to register is gnutls_session_set_finished_function and
1112 it takes a callback of the gnutls_finished_callback_func type.
1114 *** libgnutls: Fix namespace problem with TLS_MASTER_SIZE and TLS_RANDOM_SIZE.
1116 *** libgnutls: New interface to register a new TLS extension handler.
1117 The new function gnutls_ext_register can be used to register handlers
1118 for specific TLS extension types.  The callback functions have the new
1119 types gnutls_ext_recv_func and gnutls_ext_send_func.  A type to
1120 classify TLS extensions, gnutls_ext_parse_type_t, has been added as
1121 well.
1123 *** libgnutls-extra: Add function to work with Libgcrypt in FIPS mode.
1124 The function is gnutls_register_md5_handler.  When libgcrypt is in
1125 FIPS mode, MD5 is disabled, but TLS normally requires use of MD5 in
1126 the PRF.
1128 *** API/ABI changes in GnuTLS 2.6
1129 No functions have been removed or modified.  The library should be
1130 fully backwards compatible on both the source and binary level.
1132 A new header file <gnutls/crypto.h> have been added.  It contains
1133 definitions related to replacing the internal crypto functionality.
1134 All definitions and the header itself is experimental but supported.
1136 We have realized that the symbols TLS_MASTER_SIZE and TLS_RANDOM_SIZE
1137 does not use the normal namespace.  We have added GNUTLS_MASTER_SIZE
1138 and GNUTLS_RANDOM_SIZE, but the old symbols are still defined.
1140 The following functions have been added to libgnutls:
1142 GNUTLS_MASTER_SIZE
1143 GNUTLS_RANDOM_SIZE
1144 gnutls_crypto_bigint_register2
1145 gnutls_crypto_cipher_register2
1146 gnutls_crypto_digest_register2
1147 gnutls_crypto_mac_register2
1148 gnutls_crypto_pk_register2
1149 gnutls_crypto_rnd_register2
1150 gnutls_crypto_single_cipher_register2
1151 gnutls_crypto_single_digest_register2
1152 gnutls_crypto_single_mac_register2
1153 gnutls_ext_register
1154 gnutls_pk_get_id
1155 gnutls_pk_get_name
1156 gnutls_pk_list
1157 gnutls_session_set_finished_function
1158 gnutls_sign_get_id
1159 gnutls_sign_get_name
1160 gnutls_sign_list
1161 gnutls_srp_set_prime_bits:
1162 gnutls_strerror_name
1163 gnutls_x509_crq_set_key_rsa_raw
1164 gnutls_x509_crt_set_crl_dist_points2
1165 gnutls_x509_crt_set_subject_alt_name
1167 The following functions have been added to libgnutls-extra:
1169 gnutls_register_md5_handler
1171 ** API and ABI modifications:
1172 No changes since last version.
1174 * Version 2.5.9 (released 2008-09-29)
1176 ** libgnutls: Fix several memory leaks.
1177 Reported by Sam Varshavchik <mrsam@courier-mta.com>.
1179 ** libgnutls: Fix buffer overrun in gnutls_x509_crt_list_import.
1180 Report and patch by Jonathan Manktelow.
1182 ** libgnutls: crypto.h gnutls_pk_params_st changes allocation strategy.
1183 The parameters are now allocated in the structure itself.
1185 ** doc: Texinfo HTML manual uses a stylesheet to improve readability.
1187 ** tests: Scripts now use EXEEXT properly.
1188 Modern libtool doesn't create wrapper script, so the self tests need
1189 to invoke certtool.exe under MinGW32+Wine.
1191 ** Uses autoconf 2.63, automake 1.10.1, libtool 2.2.6a.
1192 Automake warnings are now also enabled.
1194 ** API and ABI modifications:
1195 gnutls_pk_params_st: MODIFIED
1197 * Version 2.5.8 (released 2008-09-21)
1199 ** certtool: updated so it can add several subject alternative names using
1200 the template file.
1202 ** libgnutls: gnutls_x509_crt_set_subject_alt_name() was added that can
1203 either set or append alternative names. It can also handle binary structures
1204 such as IP addresses.
1206 ** libgnutls: Fix crash in hashing code when using non-libgcrypt handlers.
1208 ** libgnutls: New function to set minimum acceptable SRP bits.
1209 The function is gnutls_srp_set_prime_bits.  Tiny patch by Kevin Quick
1210 <quick@sparq.org> in <https://savannah.gnu.org/support/index.php?106454>.
1212 ** libgnutls: Check for overflows in gnutls_calloc and gnutls_secure_calloc.
1213 Also fix overflows in calls to those functions.  Reported by Werner
1214 Koch <wk@gnupg.org>.
1216 ** libgnutls-extra: Add function to work with Libgcrypt in FIPS mode.
1217 The function is gnutls_register_md5_handler.  When libgcrypt is in
1218 FIPS mode, MD5 is disabled, but TLS normally requires use of MD5 in
1219 the PRF.
1221 ** Opencdk: Add calls to gnutls_assert to ease debugging.
1223 ** Indent code.
1225 ** API and ABI modifications:
1226 gnutls_srp_set_prime_bits: ADDED
1227 gnutls_register_md5_handler: ADDED
1228 gnutls_x509_crt_set_crl_dist_points2: ADDED
1229 gnutls_x509_crt_set_subject_alt_name: ADDED
1231 * Version 2.5.7 (released 2008-09-16)
1233 ** libgnutls: New interfaces to get name of public key and signing algorithms.
1234 The functions are gnutls_sign_get_name and gnutls_pk_get_name.
1236 ** libgnutls: Don't crash when gnutls_credentials_set is called twice.
1238 ** libgnutls: Fix libgnutls shared library version.
1239 It wasn't properly incremented after adding symbols in the last
1240 release.
1242 ** manual: Now mention supported public key and public key signing algorithms.
1244 ** tests/openssl: initialize gnutls before use.
1246 ** tests/setcredcrash: New test to catch regressions of gnutls_credentials_set.
1248 ** GTK-DOC manual: mention new symbols in 2.6.x.  Mention crypto.h functions.
1250 ** API and ABI modifications:
1251 gnutls_sign_get_name: ADDED
1252 gnutls_pk_get_name: ADDED
1254 * Version 2.5.6 (released 2008-09-08)
1256 ** libgnutls: Add interface to deal with public key and signature algorithms.
1257 The functions are called gnutls_pk_list, gnutls_pk_get_id,
1258 gnutls_sign_list, and gnutls_sign_get_id.  Suggested by Sam
1259 Varshavchik <mrsam@courier-mta.com>.
1261 ** libgnutls: Refactor and clean up some code.
1263 ** libgnutls: Fix compile error with Sun CC.
1265 ** gnutls-cli: Improve --list output to include public key and signature algs.
1267 ** gnutls-cli, gnutls-serv: Remove --copyright parameter.
1268 Use standard --version to get license info.
1270 ** gnutls-cli.1: Document all new parameters.
1271 Thanks to James Westby <jw+debian@jameswestby.net>.
1273 ** tests: New self-test pgps2kgnu to test parsing of encrypted secrets.
1274 Contributed by Daniel Kahn Gillmor <dkg-debian.org@fifthhorseman.net>.
1276 ** API and ABI modifications:
1277 gnutls_pk_list: ADDED
1278 gnutls_pk_get_id: ADDED
1279 gnutls_sign_list: ADDED
1280 gnutls_sign_get_id: ADDED
1282 * Version 2.5.5 (released 2008-08-29)
1284 ** libgnutls: New API to get a string corresponding to a error symbol.
1285 The function is gnutls_strerror_name.
1287 ** libgnutls: Fix include paths so that building with internal libtasn1 works.
1288 Reported by "jth.net ApS" <info@jth.net>.
1290 ** libgnutls: Fix segmentation fault when generating private keys.
1291 Reported by Daniel Kahn Gillmor <dkg-debian.org@fifthhorseman.net>.
1293 ** libgnutls: Remove code to import certificate chains in PKCS#7 format.
1294 The code has not worked since v0.9.0 and apparently nobody has missed
1295 it, so we decided to remove the code rather than fix it.  If you have
1296 old certificate chains stored in PKCS#7 format, you can convert them
1297 to a list of PEM certificates by using 'certtool --p7-info'.  Reported
1298 by Christian Grothoff <christian@grothoff.org>.
1300 ** opencdk: Parse (but not decrypt) encrypted secret keys.
1301 Contributed by Daniel Kahn Gillmor <dkg-debian.org@fifthhorseman.net>.
1303 ** libgnutls: Fix many warnings.
1305 ** Included copy of libtasn1 is upgraded to version 1.5.
1307 ** Add French translation, thanks to Nicolas Provost.
1309 ** API and ABI modifications:
1310 gnutls_strerror_name: ADDED
1312 * Version 2.5.4 (released 2008-08-19)
1314 ** Fix secure memory initialization of libgcrypt.
1315 Reported by Joe Orton <joe@manyfish.co.uk> in
1316 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/2992>.
1318 ** Doc fixes.
1319 Reference to NIST SP 800-57 in the manual on key size recommendations.
1320 Added 'Since:' tags to new APIs for gtk-doc.
1322 ** API and ABI modifications:
1323 No changes since last version.
1325 * Version 2.5.3 (released 2008-08-14)
1327 ** libgnutls: New API to set the public parameters in a certificate request
1328 ** from a private key.
1329 The function is gnutls_x509_crq_set_key_rsa_raw.  Inspired by
1330 discussion with "Zach C." <fxchip@gmail.com>.
1332 ** libgnutls: New API to set a callback to extract TLS Finished data.
1333 The function to register is gnutls_session_set_finished_function and
1334 it takes a callback of the gnutls_finished_callback_func type.
1336 ** libgnutls: Drop final comma after GNUTLS_CRT_PRINT_UNSIGNED_FULL in enum.
1337 Reported in <https://savannah.gnu.org/support/?106453>.
1339 ** libgnutls: Fix namespace problem with TLS_MASTER_SIZE and TLS_RANDOM_SIZE.
1340 The new names are GNUTLS_MASTER_SIZE and GNUTLS_RANDOM_SIZE.  The old
1341 names are mapped to the new names in compat.h.  These mappings will
1342 likely be removed more quickly than other mappings in that file due to
1343 the namespace violation.
1345 ** libgnutlsxx: Make it build when SRP is disabled.
1347 ** doc: Add doxygen files in doc/doxygen/.
1349 ** API and ABI modifications:
1350 gnutls_x509_crq_set_key_rsa_raw: ADDED
1351 gnutls_session_set_finished_function: ADDED
1352 gnutls_finished_callback_func: ADDED
1353 GNUTLS_MASTER_SIZE: ADDED
1354 GNUTLS_RANDOM_SIZE: ADDED
1355 TLS_MASTER_SIZE: DEPRECATED
1356 TLS_RANDOM_SIZE: DEPRECATED
1358 * Version 2.5.2 (released 2008-07-08)
1360 ** libgnutls: Fix bug in gnutls_dh_params_generate2.
1361 The prime and generator was swapped.
1363 ** libgnutls: New interface to register a new TLS extension handler.
1364 The new function gnutls_ext_register can be used to register handlers
1365 for specific TLS extension types.  The callback functions have the new
1366 types gnutls_ext_recv_func and gnutls_ext_send_func.  A type to
1367 classify TLS extensions, gnutls_ext_parse_type_t, has been added as
1368 well.
1370 ** Move more code for TLS/IA extension from libgnutls to libgnutls-extra.
1371 This was made possible by using the new gnutls_ext_register interface.
1372 The TLS/IA functionality has only been supported through the
1373 libgnutls-extra library, so it makes sense for the code to belong
1374 there too.
1376 ** API and ABI modifications:
1377 gnutls_ext_recv_func: ADDED
1378 gnutls_ext_send_func: ADDED
1379 gnutls_ext_parse_type_t: ADDED
1380 gnutls_ext_register: ADDED
1382 * Version 2.5.1 (released 2008-07-02)
1384 ** Indent code.
1386 ** API and ABI modifications:
1387 No changes since last version.
1389 * Version 2.5.0 (released 2008-07-02)
1391 ** Port fixes from v2.4.1 release, see below.
1393 ** Added API to replace and update the crypto backend.
1394 The header gnutls/crypto.h is now officially supported, and declares
1395 the symbols below.
1397 ** Rewritten opencdk crypto backend, to use the gnutls internal one.
1399 ** Update gnulib and translations.
1400 The gnulib gc crypto code has been removed since it was never finished
1401 and is no longer even used.  An internal non-libgcrypt crypto
1402 implementation may be added in the future, but we'll decide that later
1405 ** API and ABI modifications:
1406 gnutls_crypto_bigint_register2: ADDED.
1407 gnutls_crypto_cipher_register2: ADDED.
1408 gnutls_crypto_digest_register2: ADDED.
1409 gnutls_crypto_mac_register2: ADDED.
1410 gnutls_crypto_pk_register2: ADDED.
1411 gnutls_crypto_rnd_register2: ADDED.
1412 gnutls_crypto_single_cipher_register2: ADDED.
1413 gnutls_crypto_single_digest_register2: ADDED.
1414 gnutls_crypto_single_mac_register2: ADDED.
1416 * Version 2.4.3 (released 2009-02-06)
1418 ** libgnutls: Accept chains where intermediary certs are trusted.
1419 Before GnuTLS needed to validate the entire chain back to a
1420 self-signed certificate.  GnuTLS will now stop looking when it has
1421 found an intermediary trusted certificate.  The new behaviour is
1422 useful when chains, for example, contains a top-level CA, an
1423 intermediary CA signed using RSA-MD5, and an end-entity certificate.
1424 To avoid chain validation errors due to the RSA-MD5 cert, you can
1425 explicitly add the intermediary RSA-MD5 cert to your trusted certs.
1426 The signature on trusted certificates are not checked, so the chain
1427 has a chance to validate correctly.  Reported by "Douglas E. Engert"
1428 <deengert@anl.gov> in
1429 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3351>.
1431 ** libgnutls: Permit V1 Certificate Authorities properly.
1432 Before they were mistakenly rejected even though
1433 GNUTLS_VERIFY_ALLOW_ANY_X509_V1_CA_CRT and/or
1434 GNUTLS_VERIFY_ALLOW_X509_V1_CA_CRT were supplied.  Reported by
1435 "Douglas E. Engert" <deengert@anl.gov> in
1436 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3351>.
1438 ** libgnutls: deprecate X.509 validation chains using MD5 and MD2 signatures.
1439 This is a bugfix -- the previous attempt to do this from internal x509
1440 certificate verification procedures did not return the correct value
1441 for certificates using a weak hash.  Reported by Daniel Kahn Gillmor
1442 <dkg@fifthhorseman.net> in
1443 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3332>,
1444 debugged and patch by Tomas Mraz <tmraz@redhat.com> and Daniel Kahn
1445 Gillmor <dkg@fifthhorseman.net>.
1447 ** libgnutls: Fix chain verification for chains that ends with RSA-MD2 CAs.
1448 Reported by Michael Kiefer <Michael-Kiefer@web.de> in
1449 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=507633> forwarded by
1450 Andreas Metzler <ametzler@downhill.at.eu.org> in
1451 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3309>.
1453 ** libgnutls: Fix crash in X.509 validation code for self-signed certificates.
1454 The patch to fix the security problem GNUTLS-SA-2008-3 introduced a
1455 problem for certificate chains that contained just one self-signed
1456 certificate.  Reported by Michael Meskes <meskes@debian.org> in
1457 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=505279>.
1459 ** libgnutls: Fix X.509 certificate chain validation error. [GNUTLS-SA-2008-3]
1460 The flaw makes it possible for man in the middle attackers (i.e.,
1461 active attackers) to assume any name and trick GNU TLS clients into
1462 trusting that name.  Thanks for report and analysis from Martin von
1463 Gagern <Martin.vGagern@gmx.net>.  [CVE-2008-4989]
1465 Any updates with more details about this vulnerability will be added
1466 to <http://www.gnu.org/software/gnutls/security.html>
1468 ** libgnutls: Fix buffer overrun in gnutls_x509_crt_list_import.
1469 Report and patch by Jonathan Manktelow.
1471 ** libgnutls: Avoid use of non-thread safe strerror.
1473 ** API and ABI modifications:
1474 No changes since last version.
1476 * Version 2.4.2 (released 2008-09-15)
1478 ** libgnutls: Don't crash when gnutls_credentials_set is called twice.
1480 ** libgnutls: Corrected memory leak in X.509 functions.
1481 Thanks to Colin Leroy <colin@colino.net>.
1483 ** libgnutls: Fix compile error with Sun CC.
1485 ** gnutls-cli.1: Document all new parameters.
1486 Thanks to James Westby <jw+debian@jameswestby.net>.
1488 ** tests/openssl: initialize gnutls before use.
1489 Fixes crash with libgcrypt 1.4.2.  Reported by Ludovic Courtes
1490 <ludovic.courtes@laas.fr>.
1492 ** doc/: Fix texinfo markup for old texinfo versions.
1494 ** Included copy of libtasn1 is upgraded to version 1.5.
1496 ** API and ABI modifications:
1497 No changes since last version.
1499 * Version 2.4.1 (released 2008-06-30)
1501 ** libgnutls: Fix local crash in gnutls_handshake.  [GNUTLS-SA-2008-2]
1502 If the gnutls_handshake function is called for a normal session, which
1503 can happen for re-handshakes, the library would crash because it tried
1504 to hash some data using a libgcrypt handle that had been deallocated.
1505 Report and tiny patch from Tomas Mraz <tmraz@redhat.com>.  Any updates
1506 with more details about this vulnerability will be added to
1507 <http://www.gnu.org/software/gnutls/security.html>
1509 ** libgnutls: Fix memory leaks when doing a re-handshake.
1510 Reported by Sam Varshavchik <mrsam@courier-mta.com> in
1511 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/2928>.
1513 ** Fix compiler warnings.
1514 Reported by Massimo Gaspari <massimo.gaspari@alice.it> in
1515 <http://thread.gmane.org/gmane.network.gnutls.general/1281>.
1517 ** Fix ordering of -I's to avoid opencdk.h conflict with system headers.
1518 Reported by Roman Bogorodskiy <novel@FreeBSD.org> in
1519 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/2930>.
1521 ** srptool: Fix a problem where --verify check does not succeed.
1522 Report and tiny patch by Matthias Koenig <mkoenig@suse.de> in
1523 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/2944>.
1525 ** API and ABI modifications:
1526 No changes since last version.
1528 * Version 2.4.0 (released 2008-06-19)
1530 ** Major changes compared to the v2.2 branch:
1532 *** The OpenPGP sub-system has been improved and now supports subkeys.
1534 *** The PSK sub-system has been improved and now supports password
1535 *** derivation and PSK identity hints.
1536 The password derivation algorithms support is documented in
1537 draft-ietf-netconf-tls-02.txt.
1539 *** The certtool --inder and --outder has been replaced by --inraw and --outraw.
1540 This aligns terminology with OpenPGP, which doesn't use DER encoding.
1541 The old parameters will continue to work for some time.
1543 *** Certtool now confirm passwords and changes permissions of private key files.
1545 *** The default handshake size limit has been increased to 48kb.
1546 It appears as if some valid handshakes are large due to sending many
1547 CA certificates.  (The earlier limit was 16kb.)
1549 *** LZO compression is now disabled by default.
1550 The main reason is that LZO compression in TLS is not standardized,
1551 but license compatiblity issues with minilzo triggered us to make this
1552 decision now.
1554 *** Improvements for cross-compilation to Windows and OpenWRT.
1556 *** The look of the GTK-DOC manual has been improved.
1557 Major developer visible changes compared to the v2.2 branch:
1559 *** Full OpenPGP support is part of libgnutls, licensed under the LGPL.
1561 *** New APIs to access the raw X.509 Subject and Issuer DN's and
1562 *** elements from the certificate credentials structure.
1563 Thanks to Joe Orton.
1565 *** New APIs to improve working with username/passwords and PSK.
1567 *** Names of constants to affect certificate printing changed.
1568 The constants are used for OpenPGP too, which the names didn't
1569 reflect, so the following name change has been made:
1571             Old name                         New name
1572      GNUTLS_X509_CRT_FULL            GNUTLS_CRT_PRINT_FULL
1573      GNUTLS_X509_CRT_ONELINE         GNUTLS_CRT_PRINT_ONELINE
1574      GNUTLS_X509_CRT_UNSIGNED_FULL   GNUTLS_CRT_PRINT_UNSIGNED_FULL
1576 The old names will be mapped to the new names for some time.
1578 *** The function gnutls_openpgp_privkey_get_id has been renamed to
1579 *** gnutls_openpgp_privkey_get_key_id.
1580 A compatibility mapping exists to avoid breaking API backwards
1581 compatibility.
1583 *** Replaced all uses of alloca with malloc and free.
1585 *** We no longer build with -D_REENTRANT -D_THREAD_SAFE.
1586 We have been unable to find a documented rationale for this practice.
1588 *** Of course, many smaller fixes have been made, see the ChangeLog file.
1590 *** API/ABI changes in GnuTLS 2.4
1591 All OpenPGP related functions have been moved from libgnutls-extra to
1592 libgnutls, and several new functions have been added (see below).
1593 Before making the release, we discussed whether moving functions from
1594 libgnutls-extra to libgnutls would require us to increment the ABI
1595 version, but the general opinion was that this would not be required.
1596 All older functions continue to work the same.  We are open to the
1597 possibility that this decision will lead to problem on some platform,
1598 and if it turns out that the Right Thing should have been to increment
1599 the shared library version, we would need to release an update within
1600 the 2.4.x branch that increments the shared library version.
1602 This release adds the following functions:
1604   gnutls_psk_client_get_hint
1605   gnutls_psk_set_server_credentials_hint
1606   gnutls_psk_netconf_derive_key
1608     Used to get/set the PSK identity hint, and derive PSK keys from
1609     passwords a'la netconf.
1611   gnutls_x509_dn_deinit
1612   gnutls_x509_dn_export
1613   gnutls_x509_dn_import
1614   gnutls_x509_dn_init
1616     Used to handle X.509 Certificate DN's directly.
1618   gnutls_hex2bin
1620     Converts a data buffer to hex.  Useful for handling PSK/SRP shared
1621     secrets.
1623   gnutls_certificate_get_x509_cas
1624   gnutls_certificate_get_x509_crls
1625   gnutls_certificate_get_openpgp_keyring
1627     Functions for direct access to credential elements.
1629   gnutls_openpgp_crt_get_auth_subkey
1630   gnutls_openpgp_crt_get_key_id
1631   gnutls_openpgp_crt_get_pk_dsa_raw
1632   gnutls_openpgp_crt_get_pk_rsa_raw
1633   gnutls_openpgp_crt_get_preferred_key_id
1634   gnutls_openpgp_crt_get_revoked_status
1635   gnutls_openpgp_crt_get_subkey_count
1636   gnutls_openpgp_crt_get_subkey_creation_time
1637   gnutls_openpgp_crt_get_subkey_expiration_time
1638   gnutls_openpgp_crt_get_subkey_fingerprint
1639   gnutls_openpgp_crt_get_subkey_id
1640   gnutls_openpgp_crt_get_subkey_idx
1641   gnutls_openpgp_crt_get_subkey_pk_algorithm
1642   gnutls_openpgp_crt_get_subkey_pk_dsa_raw
1643   gnutls_openpgp_crt_get_subkey_pk_rsa_raw
1644   gnutls_openpgp_crt_get_subkey_revoked_status
1645   gnutls_openpgp_crt_get_subkey_usage
1646   gnutls_openpgp_crt_print
1647   gnutls_openpgp_crt_set_preferred_key_id
1648   gnutls_openpgp_keyring_get_crt
1649   gnutls_openpgp_keyring_get_crt_count
1650   gnutls_openpgp_privkey_export
1651   gnutls_openpgp_privkey_export_dsa_raw
1652   gnutls_openpgp_privkey_export_rsa_raw
1653   gnutls_openpgp_privkey_export_subkey_dsa_raw
1654   gnutls_openpgp_privkey_export_subkey_rsa_raw
1655   gnutls_openpgp_privkey_get_fingerprint
1656   gnutls_openpgp_privkey_get_key_id
1657   gnutls_openpgp_privkey_get_pk_algorithm
1658   gnutls_openpgp_privkey_get_preferred_key_id
1659   gnutls_openpgp_privkey_get_revoked_status
1660   gnutls_openpgp_privkey_get_subkey_count
1661   gnutls_openpgp_privkey_get_subkey_creation_time
1662   gnutls_openpgp_privkey_get_subkey_expiration_time
1663   gnutls_openpgp_privkey_get_subkey_fingerprint
1664   gnutls_openpgp_privkey_get_subkey_id
1665   gnutls_openpgp_privkey_get_subkey_idx
1666   gnutls_openpgp_privkey_get_subkey_pk_algorithm
1667   gnutls_openpgp_privkey_get_subkey_revoked_status
1668   gnutls_openpgp_privkey_set_preferred_key_id
1670     New OpenPGP related functions.
1672     The function gnutls_openpgp_crt_get_key_id is the same as the old
1673     from gnutls_openpgp_crt_get_id, see above.
1675 The release also adds a new header file 'gnutls/crypto.h', however it
1676 is currently not used.
1678 ** libgnutls [OpenPGP]: New APIs to retrieve fingerprint from OpenPGP subkeys.
1679 Contributed by Daniel Kahn Gillmor <dkg-debian.org@fifthhorseman.net>.
1681 ** API and ABI modifications:
1682 gnutls_openpgp_crt_get_subkey_fingerprint: ADDED.
1683 gnutls_openpgp_privkey_get_subkey_fingerprint: ADDED.
1685 * Version 2.3.15 (released 2008-06-15)
1687 ** Disable the openpgp-certs self-tests.
1688 It results in failure under Wine and doesn't work on Debian buildds.
1690 ** API and ABI modifications:
1691 No changes since last version.
1693 * Version 2.3.14 (released 2008-06-11)
1695 ** libgnutls [OpenPGP]: Changed OpenPGP verification behaviour.
1696 An OpenPGP certificate is now only considered verified if all the user
1697 IDs are verified.
1699 ** Examples: Make C++ example compile.
1700 Earlier it may have failed with an unresolved reference to strlen.
1702 ** Documentation: Doc fix for gnutls_x509_crt_get_extension_oid.
1703 Reported by Sam Varshavchik <mrsam@courier-mta.com>.
1705 ** API and ABI modifications:
1706 No changes since last version.
1708 * Version 2.3.13 (released 2008-06-07)
1710 ** libgnutls [OpenPGP]: Make OpenPGP handshakes work again.
1712 ** doc/: Add psktool to info index.  Some minor cleanups.
1714 ** tests/: Added non-forking TLS handshake test, see tests/mini.c.
1716 ** tests/: Added libgcrypt.supp which can be used with valgrind.
1717 The file suppresses the known libgcrypt memory leaks, so they aren't
1718 printed when you run valgrind on the gnutls self-tests.  Use it as
1719 follows: valgrind --suppressions=libgcrypt.supp ./x509self or add
1720 '--suppressions=/home/you/src/gnutls/tests/libgcrypt.supp' to your
1721 ~/.valgrindrc file.
1723 ** tests/: Reduce amount of debugging output by default.
1724 Use --verbose for each test to get the full output.
1726 ** tests/: Fix memory leaks in several self-tests.
1727 None of the self tests should be leaking memory when running valgrind
1728 or similar tools.  (Known exceptions are dhepskself, pskself, and
1729 set_pkcs12_cred, which appear likely to be due to memory leaks in the
1730 library.)
1732 ** API and ABI modifications:
1733 No changes since last version.
1735 * Version 2.3.12 (released 2008-06-04)
1737 ** Merge gnutls_with_netconf branch.
1739 *** libgnutls [PSK]: New API to retrieve PSK identity hint in client.
1740 The function is gnutls_psk_client_get_hint.
1742 *** libgnutls [PSK]: New API to set PSK identity hint in server.
1743 The function is gnutls_psk_set_server_credentials_hint.
1745 *** libgnutls [PSK]: Support server key exchange with PSK identity hint.
1746 In the client, the message is parsed and the application can use
1747 gnutls_psk_client_get_hint to retrieve the hint.  In the server, the
1748 message is sent if the application has specified a PSK identity hint
1749 using gnutls_psk_set_server_credentials_hint.
1751 *** libgnutls [PSK]: Support Netconf PSK key derivation.
1752 The function gnutls_psk_netconf_derive_key supports the PSK key
1753 derivation as specified in draft-ietf-netconf-tls-02.txt.  New self
1754 test netconf-psk.c.
1756 *** psktool: Support new --netconf-hint to generate PSK key from password.
1757 Uses the Netconf algorithm to derive PSK key from password.
1759 *** gnutls-serv: Support new --pskhint parameter to set PSK identity hint.
1761 *** gnutls-cli: Always support PSK modes, through a callback.
1762 The callback will derive a PSK key using Netconf algorithm.  It will
1763 print the PSK identity hint to help the user.
1765 *** New PSK example client and server.
1766 See doc/examples/ex-client-psk.c and doc/examples/ex-serv-psk.c.
1768 ** libgnutls: Fix gnutls_x509_crl_set_version on arm platforms.
1769 The code didn't work properly on platforms where 'char' is unsigned,
1770 when you set version 0.  Reported by Laurence Withers
1771 <l@lwithers.me.uk> in
1772 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/2825>.
1774 ** libgnutls-openssl: added RAND_pseudo_bytes API.
1775 Patch from Robert Millan <rmh@aybabtu.com>.
1777 ** API and ABI modifications:
1778 RAND_pseudo_bytes: ADDED to libgnutls-openssl.
1779 gnutls_psk_client_get_hint: ADDED.
1780 gnutls_psk_set_server_credentials_hint: ADDED.
1781 gnutls_psk_netconf_derive_key: ADDED
1783 * Version 2.3.11 (released 2008-05-20)
1785 ** Fix flaw in fix for GNUTLS-SA-2008-1-3.
1786 The flaw would result in incorrectly terminated sessions with the
1787 error "Decryption has failed" when the server sends a small packet
1788 (typically when the session is closed).  Reported by Andreas Metzler
1789 <ametzler@downhill.at.eu.org> in
1790 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/2807>.
1792 ** Don't use gnulib headers when building C++ library.
1793 Fixes builds under Windows.
1795 ** Make umask a requirement.
1796 We don't know of any system that lacks it, even GNU CoreUtils use it
1797 unconditionally.
1799 ** Update gnulib files.
1800 Fixes a problem where it pulled in a replacement for memcmp under
1801 MinGW, which caused the C++ example to fail to build.
1803 ** API and ABI modifications:
1804 No changes since last version.
1806 * Version 2.3.10 (released 2008-05-19)
1808 ** Added wide wildcard hostname matching.
1809 Tiny patch by Jean-Philippe Garcia Ballester.
1811 ** Fix three security vulnerabilities.  [GNUTLS-SA-2008-1]
1812 Thanks to CERT-FI for finding the bugs and providing detailed reports,
1813 which allowed the bugs to be reproduced and fixed easily.  Patches
1814 developed by Simon Josefsson and Nikos Mavrogiannopoulos.  Any updates
1815 with more details about these vulnerabilities will be added to
1816 <http://www.gnu.org/software/gnutls/security.html>
1818 *** [GNUTLS-SA-2008-1-1]
1819 *** libgnutls: Fix crash when sending invalid server name.
1820 The crash can be triggered remotely before authentication, which can
1821 lead to a Daniel of Service attack to disable the server.  The bug
1822 cause gnutls to store more session resumption data than what was
1823 allocated for, thus overwriting unallocated memory.
1825 *** [GNUTLS-SA-2008-1-2]
1826 *** libgnutls: Fix crash when sending repeated client hellos.
1827 The crash can be triggered remotely before authentication, which can
1828 lead to a Daniel of Service attack to disable the server.  The bug
1829 triggers a null-pointer dereference.
1831 *** [GNUTLS-SA-2008-1-3]
1832 *** libgnutls: Fix crash in cipher padding decoding for invalid record lengths.
1833 The crash can be triggered remotely before authentication, which can
1834 lead to a Daniel of Service attack to disable the server.  The bug
1835 cause gnutls to read memory beyond the end of the received record.
1837 ** libgnutlsxx: Updated API according to patches from Eduardo 
1838 Villanueva Che (discussion at
1839 <http://lists.gnu.org/archive/html/gnutls-devel/2007-02/msg00017.html>)
1841 ** Use umask to restrict permissions to owner before creating a file.
1843 ** API and ABI modifications:
1844 No changes since last version.
1846 * Version 2.3.9 (released 2008-05-16)
1848 ** libgnutls: Fix build failures if SRP/OpenPGP is disabled.
1849 Based on report and tiny patches from
1850 <jared.jennings.ctr@eglin.af.mil>, see
1851 <https://savannah.gnu.org/support/index.php?106342>.
1853 ** libgnutls: Translation fixes.
1855 ** gnutls-cli: Fix so that PSK authentication works.
1856 Also improve manual to give example for gnutls-cli PSK authentication.
1858 ** certtool: Encrypting a private key now require a confirmed password.
1859 Before './certtool -k -8' would merely ask for a password once.
1860 Reported by Daniel 'NebuchadnezzaR' Dehennin
1861 <nebuchadnezzar@asgardr.info> see
1862 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=364287>.
1864 ** certtool: When writing private keys to files, change permissions of file.
1865 Now the file which the private key is saved to is chmod'ed 0600.
1866 Reported by martin f krafft <madduck@debian.org> see
1867 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=373169>.
1869 ** guile: Fix -fgnu89-inline test.
1871 ** Removed --enable-profile-mode.
1872 The code linked gnutls with the libfc project (Function Check) which
1873 appears to have been stalled since around 2002.
1875 ** Clean up header file checks by ./configure.
1877 ** Update of gnulib files.
1879 ** API and ABI modifications:
1880 No changes since last version.
1882 * Version 2.3.8 (released 2008-04-29)
1884 ** libgnutls: Increase default handshake packet size limit to 48kb.
1885 The old limit was 16kb and some servers send huge list of trusted CAs,
1886 thus running into the limit.  FYI, applications can further increase
1887 this limit using gnutls_handshake_set_max_packet_length.  Thanks to
1888 Marc Haber <mh+debian-bugs@zugschlus.de> and "Marc F. Clemente"
1889 <marc@mclemente.net> for reporting and providing test servers.
1891 ** libgnutls: Add new error code: GNUTLS_E_HANDSHAKE_TOO_LARGE
1892 Returned when the handshake data size is too large.  Before
1893 GNUTLS_E_MEMORY_ERROR was used, which could be confused with other
1894 error situations.
1896 ** libgnutls: Hide definitions in crypto.h.
1897 We have decided that the APIs defined in crypto.h are not stable
1898 enough for v2.4, so don't use any of those functions.
1900 ** gnutls-cli: exit when hostname doesn't match certificate.
1901 Use --insecure to avoid hostname comparison.
1903 ** certtool: --inder and --outder replaced by --inraw and --outraw.
1904 The reason is to align terminology with OpenPGP, which doesn't use
1905 DER.  The old parameters will continue to work for some time.
1907 ** doc: Add section 'Index of new symbols in 2.4.0' to the GTK-DOC manual.
1909 ** doc: Many cosmetic fixes, to silence (most) gtk-doc warnings.
1911 ** Mingw32: Revert libgcrypt vasprintf work-around added in last release.
1912 Use libgcrypt 1.4.1 or later when building on MinGW32, it removes the
1913 vasprintf symbol from the libgcrypt library which caused problems.
1915 ** Update of gnulib files.
1917 ** tests: New self-test of crypto.h RNG code tests/crypto_rng.
1919 ** API and ABI modifications:
1920 GNUTLS_E_HANDSHAKE_TOO_LARGE: ADDED.
1922 * Version 2.3.7 (released 2008-04-21)
1924 ** opencdk now properly sets the key usage bits into openpgp keys.
1926 ** gnutls-cli: Fix crash on TLS handshake failures.
1927 Reported by "Marc F. Clemente" <marc@mclemente.net> in Debian BTS #466477.
1928 This is similar to <http://bugs.debian.org/429183>.
1930 ** certtool: with --generate-request and newly generated keys, print the key.
1932 ** Build fixes for MinGW.
1933 Missing rpl_fseeko symbol in lib/opencdk/.  Better checks for linking
1934 with -lws2_32 when needed.  Use ASCII only isprint() when printing
1935 X.509 certificate information, to avoid non-ASCII but printable
1936 characters.  Thanks to Massimo Gaspari <massimo.gaspari@alice.it> for
1937 reports.
1939 ** Update internal copy of libtasn1 to version 1.4.
1941 ** API and ABI modifications:
1942 No changes since last version.
1944 * Version 2.3.6 (released 2008-04-17)
1946 ** Make gnutls_x509_crq_sign2 set certificate request version if not set.
1947 ** Improve documentation for gnutls_x509_crq_sign2.
1948 Based on report from "John Brooks" <aspecialj@gmail.com> in
1949 <http://permalink.gmane.org/gmane.network.gnutls.general/1154>.
1951 ** tests/pathlen: run diff without parameters to improve portability.
1952 Based on HPUX build hints in
1953 <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>.
1955 ** Don't use %e specifier with strftime, it doesn't work under Windows.
1956 Reported by Massimo Gaspari <massimo.gaspari@alice.it> in
1957 <http://permalink.gmane.org/gmane.network.gnutls.general/1170>.
1959 ** Remove all uses of gnutls_alloca/gnutls_afree.
1960 Use normal gnutls_malloc instead.  One reason is increased portability
1961 to Windows, the other is that several of the uses may be unsafe
1962 because the size of data allocated could be large.  Reported by
1963 Massimo Gaspari <massimo.gaspari@alice.it> in
1964 <http://permalink.gmane.org/gmane.network.gnutls.general/1170>.
1966 ** Build Guile code with -fgnu89-inline only when supported.
1967 Reported by Kris Karas <ktk@enterprise.bidmc.harvard.edu> in
1968 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/2708>.
1970 ** Several GTK-DOC related fixes.
1972 ** Clean up OpenCDK related code.
1973 GnuTLS now requires its internal OpenCDK code rather than the external
1974 GPL library OpenCDK.  Unfortunately, we don't have resources to
1975 maintain an external library (help welcome).
1977 ** API and ABI modifications:
1978 No changes since last version.
1980 * Version 2.3.5 (released 2008-04-14)
1982 ** Build fix for MinGW and --disable-shared.
1983 Reported by Massimo Gaspari <massimo.gaspari@alice.it> in
1984 <http://permalink.gmane.org/gmane.network.gnutls.general/1145>.
1986 ** Document how to generate CRLs.
1987 Suggested by "Rainer Gerhards" <rgerhards@gmail.com>.
1989 ** Documented the --priority option to gnutls-cli and gnutls-serv.
1991 ** Several minor fixes in the OpenPGP interface.
1992 Thanks to Daniel Kahn Gillmor.
1994 ** Fix fopen file descriptor leak in PSK server code.
1995 Thanks to Laurence Withers <l@lwithers.me.uk>, see
1996 <http://lists.gnu.org/archive/html/gnutls-devel/2008-04/msg00002.html>.
1998 ** Translations files not stored directly in git to avoid merge conflicts.
2000 ** New APIs to let applications replace the RNG used.
2001 Update all RNG callers in the code to use the new interface.
2003 ** Guile code now built with -fgnu89-inline to fix inline semantic problem.
2005 ** Update gnulib files.
2007 ** API and ABI modifications:
2008 gnutls_crypto_rnd_register: ADDED
2009 gnutls_rnd_level_t: ADDED
2010 GNUTLS_RND_KEY: ADDED, gnutls_rnd_level_t member
2011 GNUTLS_RND_RANDOM: ADDED, gnutls_rnd_level_t member
2012 GNUTLS_RND_NONCE: ADDED, gnutls_rnd_level_t member
2013 gnutls_crypto_rnd_st: ADDED
2014 GNUTLS_DIG_SHA224: ADDED
2015 GNUTLS_SIGN_RSA_SHA224: ADDED
2016 gnutls_openpgp_crt_get_auth_subkey: MODIFIED
2018 * Version 2.3.4 (released 2008-03-19)
2020 ** Finish renaming of gnutls_certificate_export_x509_cas etc.
2021 They weren't renamed in the public header file.
2023 ** Added functions to register a cipher/mac/digest. This allows to 
2024 override the included ones.
2026 ** Fix a bunch of compiler warnings.
2028 ** API and ABI modifications:
2029 gnutls_crypto_cipher_st: ADDED
2030 gnutls_crypto_mac_st: ADDED
2031 gnutls_crypto_digest_st: ADDED
2032 gnutls_crypto_cipher_register: ADDED
2033 gnutls_crypto_mac_register: ADDED
2034 gnutls_crypto_digest_register: ADDED
2035 GNUTLS_E_CRYPTO_ALREADY_REGISTERED: ADDED
2037 * Version 2.3.3 (released 2008-03-10)
2039 ** Fix build failure in libextra/gnutls_extra.c that needed opencdk.h.
2040 Reported by Roman Bogorodskiy <novel@FreeBSD.org>.
2042 ** No longer compiled using -D_REENTRANT -D_THREAD_SAFE.
2043 We could not find any modern justification for enabling these flags by
2044 default.  If you know of some platform that needs one of the flags to
2045 work properly, please let us know.  (Actually introduced in v2.3.0 but
2046 not documented until now.)
2048 ** Importing many CA certificates are now considerably faster.
2049 This affect gnutls_certificate_set_x509_trust_mem,
2050 gnutls_certificate_set_x509_trust, and
2051 gnutls_certificate_set_x509_trust_file.  The complexity was reduced
2052 from O(2*n^2) to O(n).  When adding 206 files containing 408
2053 certificates, using gnutls_certificate_set_x509_trust_file, the time
2054 dropped from 40 seconds to 0.3 seconds.  Thanks to Edgar Fuß for code
2055 to trigger the problem.  See also
2056 <http://blog.josefsson.org/2008/02/27/real-world-performance-tuning-with-callgrind/>.
2058 ** Clarify documentation for gnutls_x509_crt_set_subject_alternative_name
2059 ** to be explicit that it takes zero terminated data.
2061 ** gnutls-cli --print-cert now print PKCS#3 format Diffie-Hellman parameters.
2063 ** Documentation fixes for the GTK-DOC manual.
2065 ** Fix compilation error related to __FUNCTION__ on some systems.
2066 Reported by Tim Mooney, see
2067 <https://savannah.gnu.org/support/?106267>.
2069 ** Updated translations.
2071 ** Update gnulib files.
2073 ** API and ABI modifications:
2074 gnutls_hex2bin: MODIFIED, uses size_t instead of int for string length,
2075                 and char* instead of void* for output buffer.
2077 * Version 2.3.2 (released 2008-02-26)
2079 ** Fix srcdir!=objdir failure in openpgpself test.
2081 ** Improved API documentation output from GTK-DOC.
2083 ** Added gnutls_x509_dn_export(). Patch by Joe Orton.
2085 ** Renamed gnutls_certificate_export_x509_cas and friends.
2086 See <http://lists.gnu.org/archive/html/gnutls-devel/2008-02/msg00043.html>.
2088 ** Internal header files cleanup.
2090 ** API and ABI modifications:
2091 gnutls_certificate_export_x509_cas: RENAMED to gnutls_certificate_get_x509_cas
2092 gnutls_certificate_export_x509_crls: RENAMED to gnutls_certificate_get_x509_crls
2093 gnutls_certificate_export_openpgp_keyring: RENAMED to gnutls_certificate_get_openpgp_keyring
2094 gnutls_x509_dn_export: ADDED
2096 * Version 2.3.1 (released 2008-02-21)
2098 ** OpenPGP support merged into libgnutls and is now licensed under LGPL.
2099 The included copy of OpenCDK has been stripped down and re-licensed
2100 under the LGPL.
2102 ** Cipher priority string handling now handle strings that starts with NULL.
2103 Thanks to Laurence Withers <l@lwithers.me.uk>.
2105 ** gnutls-cli: When -d is used, also prints RNG information from libgcrypt.
2107 ** Corrected memory leaks in session resuming and DHE ciphersuites. Reported
2108 by Daniel Stenberg.
2110 ** Increased the default certificate verification chain limits and allowed
2111 for checks without limitation.
2113 ** Corrected the behaviour of gnutls_x509_crt_get_subject_alt_name()
2114 and gnutls_x509_crt_get_subject_alt_name() to not null terminate binary
2115 strings and return the proper size.
2117 ** Add section 'On Record Padding' to the manual.
2118 This collects all problems related to record padding with
2119 Nokia/Sony-Ericsson phones that we know about.
2121 ** Several improvements in the OpenPGP authentication.
2122 Now subkeys can be used for authentication, according to
2123 draft-mavrogiannopoulos-rfc5081bis-00.txt.
2125 ** certtool can print information on OpenPGP certificates and keys.
2127 ** Added gnutls_x509_dn_import/init/deinit() to access raw DER DN.
2128 Patch by Joe Orton.
2130 ** Added gnutls_certificate_export_x509_cas and other functions to
2131 export elements from the certificate credentials structure.  Based on
2132 suggestion from Joe Orton.
2134 ** Doc fixes.
2135 Clarify that srp_base64 is not the same as normal base64.
2137 ** Fix non-portable use of brace expansion in makefiles.
2139 ** API and ABI modifications:
2140 gnutls_certificate_export_x509_cas: ADDED
2141 gnutls_certificate_export_x509_crls: ADDED
2142 gnutls_certificate_export_openpgp_keyring: ADDED
2143 gnutls_openpgp_keyid_t: ADDED, instead of hard-coded 'unsigned char[8]'.
2144 gnutls_openpgp_crt_get_key_id: ADDED, obsoletes gnutls_openpgp_crt_get_id.
2145 gnutls_openpgp_crt_get_revoked_status: ADDED
2146 gnutls_openpgp_crt_get_subkey_count: ADDED
2147 gnutls_openpgp_crt_get_subkey_idx: ADDED
2148 gnutls_openpgp_crt_get_subkey_revoked_status: ADDED
2149 gnutls_openpgp_crt_get_subkey_pk_algorithm: ADDED
2150 gnutls_openpgp_crt_get_subkey_creation_time: ADDED
2151 gnutls_openpgp_crt_get_subkey_expiration_time: ADDED
2152 gnutls_openpgp_crt_get_subkey_id: ADDED
2153 gnutls_openpgp_crt_get_subkey_usage: ADDED
2154 gnutls_openpgp_privkey_get_fingerprint: ADDED
2155 gnutls_openpgp_privkey_get_key_id: ADDED
2156 gnutls_openpgp_privkey_get_subkey_count: ADDED
2157 gnutls_openpgp_privkey_get_subkey_idx: ADDED
2158 gnutls_openpgp_privkey_get_subkey_revoked_status: ADDED
2159 gnutls_openpgp_privkey_get_revoked_status: ADDED
2160 gnutls_openpgp_privkey_get_subkey_pk_algorithm: ADDED
2161 gnutls_openpgp_privkey_get_subkey_expiration_time: ADDED
2162 gnutls_openpgp_privkey_get_subkey_id: ADDED
2163 gnutls_openpgp_privkey_get_subkey_creation_time: ADDED
2164 gnutls_openpgp_crt_get_subkey_pk_dsa_raw: ADDED
2165 gnutls_openpgp_crt_get_subkey_pk_rsa_raw: ADDED
2166 gnutls_openpgp_crt_get_pk_dsa_raw: ADDED
2167 gnutls_openpgp_crt_get_pk_rsa_raw: ADDED
2168 gnutls_openpgp_privkey_export_subkey_dsa_raw: ADDED
2169 gnutls_openpgp_privkey_export_subkey_rsa_raw: ADDED
2170 gnutls_openpgp_privkey_export_dsa_raw: ADDED
2171 gnutls_openpgp_privkey_export_rsa_raw: ADDED
2172 gnutls_openpgp_privkey_export: ADDED
2173 gnutls_certificate_set_openpgp_key_file2: ADDED
2174 gnutls_certificate_set_openpgp_key_mem2: ADDED
2175 gnutls_x509_dn_init: ADDED
2176 gnutls_x509_dn_import: ADDED
2177 gnutls_x509_dn_deinit: ADDED
2178 GNUTLS_E_OPENPGP_SUBKEY_ERROR: ADDED
2179 gnutls_hex2bin: ADDED
2180 GNUTLS_CRT_PRINT_FULL: ADDED, same as old GNUTLS_X509_CRT_FULL.
2181 GNUTLS_CRT_PRINT_ONELINE: ADDED, same as old GNUTLS_X509_CRT_ONELINE.
2182 GNUTLS_CRT_PRINT_UNSIGNED_FULL: ADDED, same as
2183                                 old GNUTLS_X509_CRT_UNSIGNED_FULL.
2185 * Version 2.3.0 (released 2008-01-08)
2187 ** LZO compression is now disabled by default.
2188 The reason is that LZO compression is not standardized in TLS.  If you
2189 wish to experiment with it, you will have to supply --with-lzo when
2190 invoking ./configure.  The internal copy of minilzo is no longer
2191 included with GnuTLS, so you will need to install liblzo or liblzo2 on
2192 your system to have --with-lzo to be effective.
2194 ** More than one server name field is now sent to the server properly.
2195 Thanks to mark.phillips@virgin.net.
2197 ** Fixes the post_client_hello_function(). The extensions are now parsed
2198 in a callback friendly way.
2200 ** Fix for certificate selection in servers with certificate callbacks.
2202 ** Updated translations.
2204 ** Update gnulib files.
2206 ** API and ABI modifications:
2207 No changes since last version.
2209 * Version 2.2.5 (released 2008-05-19)
2211 ** Fix flaw in fix for GNUTLS-SA-2008-1-3.
2212 The flaw would result in incorrectly terminated sessions with the
2213 error "Decryption has failed" when the server sends a small packet
2214 (typically when the session is closed).  Reported by Andreas Metzler
2215 <ametzler@downhill.at.eu.org> in
2216 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/2807>.
2218 ** API and ABI modifications:
2219 No changes since last version.
2221 * Version 2.2.4 (released 2008-05-19)
2223 ** Fix three security vulnerabilities.  [GNUTLS-SA-2008-1]
2224 Thanks to CERT-FI for finding the bugs and providing detailed reports,
2225 which allowed the bugs to be reproduced and fixed easily.  Patches
2226 developed by Simon Josefsson and Nikos Mavrogiannopoulos.  Any updates
2227 with more details about these vulnerabilities will be added to
2228 <http://www.gnu.org/software/gnutls/security.html>
2230 *** [GNUTLS-SA-2008-1-1]
2231 *** libgnutls: Fix crash when sending invalid server name.
2232 The crash can be triggered remotely before authentication, which can
2233 lead to a Daniel of Service attack to disable the server.  The bug
2234 cause gnutls to store more session resumption data than what was
2235 allocated for, thus overwriting unallocated memory.
2237 *** [GNUTLS-SA-2008-1-2]
2238 *** libgnutls: Fix crash when sending repeated client hellos.
2239 The crash can be triggered remotely before authentication, which can
2240 lead to a Daniel of Service attack to disable the server.  The bug
2241 triggers a null-pointer dereference.
2243 *** [GNUTLS-SA-2008-1-3]
2244 *** libgnutls: Fix crash in cipher padding decoding for invalid record lengths.
2245 The crash can be triggered remotely before authentication, which can
2246 lead to a Daniel of Service attack to disable the server.  The bug
2247 cause gnutls to read memory beyond the end of the received record.
2249 ** API and ABI modifications:
2250 No changes since last version.
2252 * Version 2.2.3 (released 2008-05-06)
2254 ** Increase default handshake packet size limit to 48kb.
2255 The old limit was 16kb and some servers send huge list of trusted CAs,
2256 thus running into the limit.  FYI, applications can further increase
2257 this limit using gnutls_handshake_set_max_packet_length.  Thanks to
2258 Marc Haber <mh+debian-bugs@zugschlus.de> and "Marc F. Clemente"
2259 <marc@mclemente.net> for reporting and providing test servers.
2261 ** Fix compilation error related to __FUNCTION__ on some systems.
2262 Reported by Tim Mooney, see
2263 <https://savannah.gnu.org/support/?106267>.
2265 ** Documented the --priority option to gnutls-cli and gnutls-serv.
2267 ** Fix fopen file descriptor leak in PSK server code.
2268 Thanks to Laurence Withers <l@lwithers.me.uk>, see
2269 <http://lists.gnu.org/archive/html/gnutls-devel/2008-04/msg00002.html>.
2271 ** Build Guile code with -fgnu89-inline only when supported.
2272 Reported by Kris Karas <ktk@enterprise.bidmc.harvard.edu> in
2273 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/2708>.
2275 ** Make Camellia encryption work.
2276 Reported by Yoshisato YANAGISAWA <yanagisawa@csg.is.titech.ac.jp> in
2277 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/2746>.
2279 ** API and ABI modifications:
2280 No changes since last version.
2282 * Version 2.2.2 (released 2008-02-21)
2284 ** Cipher priority string handling now handle strings that starts with NULL.
2285 Thanks to Laurence Withers <l@lwithers.me.uk>.
2287 ** Corrected memory leaks in session resuming and DHE ciphersuites. Reported
2288 by Daniel Stenberg.
2290 ** Increased the default certificate verification chain limits and allowed
2291 for checks without limitation.
2293 ** Corrected the behaviour of gnutls_x509_crt_get_subject_alt_name()
2294 and gnutls_x509_crt_get_subject_alt_name() to not null terminate binary
2295 strings and return the proper size.
2297 ** API and ABI modifications:
2298 No changes since last version.
2300 * Version 2.2.1 (released 2008-01-17)
2302 ** Prevent linking libextra against previously installed libgnutls.
2303 Tiny patch from "Alon Bar-Lev" <alon.barlev@gmail.com>, see
2304 <http://bugs.gentoo.org/show_bug.cgi?id=202269>.
2306 ** Fixes the post_client_hello_function(). The extensions are now parsed
2307 in a callback friendly way.
2309 ** Fix for certificate selection in servers with certificate callbacks.
2311 ** API and ABI modifications:
2312 No changes since last version.
2314 * Version 2.2.0 (released 2007-12-14)
2316 ** Update internal copy of libtasn1 to version 1.2.
2318 ** Certtool --verify-chain now handle inputs larger than 64kb.
2319 This fixes the self-test "rsa-md5-collision" under MinGW+Wine with
2320 recent versions of libgcrypt.  The problem was that Wine with the
2321 libgcrypt RNG generates huge amounts of debugging output.
2323 ** Translation updates.
2324 Added Dutch translation.  Updated Polish and Swedish translation.
2326 ** Major changes compared to the v2.0 branch:
2328 *** SRP support aligned with newly published RFC 5054.
2330 *** OpenPGP support aligned with newly published RFC 5081.
2332 *** Support for DSA2 keys.
2334 *** Support for Camellia cipher.
2336 *** Support for Opaque PRF Input extension.
2338 *** PKCS#8 parser now handle DSA keys.
2340 *** Change from GPLv2 to GPLv3 for command-line tools, libgnutls-extra, etc.
2341 Notice that liblzo2 2.02 is licensed under GPLv2 only.  Earlier
2342 versions, such as 2.01 which is included with GnuTLS, is available
2343 under GPLv2 or later.  If this incompatibility causes problems, we
2344 recommend you to disable LZO using --without-lzo.  LZO compression is
2345 not a standard TLS compression algorithm, so the impact should be
2346 minimal.
2348 *** Functions for disabling record protocol padding.
2349 Works around bugs on Nokia/Ericsson phones.
2351 *** New functions gnutls_priority_set() for setting cipher priorities easily.
2352 Priorities like "COMPAT" also enables other work arounds, such as
2353 disabling padding.
2355 *** Other minor improvements and bug fixes.
2357 ** Backwards incompatible API/ABI changes in GnuTLS 2.2
2358 To adapt to changes in the TLS extension specifications for OpenPGP
2359 and SRP, the GnuTLS API had to be modified.  This means breaking the
2360 API and ABI backwards compatibility.  That is something we try to
2361 avoid unless it is necessary.  We decided to also remove the already
2362 deprecated stub functions for X.509 to XML conversion and TLS
2363 authorization (see below) when we had the opportunity.
2365 Generally, most applications does not need to be modified.  Just
2366 re-compile them against the latest GnuTLS release, and it should work
2367 fine.
2369 Applications that use the OpenPGP or SRP features needs to be
2370 modified.  Below is a list of the modified APIs and discussion of what
2371 the minimal things you need to modify in your application to make it
2372 work with GnuTLS 2.2.
2374 Note that GnuTLS 2.2 also introduces new APIs -- such as
2375 gnutls_set_priority() that is superior to
2376 gnutls_set_default_priority() -- that you may want to start using.
2377 However, using those new APIs is not required to use GnuTLS 2.2 since
2378 the old functions continue are still supported.  This text only
2379 discuss what you minimally have to modify.
2381 *** XML related changes
2382 The function `gnutls_x509_crt_to_xml' has been removed.  It has been
2383 deprecated and only returned an error code since GnuTLS version
2384 1.2.11.  Nobody has complained, so users doesn't seem to miss the
2385 functionality.  We don't know of any other library to convert X.509
2386 certificates into XML format, but we decided (long ago) that GnuTLS
2387 isn't the right place for this kind of functionality.  If you want
2388 help to find some other library to use here, please explain and
2389 discuss your use case on help-gnutls@gnu.org.
2391 *** TLS Authorization related changes
2392 Everything related to TLS authorizations have been removed, they were
2393 only stub functions that returned an error code:
2395  GNUTLS_SUPPLEMENTAL_AUTHZ_DATA
2396  gnutls_authz_data_format_type_t
2397  gnutls_authz_recv_callback_func
2398  gnutls_authz_send_callback_func
2399  gnutls_authz_enable
2400  gnutls_authz_send_x509_attr_cert
2401  gnutls_authz_send_saml_assertion
2402  gnutls_authz_send_x509_attr_cert_url
2403  gnutls_authz_send_saml_assertion_url
2405 *** SRP related changes
2406 The callback gnutls_srp_client_credentials_function has a new
2407 prototype, and its semantic has changed.  You need to rewrite the
2408 callback, see the updated function documentation and SRP example code
2409 (doc/examples/ex-client-srp.c and doc/examples/ex-serv-srp.c) for more
2410 information.
2412 The alert codes GNUTLS_A_MISSING_SRP_USERNAME and
2413 GNUTLS_A_UNKNOWN_SRP_USERNAME are no longer used by the SRP
2414 specification, instead the GNUTLS_A_UNKNOWN_PSK_IDENTITY alert is
2415 used.  There are #define's to map the old names to the new.  You may
2416 run into problems if you have a switch-case with cases for both SRP
2417 alerts, since they are now mapped to the same value.  The solution is
2418 to drop the SRP alerts from such switch cases, as they are now
2419 deprecated in favor of GNUTLS_A_UNKNOWN_PSK_IDENTITY.
2421 *** OpenPGP related changes
2422 The function `gnutls_certificate_set_openpgp_keyserver' have been
2423 removed.  There is no replacement functionality inside GnuTLS.  If you
2424 need keyserver functionality, consider using the GnuPG tools.
2426 All functions, types, and error codes related to OpenPGP trustdb
2427 format have been removed.  The trustdb format is a non-standard
2428 GnuPG-specific format, and we recommend you to use key rings instead.
2429 The following have been removed:
2431  gnutls_certificate_set_openpgp_trustdb
2432  gnutls_openpgp_trustdb_init
2433  gnutls_openpgp_trustdb_deinit
2434  gnutls_openpgp_trustdb_import
2435  gnutls_openpgp_key_verify_trustdb
2436  gnutls_openpgp_trustdb_t
2437  GNUTLS_E_OPENPGP_TRUSTDB_VERSION_UNSUPPORTED
2439 The following functions has an added parameter of the (new) type
2440 `gnutls_openpgp_crt_fmt_t'.  The type specify the format of the data
2441 (binary or base64).  The functions are:
2442  gnutls_certificate_set_openpgp_key_file
2443  gnutls_certificate_set_openpgp_key_mem
2444  gnutls_certificate_set_openpgp_keyring_mem
2445  gnutls_certificate_set_openpgp_keyring_file
2447 To improve terminology and align with the X.509 interface, some
2448 functions have been renamed.  Compatibility mappings exists.  The old
2449 and new names of the affected functions and types are:
2451         Old name                                New name
2452  gnutls_openpgp_key_t                    gnutls_openpgp_crt_t
2453  gnutls_openpgp_key_fmt_t                gnutls_openpgp_crt_fmt_t
2454  gnutls_openpgp_key_status_t             gnutls_openpgp_crt_status_t
2455  GNUTLS_OPENPGP_KEY                      GNUTLS_OPENPGP_CERT
2456  GNUTLS_OPENPGP_KEY_FINGERPRINT          GNUTLS_OPENPGP_CERT_FINGERPRINT
2457  gnutls_openpgp_key_init                 gnutls_openpgp_crt_init
2458  gnutls_openpgp_key_deinit               gnutls_openpgp_crt_deinit
2459  gnutls_openpgp_key_import               gnutls_openpgp_crt_import
2460  gnutls_openpgp_key_export               gnutls_openpgp_crt_export
2461  gnutls_openpgp_key_get_key_usage        gnutls_openpgp_crt_get_key_usage
2462  gnutls_openpgp_key_get_fingerprint      gnutls_openpgp_crt_get_fingerprint
2463  gnutls_openpgp_key_get_pk_algorithm     gnutls_openpgp_crt_get_pk_algorithm
2464  gnutls_openpgp_key_get_name             gnutls_openpgp_crt_get_name
2465  gnutls_openpgp_key_get_version          gnutls_openpgp_crt_get_version
2466  gnutls_openpgp_key_get_creation_time    gnutls_openpgp_crt_get_creation_time
2467  gnutls_openpgp_key_get_expiration_time  gnutls_openpgp_crt_get_expiration_time
2468  gnutls_openpgp_key_get_id               gnutls_openpgp_crt_get_id
2469  gnutls_openpgp_key_check_hostname       gnutls_openpgp_crt_check_hostname
2470  gnutls_openpgp_send_key                 gnutls_openpgp_send_cert
2472 ** API and ABI modifications:
2473 No changes since last version.
2475 * Version 2.1.8 (released 2007-12-10)
2477 ** The GPL version has been changed from version 2 to version 3.
2478 This affects the self-tests, command-line tools, the libgnutls-extra
2479 library, the relevant guile parts, and the build environment.
2481 ** Added gnutls_x509_crt_get_subject_alt_name2().
2483 ** Corrected a segfault when setting an empty gnutls_priority_t
2484 at gnutls_priority_set().
2486 ** Use gettext 0.17 which updates m4/lib-*.m4 macros.
2487 Fixes a problem with spurious -L/usr/lib additions.
2489 ** API and ABI modifications:
2490 gnutls_x509_crt_get_subject_alt_name2: ADD.
2492 * Version 2.1.7 (released 2007-11-29)
2494 ** PKCS #8 parser can now encode/decode DSA keys.
2496 ** Updated gnutls_set_default_priority2() now renamed to
2497 gnutls_priority_set() and gnutls_priority_set_direct() which
2498 accept a string to indicate preferences of ciphersuite parameters.
2500 ** gnutls-cli and gnutls-serv now have a --priority option to set
2501 the priority string.
2503 ** The gnutls_*_convert_priority() functions were deprecated by
2504 the gnutls_priority_set() and gnutls_priority_set_direct().
2506 ** Internal copy of OpenCDK upgraded to version 0.6.6.
2508 ** API and ABI modifications:
2509 gnutls_priority_init: ADD.
2510 gnutls_priority_deinit: ADD.
2511 gnutls_priority_set: ADD.
2512 gnutls_priority_set_direct: ADD.
2513 gnutls_set_default_priority2: RENAMED to gnutls_priority_set_direct()
2514 gnutls_mac_convert_priority: REMOVED
2515 gnutls_compression_convert_priority: REMOVED
2516 gnutls_protocol_convert_priority: REMOVED
2517 gnutls_kx_convert_priority: REMOVED
2518 gnutls_cipher_convert_priority: REMOVED
2519 gnutls_certificate_type_convert_priority: REMOVED
2520 gnutls_set_default_priority: UNDEPRECATED
2521 gnutls_set_default_priority_export: UNDEPRECATED
2523 ** Undocumented API and ABI modifications earlier in the 2.1.x series:
2524 GNUTLS_CIPHER_UNKNOWN: ADD.
2525 GNUTLS_CIPHER_CAMELLIA_128_CBC: ADD.
2526 GNUTLS_CIPHER_CAMELLIA_256_CBC: ADD.
2527 GNUTLS_KX_UNKNOWN: ADD.
2528 GNUTLS_COMP_UNKNOWN: ADD.
2529 GNUTLS_CRT_UNKNOWN: ADD.
2530 gnutls_mac_get_id: ADD.
2531 gnutls_compression_get_id: ADD.
2532 gnutls_cipher_get_id: ADD.
2533 gnutls_kx_get_id: ADD.
2534 gnutls_protocol_get_id: ADD.
2535 gnutls_certificate_type_get_id: ADD.
2536 gnutls_handshake_post_client_hello_func: ADD.
2537 gnutls_certificate_send_x509_rdn_sequence: ADD prototype to gnutls.h.in.
2539 * Version 2.1.6 (released 2007-11-15)
2541 ** Corrected bug in decompression of expanded compression data.
2543 ** Added the --to-p8 option to certtool to convert private keys
2544 to PKCS #8 keys.
2546 ** Introduced the GNUTLS_E_BASE64_UNEXPECTED_HEADER_ERROR error code.
2548 ** gnutls_certificate_set_x509_key_* can now read PKCS #8 unencrypted
2549 private keys.
2551 ** Fixed GNUTLS_E_UNKNOWN_ALGORITHM vs GNUTLS_E_UNKNOWN_HASH_ALGORITHM.
2552 During the 2.1.x series the GNUTLS_E_UNKNOWN_HASH_ALGORITHM error code
2553 was renamed to GNUTLS_E_UNKNOWN_ALGORITHM, unfortunately without being
2554 documented.  This caused some problems (e.g., debian #450854).  To
2555 avoid backwards compatibility problems, this release revert this
2556 change, so that GNUTLS_E_UNKNOWN_HASH_ALGORITHM works just like it has
2557 done in GnuTLS 2.0.x and earlier, and add a new error code
2558 GNUTLS_E_UNKNOWN_ALGORITHM.
2560 ** Fixes several gtk-doc warnings.
2562 ** API and ABI modifications:
2563 GNUTLS_E_UNKNOWN_ALGORITHM: CHANGED.
2564 GNUTLS_E_UNKNOWN_HASH_ALGORITHM: CHANGED.
2565 GNUTLS_E_BASE64_UNEXPECTED_HEADER_ERROR: ADD.
2567 * Version 2.1.5 (released 2007-11-01)
2569 ** Fix PKCS#3 parameter export problem.
2571 ** Improve certtool queries, they now print the default value.
2573 ** Fix ABI version.
2575 ** Update gnulib files.
2577 ** API and ABI modifications:
2578 No changes since last version.
2580 * Version 2.1.4 (released 2007-10-27)
2582 ** Added the --v1 option to certtool, to allow generating X.509
2583 version 1 certificates. 
2585 ** certtool: Add option --disable-quick-random to enable the old behaviour
2586 of using /dev/random to generate keys.
2588 ** Added priority functions that accept strings.
2590 ** Added gnutls_set_default_priority2() which accepts a flag to indicate
2591 priorities preferences.
2593 ** Added gnutls_record_disable_padding() to allow servers talking to 
2594 buggy clients that complain if the TLS 1.0 record protocol padding is
2595 used.
2597 ** Introduced gnutls_session_enable_compatibility_mode() to allow enabling
2598 all supported compatibility options (like disabling padding).
2600 ** The gnutls_certificate_set_openpgp_* functions were modified to include
2601 the format. This makes the interface consistent with the x509 functions.
2603 ** Internal copy of OpenCDK upgraded to version 0.6.5.
2605 ** Update gnulib files.
2607 ** API and ABI modifications:
2608 gnutls_certificate_set_openpgp_key_mem: MODIFIED
2609 gnutls_certificate_set_openpgp_key_file: MODIFIED
2610 gnutls_certificate_set_openpgp_keyring_mem: MODIFIED
2611 gnutls_certificate_set_openpgp_keyring_file: MODIFIED
2612 gnutls_set_default_priority: DEPRECATED
2613 gnutls_set_default_priority_export: DEPRECATED
2614 gnutls_set_default_priority2: ADDED
2615 gnutls_session_enable_compatibility_mode: ADDED
2616 gnutls_record_disable_padding: ADDED
2617 gnutls_mac_convert_priority: ADDED
2618 gnutls_compression_convert_priority: ADDED
2619 gnutls_protocol_convert_priority: ADDED
2620 gnutls_kx_convert_priority: ADDED
2621 gnutls_cipher_convert_priority: ADDED
2622 gnutls_certificate_type_convert_priority: ADDED
2623 gnutls_openpgp_key_t: RENAMED to gnutls_openpgp_crt_t
2624 gnutls_openpgp_key_status_t: RENAMED to gnutls_openpgp_crt_status_t
2625 gnutls_openpgp_send_key: RENAMED to gnutls_openpgp_send_cert
2626 gnutls_openpgp_key_init: RENAMED to gnutls_openpgp_crt_init
2627 gnutls_openpgp_key_import: RENAMED to gnutls_openpgp_crt_import
2628 gnutls_openpgp_key_export: RENAMED to gnutls_openpgp_crt_export
2629 gnutls_openpgp_key_check_hostname: RENAMED to gnutls_openpgp_crt_check_hostname
2630 gnutls_openpgp_key_get_creation_time: RENAMED to gnutls_openpgp_crt_get_creation_time
2631 gnutls_openpgp_key_get_expiration_time: RENAMED to gnutls_openpgp_crt_get_expiration_time
2632 gnutls_openpgp_key_get_fingerprint: RENAMED to gnutls_openpgp_crt_get_fingerprint
2633 gnutls_openpgp_key_get_version: RENAMED to gnutls_openpgp_crt_get_version
2634 gnutls_openpgp_key_get_pk_algorithm: RENAMED to gnutls_openpgp_crt_get_pk_algorithm
2635 gnutls_openpgp_key_get_name: RENAMED to gnutls_openpgp_crt_get_name
2636 gnutls_openpgp_key_deinit: RENAMED to gnutls_openpgp_crt_deinit
2637 gnutls_openpgp_key_get_id: RENAMED to gnutls_openpgp_crt_get_id
2638 gnutls_openpgp_key_get_key_usage: RENAMED to gnutls_openpgp_crt_get_key_usage
2639 gnutls_openpgp_key_verify_ring: RENAMED to gnutls_openpgp_crt_verify_ring
2640 gnutls_openpgp_key_verify_self: RENAMED to gnutls_openpgp_crt_verify_self
2642 * Version 2.1.3 (released 2007-10-17)
2644 ** TLS authorization support removed.
2645 This technique may be patented in the future, and it is not of crucial
2646 importance for the Internet community.  After deliberation we have
2647 concluded that the best thing we can do in this situation is to
2648 encourage society not to adopt this technique.  We have decided to
2649 lead the way with our own actions.
2651 ** Re-enabled the 256 bit ciphers in the default priorities.
2653 ** Corrected bugs in openpgp key verification using a keyring (both in
2654 gnutls and opencdk)
2656 ** API and ABI modifications:
2657 gnutls_certificate_set_openpgp_keyserver: REMOVED
2658 gnutls_authz_data_format_type_t,
2659 gnutls_authz_recv_callback_func,
2660 gnutls_authz_send_callback_func,
2661 gnutls_authz_enable,
2662 gnutls_authz_send_x509_attr_cert,
2663 gnutls_authz_send_saml_assertion,
2664 gnutls_authz_send_x509_attr_cert_url,
2665 gnutls_authz_send_saml_assertion_url: REMOVED.
2666 GNUTLS_SUPPLEMENTAL_USER_MAPPING_DATA: ADDED.  To avoid that the
2667     gnutls_supplemental_data_format_type_t enum type becomes empty.
2669 * Version 2.1.2 (released 2007-10-14)
2671 ** Removed all the trustdb code from openpgp authentication.
2672 We now use only the well-specified keyrings.
2674 ** The 256 bit ciphers are not enabled in the default priorities.
2676 ** Added support for DSA2 using libgcrypt 1.3.0.
2678 ** certtool: Fixed data corruption when using --outder.
2680 ** Removed all the xml related stubs and functions.
2682 ** Added capability to set a callback after the client hello is received
2683 by the server in order to adjust parameters before the handshake.
2685 ** SRP was corrected to adhere to the latest draft (published soon as RFC)
2687 ** Corrected bug which did not allow a server to run without supporting
2688 certificates.
2690 ** Updated the DN parser which now prints wrongly decoded values as hex
2691 strings.
2693 ** certtool: Add option --quick-random.
2694 For generating low security test credentials.
2696 ** API and ABI modifications:
2697 gnutls_x509_crt_to_xml: REMOVED
2698 gnutls_openpgp_key_to_xml: REMOVED
2699 gnutls_openpgp_key_verify_trustdb: REMOVED
2700 gnutls_openpgp_trustdb_init: REMOVED
2701 gnutls_openpgp_trustdb_deinit: REMOVED
2702 gnutls_openpgp_trustdb_import: REMOVED
2703 gnutls_certificate_set_openpgp_trustdb: REMOVED
2704 gnutls_srp_client_credentials_function: CHANGED
2705 gnutls_handshake_set_post_client_hello_function: ADDED
2706 gnutls_mac_get_key_size: ADDED
2707 GNUTLS_E_OPENPGP_TRUSTDB_VERSION_UNSUPPORTED: DEPRECATED.
2708 GNUTLS_A_MISSING_SRP_USERNAME: DEPRECATED
2709 GNUTLS_A_UNKNOWN_SRP_USERNAME: DEPRECATED
2711 * Version 2.1.1 (released 2007-09-24)
2713 ** Added support for Camellia cipher, thanks to Yoshisato YANAGISAWA.
2714 Camellia is only enabled in GnuTLS if the installed libgcrypt has been
2715 compiled with Camellia support.  See the libgcrypt documentation on
2716 how to enable it.  Unconditionally disable it using the configure
2717 option --disable-camellia.  Fixes #1.
2719 ** Properly document in the NEWS file the API change in the last release.
2721 ** API and ABI modifications:
2722 No changes since last version.
2724 * Version 2.1.0 (released 2007-09-20)
2726 ** Support for draft-rescorla-tls-opaque-prf-input-00.txt.
2727 The support is disabled by default.  Since no value has been allocated
2728 by the IANA for this extension yet, you will need to provide one
2729 yourself by invoking './configure --enable-opaque-prf-input=42'.
2730 Fixes #2.
2732 ** Example code: Fix compilation flaw under MinGW.
2734 ** API and ABI modifications:
2735 gnutls_oprfi_callback_func: ADD, new typedef function prototype.
2736 gnutls_oprfi_enable_client: ADD, new function.
2737 gnutls_oprfi_enable_server: ADD, new function.
2739 * Version 2.0.4 (released 2007-11-16)
2741 ** Corrected bug in decompression of expanded compression data.           
2743 ** API and ABI modifications:
2744 No changes since last version.
2746 * Version 2.0.3 (released 2007-11-10)
2748 ** This version backports several fixes from the 2.1.x branch.
2750 ** Fixed PKCS #3 parameter export.
2752 ** Added gnutls_record_disable_padding() to allow servers talking to
2753 buggy clients that complain if the TLS 1.0 record protocol padding is
2754 used.
2756 ** Introduced gnutls_session_enable_compatibility_mode() to allow enabling
2757 all supported compatibility options (like disabling padding).
2759 ** Corrected bug which did not allow a server to run without supporting
2760 certificates.
2762 ** API and ABI modifications:
2763 gnutls_session_enable_compatibility_mode: ADDED
2764 gnutls_record_disable_padding: ADDED
2766 * Version 2.0.2 (released 2007-10-17)
2768 ** TLS authorization support removed.
2769 This technique may be patented in the future, and it is not of crucial
2770 importance for the Internet community.  After deliberation we have
2771 concluded that the best thing we can do in this situation is to
2772 encourage society not to adopt this technique.  We have decided to
2773 lead the way with our own actions.
2775 ** certtool: Fixed data corruption when using --outder.
2777 ** Fix configure-time Guile detection.
2779 ** API and ABI modifications:
2780 GNUTLS_SUPPLEMENTAL_USER_MAPPING_DATA: ADDED.  To avoid that the
2781     gnutls_supplemental_data_format_type_t enum type becomes empty.
2783 * Version 2.0.1 (released 2007-09-20)
2785 ** New directory doc/credentials/ with test credentials.
2786 This collects the test credentials from the web page and from src/.
2787 The script gnutls-http-serv has also been moved to that directory.
2789 ** Update SRP extension type and cipher suite with official IANA values.
2790 This breaks backwards compatibility with SRP in older versions of
2791 GnuTLS, but this is intentional to speed up the adoption of the
2792 official values.  The old values we used were incorrect.
2794 ** Guile: Fix `x509-certificate-dn-oid'
2796 ** API and ABI modifications:
2797 No changes since last version.
2799 * Version 2.0.0 (released 2007-09-04)
2801 ** Included copy of Libtasn1 upgraded to version 1.1.
2803 ** Disable building of some examples if anonymous ciphers are disabled.
2805 ** Don't build examples for disabled features.
2807 ** API and ABI modifications:
2808 No changes since last version.
2810 * Version 1.7.19 (released 2007-08-27)
2812 ** Fix gnutls_error_is_fatal so that positive "errors" are non-critical.
2813 This solves connection problems in mutt, see
2814 <http://bugs.debian.org/439640>.
2816 ** Update gnulib files.
2817 In particular, the getpass module -- with its dependencies on getline,
2818 getdelim, fseeko etc -- where moved from the lgl/ (used by the core
2819 library) directory to the gl/ directory (only used by the command line
2820 tools).  The reason is that getpass is now only used by the
2821 command-line tools, and reducing the number of gnulib modules linked
2822 to the core library helps portability and reduces size.
2824 ** Fix warnings.
2826 ** Disable building of PGP examples if PGP is disabled.
2828 ** Included copy of OpenCDK upgraded to version 0.6.4.
2830 ** API and ABI modifications:
2831 No changes since last version.
2833 * Version 1.7.18 (released 2007-08-16)
2835 ** Install images for the info manual.
2836 This has a side effect of renaming the images.  See
2837 <http://thread.gmane.org/gmane.comp.tex.texinfo.bugs/3533> for
2838 discussions on the approach chosen.
2840 ** Fix pointer mix to variables of different size.
2841 Patch extracted from
2842 <http://cvs.fedora.redhat.com/viewcvs/devel/gnutls/gnutls-1.6.3-incompat-pointers.patch?rev=1.1&view=auto>.
2844 ** Fix warnings during build.
2845 Thanks to Andreas Metzler <ametzler@downhill.at.eu.org>.
2847 ** API and ABI modifications:
2848 No changes since last version.
2850 * Version 1.7.17 (released 2007-08-15)
2852 ** New functions to perform external signing.
2853 Set the signing callback function (of the gnutls_sign_func prototype)
2854 using the gnutls_sign_callback_set function.  In the callback, you may
2855 find the new functions gnutls_x509_privkey_sign_hash and
2856 gnutls_openpgp_privkey_sign_hash useful.  A new function
2857 gnutls_sign_callback_get is also added, to retrieve the function
2858 pointer.  Thanks to "Alon Bar-Lev" <alon.barlev@gmail.com> for
2859 comments and testing.
2861 ** New self test of client and server authenticated X.509 TLS sessions.
2862 See tests/x509self.c and tests/x509signself.c.  The latter also tests
2863 the new external signing callback interface.
2865 ** New errors GNUTLS_E_APPLICATION_ERROR_MIN..GNUTLS_E_APPLICATION_ERROR_MAX.
2866 These two actually describe the outer limits of a range of error codes
2867 reserved to the application.  All of the errors are treated as fatal
2868 by the library (it has to since it doesn't know the semantics of the
2869 error codes).  This can be useful in callbacks, to signal some
2870 application-specific error condition, which will usually eventually
2871 cause some gnutls API to return the same error code as the callback,
2872 which then can be inspected by the application.  Note that error codes
2873 are negative.
2875 ** gnutls_set_default_priority now disable TLS 1.2 by default.
2876 The RFC is not released yet, and we're approaching a major release so
2877 let's not enable it just yet.
2879 ** Fix namespace so that gnutls_*_t is used consistently.
2880 Before, many places in the GnuTLS code used the old deprecated type
2881 names without the '_t' suffix.
2883 ** Build fixes for Guile code.
2884 Patch from Ludovic Courtes <ludovic.courtes@laas.fr>.
2886 ** More documentation fixes.
2887 In particular, the section headings were modified for casing.  By
2888 Ludovic Courtes <ludovic.courtes@laas.fr>.
2890 ** Updated Polish and Swedish translations.
2891 Thanks to Jakub Bogusz <qboosh@pld-linux.org> and Daniel Nylander
2892 <po@danielnylander.se>.
2894 ** API and ABI modifications:
2895 gnutls_sign_func: ADD, new type for sign callback.
2896 gnutls_sign_callback_set: ADD, new function to set sign callback.
2897 gnutls_sign_callback_get: ADD, new function to retrieve sign callback.
2898 gnutls_x509_privkey_sign_hash,
2899 gnutls_openpgp_privkey_sign_hash: ADD, new functions useful in sign callback.
2900 GNUTLS_E_APPLICATION_ERROR_MIN,
2901 GNUTLS_E_APPLICATION_ERROR_MAX: ADD, new CPP #defines for error codes.
2903 * Version 1.7.16 (released 2007-08-07)
2905 ** Fix sanity checks and return values in certificate selection.
2906 In some cases, GnuTLS omitted to report suitable error codes when no
2907 suitable certificate was found.
2909 ** Fix gnutls-cli starttls EOF on Mac OS X.
2910 Thanks to Hal Eden <n.mavrogiannopoulos@gmail.com>.
2912 ** Documentation fixes.
2913 In particular, the section headings were modified for casing.  By
2914 Ludovic Courtes <ludovic.courtes@laas.fr>.
2916 ** Update gnulib files.
2918 ** API and ABI modifications:
2919 No changes since last version.
2921 * Version 1.7.15 (released 2007-07-02)
2923 ** Fix self-tests key-id under mingw32.
2925 ** Test that the Guile header files are recent enough to work.
2926 Before we just tested that the command line tool 'guile' was recent
2927 enough, which may not be sufficient if you still have an old
2928 libguile.h header installed.
2930 ** Guile bindings are now installed under $prefix by default.
2931 Use --without-guile-site-dir to install it under $pkgdatadir/site/
2932 where $pkgdatadir is as returned by "guile-config info pkgdatadir".
2933 Use --with-guile-site-dir=/your/own/path to specify the path manually.
2934 The default, --with-guile-site-dir, will install the Guile bindings
2935 under $datadir/guile/site.  There is a new section 'Guile
2936 Preparations' in the manual that discuss these issues.
2938 ** Fix run-time library path ordering in linking the Guile bindings.
2940 ** Improved manual on downloading, installing, getting help, bug reports etc.
2941 Suggested by Ludovic Courtès <ludovic.courtes@laas.fr>.
2943 ** Add Malay message translations.
2944 Thanks to Sharuzzaman Ahmat Raslan <sharuzzaman@myrealbox.com>.
2946 ** API and ABI modifications:
2947 No changes since last version.
2949 * Version 1.7.14 (released 2007-06-26)
2951 ** Don't enable Guile bindings unless we have Guile 1.8 or later.
2952 Patch from Ludovic Courtès <ludovic.courtes@laas.fr>.
2954 ** Fix memory leak during DSA signature verification.
2955 Patch from Ludovic Courtès <ludovic.courtes@laas.fr>.
2957 ** Fix crash in gnutls-cli when TLS handshake fails.
2958 Reported by Marc Haber <mh+debian-bugs@zugschlus.de> and Andreas
2959 Metzler <ametzler@downhill.at.eu.org> via Debian BTS #429183, see
2960 <http://bugs.debian.org/429183>.
2962 ** Minor OpenPGP fixes in stream_to_datum.
2963 Patch from Timo Schulz <twoaday@freakmail.de> and Ludovic Courtès
2964 <ludovic.courtes@laas.fr>.
2966 ** Fix off-by-one in TLS 1.2 handshake.
2967 Patch from Ludovic Courtès <ludovic.courtes@laas.fr>.
2969 ** Minor Guile binding self-test cleanup.
2970 Patch from Ludovic Courtès <ludovic.courtes@laas.fr>.
2972 ** Update gnulib files.
2974 ** API and ABI modifications:
2975 No changes since last version.
2977 * Version 1.7.13 (released 2007-06-11)
2979 ** OpenCDK copy updated to version 0.6.3.
2981 ** Build fixes for GnuTLS Guile bindings.
2982 Patch from Ludovic Courtès <ludovic.courtes@laas.fr>.
2984 ** Build fix for GTK-DOC manual.
2986 ** Update gnulib files.
2988 ** API and ABI modifications:
2989 No changes since last version.
2991 * Version 1.7.12 (released 2007-06-08)
2993 ** Guile bindings for GnuTLS have been included.
2994 Contributed by Ludovic Courtès <ludovic.courtes@laas.fr>.  There is a
2995 new chapter 'Guile Bindings' in the manual.
2997 ** Have PKCS8 parser return better error codes.
2998 Reported by Nate Nielsen <nielsen-list@memberwebs.com>, see
2999 <http://lists.gnupg.org/pipermail/gnutls-dev/2007-May/001653.html> and
3000 <http://lists.gnupg.org/pipermail/gnutls-dev/2007-May/001654.html>.
3002 ** Fix mem leak for sessions with client authentication via certificates.
3003 Reported by Andrew W. Nosenko <andrew.w.nosenko@gmail.com>, see
3004 <http://lists.gnupg.org/pipermail/gnutls-dev/2007-April/001539.html>.
3006 ** Fix mem leaks.
3007 Reported by Dennis Vshivkov <walrus@amur.ru>, see
3008 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=333050>.  Added
3009 self-test tests/parse_ca.c to test regressions.
3011 ** Fix build failures related to missing images in manual.
3012 Reported by Andreas Metzler <ametzler@downhill.at.eu.org>.
3014 ** Update gnulib files.
3016 ** API and ABI modifications:
3017 No changes since last version.
3019 * Version 1.7.11 (released 2007-05-26)
3021 ** Include opencdk.h in the release.
3022 Reported by Roman Bogorodskiy <novel@FreeBSD.org>.
3024 ** API and ABI modifications:
3025 No changes since last version.
3027 * Version 1.7.10 (released 2007-05-25)
3029 ** New API functions to extract DER encoded X.509 Subject/Issuer DN.
3030 Suggested by Nate Nielsen <nielsen-list@memberwebs.com>.
3032 ** Update of gnulib files.
3034 ** GnuTLS is now developed in GIT instead of CVS.
3035 See <http://repo.or.cz/w/gnutls.git> for a public repository.
3037 ** API and ABI modifications:
3038 gnutls_x509_crt_get_raw_issuer_dn: ADD.
3039 gnutls_x509_crt_get_raw_dn: ADD.
3041 * Version 1.7.9 (released 2007-05-12)
3043 ** X.509 certificates are preferred over OpenPGP keys.
3044 This is a change in the semantics of gnutls_set_default_priority.
3046 ** The included copy of OpenCDK has been updated to 0.6.1.
3047 There has been some API changes in OpenCDK, and the GnuTLS layer have
3048 been modified as well.  Note that while there are API/ABI incompatible
3049 changes in OpenCDK, this does not influence GnuTLS's API/ABI because
3050 its API/ABI have not changed.  From this version on, GnuTLS requires
3051 OpenCDK 0.6.0 or later.
3053 ** Fix build failure caused by missing doc/gnutls-logo.pdf.
3055 ** Change certtool's default serial number from 0 to a time-based value.
3057 ** Fix X.509 signing with RSA-PKCS#1 to set a NULL parameters fields.
3058 Before, we remove the parameters field, which resulted in a slightly
3059 different DER encoding which in turn caused signature verification
3060 failures of GnuTLS-generated RSA certificates in some other
3061 implementations (e.g., GnuPG 2.x's gpgsm).  Depending on which RFCs
3062 you read, this may or may not be correct, but our new behaviour appear
3063 to be consistent with other widely used implementations.
3065 ** Fix mem leaks in gnutls_x509_crt_print.
3067 ** API and ABI modifications:
3068 No changes since last version.
3070 * Version 1.7.8 (released 2007-04-16)
3072 ** Added examples for the authorization extension.
3073 See doc/examples/ex-client-authz.c and doc/examples/ex-serv-authz.c.
3075 ** The examples only use gnutls_set_default_priority().
3076 The exception is when DH_ANON is needed.
3078 ** Improve gnutls_set_default_priority() priorities.
3079 The new approach is for it to try and negotiate all secure and
3080 standard mechanisms available.  Currently, DH_ANON ciphersuites and
3081 LZO compressions are not enabled by default, because they are,
3082 respectively, insecure and non-standardized.  Note that TLS 1.2 will
3083 not be enabled by default in non-experimental release until it has
3084 been approved by the IETF.
3086 ** gnutls-cli and gnutls-serv now uses the library's default priorities.
3087 This means that to get DH_ANON and LZO compression, you'll need to
3088 specify that manually using '--kx anon' or '--comp lzo'.
3090 ** Minor fixes to the human display format of X.509 certificates.
3092 ** New APIs to extract Distinguished Name's from X.509 certificates.
3093 Based on patch from Howard Chu <hyc@symas.com>.
3095 ** Improved library searching for opencdk.
3096 It will now add the appropriate -R or -Wl,-rpath flags as necessary.
3097 The deprecated opencdk.m4 is no longer used.
3099 ** New APIs to list supported algorithms in the library.
3100 The APIs are gnutls_cipher_list, gnutls_mac_list,
3101 gnutls_compression_list, gnutls_protocol_list,
3102 gnutls_certificate_type_list, gnutls_kx_list, and
3103 gnutls_cipher_suite_info.  Suggested by Howard Chu <hyc@symas.com>.
3105 ** The gnutls_x509_crt_get_key_id API now handle non-RSA/DSA keys.
3107 ** New configure option --disable-tls-authorization to disable tls-authz.
3109 ** Fix prototype for `gnutls_psk_set_client_credentials'.
3110 The last parameter was renamed from 'flags' to 'format' and the type
3111 changed from 'unsigned int' to 'gnutls_psk_key_flags' (an enum type),
3112 which shouldn't cause any ABI changes.  Reported by ludo@chbouib.org
3113 (Ludovic Courtès).
3115 ** Fix allocation in gnutls_certificate_set_openpgp_key.
3116 Tiny patch from ludo@chbouib.org (Ludovic Courtès).
3118 ** API and ABI modifications:
3119 gnutls_x509_dn_t: ADD.
3120 gnutls_x509_ava_st: ADD.
3121 gnutls_x509_crt_get_subject,
3122 gnutls_x509_crt_get_issuer: ADD.
3123 gnutls_x509_dn_get_rdn_ava: ADD.
3124 gnutls_cipher_list: ADD.
3125 gnutls_mac_list: ADD.
3126 gnutls_compression_list: ADD.
3127 gnutls_protocol_list: ADD.
3128 gnutls_certificate_type_list: ADD.
3129 gnutls_kx_list: ADD.
3130 gnutls_cipher_suite_info: ADD.
3132 * Version 1.7.7 (released 2007-02-22)
3134 ** Support for supplemental handshake messages and authorization data.
3135 Supplemental data is described in RFC 4680 and the authorization
3136 extensions in draft-housley-tls-authz-extns-07.
3138 ** Support for authorization data in gnutls-cli and gnutls-serv.
3139 New parameters --authz-x509-attr-cert and --authz-saml-assertion.
3141 ** Fix for gnutls_x509_crt_check_hostname.
3142 Before it would have reported that the certificate matched a hostname
3143 when it did not have any dNSName or any CN field.  Report and tiny
3144 patch from "Richard W.M. Jones" <rjones@redhat.com>.
3146 ** New self test for RFC 2818 comparison in gnutls_x509_crt_check_hostname.
3147 Tests regressions of the bug, and several other features.
3149 ** GnuTLS now matches URI's with IP Addresses against iPAddress SAN's.
3150 Before there were no support for iPAddress SAN's during comparison.
3152 ** New API to print information about CRL's.
3153 The function is gnutls_x509_crl_print.
3155 ** New API to extract signature value from CRL's.
3156 The function is gnutls_x509_crl_get_signature.
3158 ** Support for directoryName Subject Alternative Name's.
3159 The gnutls_x509_crt_get_subject_alt_name function returns the DN as a
3160 string in the provided buffer.
3162 ** Internal improvements to certtool.
3163 It uses gnutls_x509_crl_print to print CRL information.  It uses some
3164 more gnulib modules to simplify error handling.
3166 ** API and ABI modifications:
3167 GNUTLS_HANDSHAKE_SUPPLEMENTAL: ADD, new gnutls_handshake_description_t element.
3168 gnutls_supplemental_data_format_type_t: ADD.
3169 gnutls_authz_data_format_type_t: ADD.
3170 gnutls_supplemental_get_name: ADD.
3171 gnutls_authz_recv_callback_func,
3172 gnutls_authz_send_callback_func: ADD, callback prototypes.
3173 gnutls_authz_enable: ADD.
3174 gnutls_authz_send_x509_attr_cert,
3175 gnutls_authz_send_saml_assertion,
3176 gnutls_authz_send_x509_attr_cert_url,
3177 gnutls_authz_send_saml_assertion_url: ADD.
3178 GNUTLS_SAN_DN: ADD, new gnutls_x509_subject_alt_name_t element.
3179 gnutls_x509_crl_print: ADD.
3180 gnutls_x509_crl_get_signature: ADD.
3182 * Version 1.7.6 (released 2007-02-12)
3184 ** Support for 'otherName' Subject Alternative Names.
3185 The existing API gnutls_x509_crt_get_subject_alt_name may now return
3186 the new type GNUTLS_SAN_OTHERNAME together with the otherName value.
3187 To find out the otherName OID (necessary for proper parsing of the
3188 value), use the new API gnutls_x509_crt_get_subject_alt_othername_oid.
3189 For known OIDs, gnutls_x509_crt_get_subject_alt_othername_oid will
3190 return "virtual" SAN values, e.g., GNUTLS_SAN_OTHERNAME_XMPP to
3191 simplify OID matching.  Suggested by Matthias Wimmer <m@tthias.eu>.
3193 ** Certtool can print otherName SAN values for certificates.
3194 For known otherName OIDs (currently only id-on-xmppAddr as defined by
3195 RFC 3920), it will also print the name.
3197 ** Fix TLS 1.2 RSA signing in servers.
3198 Before it used the old-style MD5+SHA1 signature, but the TLS
3199 signatures should be normal PKCS#1 signatures.  FYI, we use and
3200 require that DigestInfo parameters are present and NULL for TLS 1.2.
3202 ** Add APIs to access X.509 extensions sequentially.
3203 The existing APIs gnutls_x509_crt_get_extension_oid() and
3204 gnutls_x509_crt_get_extension_by_oid() does not permit callers to
3205 inspect the extensions in the order defined by the certificate.
3207 ** Add API to extract signature value from X.509 certificates.
3208 The function is gnutls_x509_crt_get_signature.
3210 ** Fix crash when generating proxy certificates in batch mode.
3211 If you don't specify a proxy policy in batch mode, it will use
3212 id-ppl-inheritALL.
3214 ** Add API to print information about X.509 certificates.
3215 The function is gnutls_x509_crt_print.
3217 ** Certtool uses the new API gnutls_x509_crt_print to print certificate info.
3218 One consequence of this is that the output syntax has changed
3219 slightly.  Some more fields are printed.
3221 ** Doc fixes.
3223 ** API and ABI modifications:
3224 gnutls_x509_crt_print: ADD
3225 gnutls_certificate_print_formats_t: ADD, new enum.
3226 gnutls_x509_crt_get_signature: ADD.
3227 gnutls_x509_crt_get_extension_data: ADD.
3228 gnutls_x509_crt_get_extension_info: ADD.
3229 gnutls_x509_crt_get_subject_alt_othername_oid: ADD.
3230 GNUTLS_SAN_OTHERNAME: ADD, new gnutls_x509_subject_alt_name_t element.
3231 GNUTLS_SAN_OTHERNAME_XMPP: ADD, new gnutls_x509_subject_alt_name_t element.
3233 * Version 1.7.5 (released 2007-02-06)
3235 ** Servers won't negotiate SRP RSA/DSS cipher suites if no SRP credential
3236 ** is set.
3238 ** Default behaviour for the gnutls-cli and gnutls-serv tools improved.
3240 ** Fix --list output for gnutls-cli and gnutls-serv.
3241 Mention TLS1.2, SHA512 etc.
3243 ** Manual contains new section on setting up a test HTTP server.
3244 A server set up following those descriptions are available online via
3245 <http://www.gnutls.org/server.html>.
3247 ** Update of gnulib files.
3249 ** API and ABI modifications:
3250 No changes since last version.
3252 * Version 1.7.4 (released 2007-02-05)
3254 ** Support for RSA signing using SHA-256/384/512.
3255 A new self test "sha2" tries to build a long X.509 certificate chain
3256 testing all new hashes.
3258 ** The gnutls-serv tool now use static DH parameters if none are supplied.
3260 ** Discuss proxy certificates in the manual.
3262 ** Improve bibliographical citations in the manual.
3264 ** Update of gnulib files.
3266 ** Fix certtool template handling of pathLenConstraints.
3267 It now defaults to -1 instead of 0, which causes the field to be
3268 missing unless the template specify it.
3270 ** API and ABI modifications:
3271 GNUTLS_MAC_SHA256,
3272 GNUTLS_MAC_SHA384,
3273 GNUTLS_MAC_SHA512: New gnutls_mac_algorithm_t values.
3274 GNUTLS_DIG_SHA256,
3275 GNUTLS_DIG_SHA384,
3276 GNUTLS_DIG_SHA512: New gnutls_digest_algorithm_t values.
3277 GNUTLS_SIGN_RSA_SHA256,
3278 GNUTLS_SIGN_RSA_SHA384,
3279 GNUTLS_SIGN_RSA_SHA512: New gnutls_sign_algorithm_t values.
3281 * Version 1.7.3 (released 2007-02-01)
3283 ** New option to certtool: --generate-proxy.
3284 This will generate a Proxy Certificate from an end entity certificate.
3285 Proxy Certificates are documented in RFC 3820.  You will need to
3286 specify the proxy certificate's private key with --load-privkey, the
3287 user certificate with --load-certificate and the private key used to
3288 sign the new proxy certificate with --load-ca-privkey.  Certtool will
3289 query for proxy path length and the policy language OID.  Currently
3290 only OIDs that have an empty policy are supported (which includes the
3291 two OIDs defined by RFC 3820).
3293 ** Certtool --certificate-info now prints information for Proxy Certificates.
3294 Before the proxy extension was just printed as DER encoded data.
3296 ** New APIs to set proxy subject names and get/set proxy cert extension.
3298 ** Fix parsing of pathLenConstraints in BasicConstraints with missing cA.
3300 ** Added self-test to test for regressions of pathLenConstraint bug.
3301 Incidentally, this also test (some) other regressions or changes in
3302 the output from certtool --certificate-info.
3304 ** When certtool generates CA certificates, pressing enter on the path
3305 ** length constraint query will now remove the field.
3306 Before it set the path length constraint to 0, which is a rather poor
3307 default.
3309 ** Certtool now print times in UTC when printing certificate/CRL info.
3311 ** Add better fix to work around C++ compiler bug on Mac OS X.
3312 Reported and tiny patch provided by Matthias Scheler <tron@NetBSD.org>.
3314 ** Fix import of ASCII armored OpenPGP keys.
3315 Patch by ludovic.courtes@laas.fr (Ludovic Courtès).
3317 ** Update of gnulib files.
3319 ** API and ABI modifications:
3320 gnutls_x509_crt_set_proxy_dn: ADD.
3321 gnutls_x509_crt_set_proxy: ADD.
3322 gnutls_x509_crt_get_proxy: ADD.
3324 * Version 1.7.2 (released 2007-01-14)
3326 ** Certtool now print the value of the pathLenConstraints field for certs.
3328 ** Certtool now query for path length constraints when generating CA certs.
3329 For batch uses, the certtool configuration name is "path_len".
3330 Suggested by Sascha Ziemann <sascha.ziemann@secunet.com>.
3332 ** Add new API to get/set pathLenConstraint in the Basic Constraints.
3333 The new functions gnutls_x509_crt_get_basic_constraints and
3334 gnutls_x509_crt_set_basic_constraints provide a superset of the
3335 functionality in the old gnutls_x509_crt_get_ca_status and
3336 gnutls_x509_crt_set_ca_status (respectively), but the old functions
3337 will continue to be supported.
3339 ** Add new API in OpenCDK to extract public/secret OpenPGP key to S-expr.
3340 The functions are cdk_pubkey_to_sexp and cdk_seckey_to_sexp.  A proper
3341 OpenCDK release with this patch will be made soon, which should bump
3342 the OpenCDK version number.  Patch by Mario Lenz <mario.lenz@gmx.net>.
3344 ** Certtool --to-p12 can now store more than one certificate in the blob.
3345 Before it could only store one certificate, but now it will read and
3346 store as many certificate there are from the --load-certificate file.
3347 Suggested by Sascha Ziemann <sascha.ziemann@secunet.com>.
3349 ** Clean up separation of gnutls and gnutls-extra for OpenPGP.
3350 In particular, the OpenPGP function variables are no longer part of
3351 the exported libgnutls interface, and no header files from
3352 libgnutls-extra (GPL) are needed by libgnutls (LGPL).  The variables
3353 were never intended for non-internal purposes, and thus this does not
3354 imply a change in the external API/ABI.
3356 ** Print URL to gaa when missing, and fix srcdir!=builddir for GAA files.
3357 Reported by ludovic.courtes@laas.fr (Ludovic Courtès).
3359 ** GnuTLS no longer uses -mms-bitfields --enable-runtime-pseudo-reloc.
3360 Before these parameters were set to make GnuTLS build under mingw32,
3361 however, they appear to no longer be necessary.
3363 ** A minor fix to the C++ library to make it build.
3364 Reported by Pavlov Konstantin <thresh@altlinux.ru>.
3366 ** Update of gnulib files.
3368 ** API and ABI modifications:
3369 gnutls_x509_crt_get_basic_constraints: ADD.
3370 gnutls_x509_crt_set_basic_constraints: ADD.
3371 cdk_pubkey_to_sexp: ADD (in opencdk).
3372 cdk_seckey_to_sexp: ADD (in opencdk).
3374 * Version 1.7.1 (released 2006-12-28)
3376 ** TLS 1.2 server side fix.
3377 The Certificate Request sent did not contain the list of supported
3378 hashes field, thus violating the protocol.  It will now contain an
3379 empty list.  Reported by ludovic.courtes@laas.fr (Ludovic Courtès).
3381 ** TLS 1.2 DSA signature verification fix.
3382 Reported by ludovic.courtes@laas.fr (Ludovic Courtès).
3384 ** Fix the list of trusted CAs that server's send to clients.
3385 Before, the list contained issuer DN's instead of subject DN's of the
3386 trusted CAs.  Reported by Max Kellermann <max@duempel.org>.
3388 ** Fix gnutls_certificate_set_x509_crl to initialize the CRL before using it.
3389 Also added a self-test in tests/certificate_set_x509_crl.c to test the
3390 function.  Reported by Max Kellermann <max@duempel.org>.
3392 ** Encode UID fields in DN's as DirectoryString.
3393 Before GnuTLS encoded and parsed UID fields as IA5String.  This was
3394 incorrect, it should have used DirectoryString.  Now it will use
3395 DirectoryString for the UID field, but for backwards compatibility it
3396 will also accept IA5String UID's.  Reported by Max Kellermann
3397 <max@duempel.org>.
3399 ** Improve out-of-sourcedir builds from CVS.
3400 Reported by ludovic.courtes@laas.fr (Ludovic Courtès).
3402 ** Bootstrap tools changed.
3403 We now require autoconf 2.61, automake 1.10, and gettext 0.16, when
3404 building GnuTLS from CVS.  Libtool 1.5.22 is used.
3406 ** Fixed a syntax error in lib/gnutls.asn.
3407 Reported by Paul Millar <p.millar@physics.gla.ac.uk>.
3409 ** Added German translation of GnuTLS messages.
3411 ** Update of gnulib files.
3413 ** API and ABI modifications:
3414 No changes since last version.
3416 * Version 1.7.0 (released 2006-11-29)
3418 ** The default protocol priority try TLS 1.1 and TLS 1.2 too.
3419 The details is that the protocol priority set by
3420 `gnutls_set_default_priority' has been changed from TLS 1.0 and SSL
3421 3.0 to TLS 1.2, TLS 1.1, TLS 1.0 and SSL 3.0.
3423 ** Preliminary support for TLS 1.2.
3424 The client has been successfully tested against
3425 https://www.mikestoolbox.org:4433/.
3427 ** Anonself test now print a lot of debugging info, including TLS version.
3429 ** Doc fixes in OpenCDK, to avoid some gtk-doc warnings.
3431 ** Update of gnulib files.
3433 ** API and ABI modifications:
3434 GNUTLS_TLS1_2: New gnutls_protocol_t enum member.
3436 *** Pulled up from stable 1.6.x branch:
3438 ** Fix ./configure failure with non-GCC compilers.
3439 This fixes the following error message:
3440 configure: error: conditional "HAVE_LD_OUTPUT_DEF" was never defined.
3441 Reported by "Michael C. Vergallen" <mvergall@telenet.be>.
3443 * Version 1.6.3 (released 2007-05-26)
3445 ** New API functions to extract DER encoded X.509 Subject/Issuer DN.
3446 Suggested by Nate Nielsen <nielsen-list@memberwebs.com>.  Backported
3447 from the 1.7.x branch, see
3448 <http://lists.gnu.org/archive/html/help-gnutls/2007-05/msg00029.html>.
3450 ** Have PKCS8 parser return better error codes.
3451 Reported by Nate Nielsen <nielsen-list@memberwebs.com>, see
3452 <http://lists.gnupg.org/pipermail/gnutls-dev/2007-May/001653.html> and
3453 <http://lists.gnupg.org/pipermail/gnutls-dev/2007-May/001654.html>.
3455 ** Fix mem leak for sessions with client authentication via certificates.
3456 Reported by Andrew W. Nosenko <andrew.w.nosenko@gmail.com>, see
3457 <http://lists.gnupg.org/pipermail/gnutls-dev/2007-April/001539.html>.
3459 ** Fix building of 'tlsia' self test.
3460 Earlier some gcc are known to build tlsia linking to
3461 $prefix/lib/libgnutls-extra.so rather than the libgnutls-extra.so in
3462 the build directory, even though command line parameters look OK.
3463 Changing order of some parameters fixes it.
3465 ** API and ABI modifications:
3466 gnutls_x509_crt_get_raw_issuer_dn: ADD.
3467 gnutls_x509_crt_get_raw_dn: ADD.
3469 * Version 1.6.2 (released 2007-04-18)
3471 ** Fix X.509 signing with RSA-PKCS#1 to set a NULL parameters fields.
3472 Before, we remove the parameters field, which resulted in a slightly
3473 different DER encoding which in turn caused signature verification
3474 failures of GnuTLS-generated RSA certificates in some other
3475 implementations (e.g., GnuPG 2.x's gpgsm).  Depending on which RFCs
3476 you read, this may or may not be correct, but our new behaviour appear
3477 to be consistent with other widely used implementations.
3479 ** Regenerate the PKIX ASN.1 syntax tree.
3480 For some reason, after changing the ASN.1 type of ldap-UID in the last
3481 release, the generated C file built from the ASN.1 schema was not
3482 refreshed.  This can cause problems when reading/writing UID
3483 components inside X.500 Distinguished Names.  Reported by devel
3484 <dev001@pas-world.com>.
3486 ** Updated translations.
3488 ** API and ABI modifications:
3489 No changes since last version.
3491 * Version 1.6.1 (released 2006-12-28)
3493 ** Fix the list of trusted CAs that server's send to clients.
3494 Before, the list contained issuer DN's instead of subject DN's of the
3495 trusted CAs.  Reported by Max Kellermann <max@duempel.org>.
3497 ** Fix gnutls_certificate_set_x509_crl to initialize the CRL before using it.
3498 Reported by Max Kellermann <max@duempel.org>.
3500 ** Encode UID fields in DN's as DirectoryString.
3501 Before GnuTLS encoded and parsed UID fields as IA5String.  This was
3502 incorrect, it should have used DirectoryString.  Now it will use
3503 DirectoryString for the UID field, but for backwards compatibility it
3504 will also accept IA5String UID's.  Reported by Max Kellermann
3505 <max@duempel.org>.
3507 ** Fix ./configure failure with non-GCC compilers.
3508 This fixes the following error message:
3509 configure: error: conditional "HAVE_LD_OUTPUT_DEF" was never defined.
3510 Reported by "Michael C. Vergallen" <mvergall@telenet.be>.
3512 ** API and ABI modifications:
3513 No changes since last version.
3515 * Version 1.6.0 (released 2006-11-17)
3517 ** No changes since 1.5.5.
3518 The major changes compared to the 1.4.x branch are:
3520 *** A GnuTLS C++ library is part of the official distribution.
3521 Currently there are no examples or documentation, but hopefully this
3522 will change.  See gnutlsxx.h for the API.
3524 *** Windows is a supported platform.
3525 There are, however, two know bugs.  One is related to select() in
3526 command line tools (not, nota bene, in the library), the other is a
3527 problem with libgcrypt that causes delays.  Help is needed to resolve
3528 those issues, so we feel we can't delay the release because of this.
3530 *** New APIs for custom push/pull function error reporting.
3531 The new APIs are gnutls_transport_set_errno and
3532 gnutls_transport_set_global_errno.  See the release notes for version
3533 1.5.4 for more information.
3535 *** Self tests are run under valgrind, if available.  See --disable-valgrind.
3537 * Version 1.5.5 (released 2006-11-16)
3539 ** Correctly bump shared library version after adding new APIs.
3540 This was forgotten in the last release.
3542 ** Fix unsigned vs signed problem in ex-x509-info.c example.
3543 Reported by Tim Kosse <tim.kosse@filezilla-project.org>.
3545 ** Fix the rsa-md5-collision self test to work for MinGW+Wine.
3547 ** Update of gnulib files.
3549 ** API and ABI modifications:
3550 No changes since last version.
3552 * Version 1.5.4 (released 2006-11-07)
3554 ** New API functions to set errno in push/pull functions.
3555 Under Windows, setting the errno variable in a push/pull replacement
3556 may end up setting the wrong errno variable, and GnuTLS send/recv
3557 functions become confused about the real errno returned from a failed
3558 push/pull function.  Therefor, we have added two APIs to set the errno
3559 variable used by GnuTLS.  The APIs can also help to keep things
3560 thread-safe, by avoiding potentially global variables.  Typically,
3561 instead of setting errno in your push/pull function, you will call one
3562 of these functions.  It is recommended to use
3563 gnutls_transport_set_errno, but if you don't have the session variable
3564 easily accessible in the push/pull replacement function, you can use
3565 gnutls_transport_set_global_errno.  Suggested by Tim Kosse
3566 <tim.kosse@filezilla-project.org>.
3568 void gnutls_transport_set_errno (gnutls_session_t session, int err);
3569 void gnutls_transport_set_global_errno (int err);
3571 ** When calling `recv' or `send' Windows errors are handled properly.
3572 The Windows recv/send functions doesn't use errno, and GnuTLS now use
3573 WSAGetLastError to access the error condition instead.
3575 ** Several OpenPGP API fixes.
3576 All suggested by ludovic.courtes@laas.fr (Ludovic Courtès).  The most
3577 important fix is to change the return value of
3578 gnutls_openpgp_privkey_get_pk_algorithm and
3579 gnutls_openpgp_key_get_pk_algorithm from 'int' to
3580 'gnutls_pk_algorithm_t', which is an enum type (and thus API/ABI
3581 compatible with 'int').
3583 ** When a GnuTLS server receive a SSLv2 Client Hello for an unknown TLS
3584 ** version, try to negotiate the highest version support by the GnuTLS server,
3585 ** instead of the lowest.
3586 Reported by <Pasi.Eronen@nokia.com>.
3588 ** Replace old constructs with use of gnulib modules.
3589 For example, we can now assume unistd.h, sys/stat.h, sys/socket.h in
3590 the code.  If the headers doesn't exist on the target system, gnulib
3591 will make sure its replacement header files are used instead.
3593 ** Fix SOVERSION computation for *.def files.
3594 This fixes build errors similar to "No rule to make target
3595 `libgnutls-`expr', needed by `all-am'." when building for Windows.
3597 ** gnutls_check-version uses strverscmp from gnulib.
3599 ** Update of gnulib files.
3601 ** API and ABI modifications:
3602 gnutls_transport_set_errno: ADD
3603 gnutls_transport_set_global_errno: ADD
3605 * Version 1.5.3 (released 2006-10-26)
3607 ** Add new self-test of RSA-MD5 signature chains.
3608 Note that we already, since GnuTLS 1.2.9, reject RSA-MD5 signatures
3609 when verifying X.509 chains.  The code is in tests/rsa-md5-collision/
3610 and is based on the work by Marc Stevens et al, see
3611 <http://www.win.tue.nl/hashclash/TargetCollidingCertificates/>.
3613 ** Re-factor self tests.
3615 ** The include copy of Libtasn1 is updated to version 0.3.7.
3617 ** The included copy of OpenCDK is updated to version 0.5.11.
3619 ** Fix the filename of the *.def file on Windows after library version bump.
3621 ** Separated the gnulib directory into one for LGPL modules and one for GPL.
3622 This allows the GPL'd part of GnuTLS to take advantage of the GPL'd
3623 gnulib modules.  Earlier we could only use the LGPL'ed module from
3624 gnulib, because two gnulib directories in the same project didn't
3625 work.
3627 ** API and ABI modifications:
3628 No changes since last version.
3630 * Version 1.5.2 (released 2006-10-03)
3632 ** Decrement the shared library version back to 13 (as in the 1.4.x branch).
3633 Note that if you installed 1.5.0 or 1.5.1, they will have a higher
3634 shared library version than this version, so you'll have to remove
3635 them and possibly relink your applications.  The reason for this is
3636 that no API/ABI changes have been made since the 1.4.x branch, and
3637 that incrementing the shared library version was a mistake.  Reported
3638 by Andreas Metzler <ametzler@downhill.at.eu.org>.
3640 ** Fix off-by-one error when computing length to malloc.
3641 The code is used by gnutls_openpgp_add_keyring_file and
3642 gnutls_openpgp_add_keyring_mem.  Reported by "Adam Langley"
3643 <agl@imperialviolet.org>.
3645 ** Add version script for the GnuTLS C++ library.
3646 Reported by Andreas Metzler <ametzler@downhill.at.eu.org>.
3648 ** Fix the C++ compiler detection logic.
3649 Reported by Andreas Metzler <ametzler@downhill.at.eu.org>.
3651 ** Update of gnulib files.
3653 ** API and ABI modifications:
3654 No changes since last version.
3656 * Version 1.5.1 (released 2006-09-21)
3658 ** Fix PKCS#1 verification to avoid a variant of Bleichenbacher's
3659 ** Crypto 06 rump session attack.
3660 In particular, we check that the digestAlgorithm.parameters field is
3661 missing or empty, to avoid that it can contain "garbage" that may be
3662 used to alter the numeric properties of the signature.  See
3663 <http://www.imc.org/ietf-openpgp/mail-archive/msg14307.html> (which is
3664 not exactly the same as the problem we fix here).  Reported by Yutaka
3665 OIWA <y.oiwa@aist.go.jp>.
3667 See GNUTLS-SA-2006-4 on http://www.gnutls.org/security.html for more
3668 up to date information.
3670 ** Add self test to test for above flaw.
3672 ** Fix gnutls-cli-debug regarding resume support detection.
3673 Earlier, if the session-id from the server had a length of 0, it would
3674 indicate that the server supports resumption, which isn't the case.
3675 Reported by Kataja Kai <kai.kataja@op.fi>.
3677 ** Fix building of examples on FreeBSD by including netinet/in.h.
3678 Reported by Roman Bogorodskiy <novel@FreeBSD.org>.
3680 ** Fix certtool bug that caused the private key to not be loaded when
3681 generating a certificate with --load-request, which in turn triggered
3682 another unrelated bug in gnutls_x509_crt_sign2 (also fixed).  Reported
3683 by Sascha Ziemann <sascha.ziemann@secunet.com>.
3685 ** gnutls-cli and gnutls-serv works on Windows.
3686 The problem was the select() call that doesn't work on file
3687 descriptors (stdin) on Windows.  We borrowed some code from plibc to
3688 solve this.  It appears to be somewhat unreliable though.
3690 ** Autoconf 2.60 is now used.
3692 ** API and ABI modifications:
3693 No changes since last version.
3695 * Version 1.5.0 (released 2006-08-13)
3697 ** Change SRP and Cert-Type extensions to match IANA registry.
3699 ** Fixed bug in OpenPGP authentication handshake.
3701 ** Improvements for building under MinGW.
3702 Provides internal inet_ntop and inet_pton functions and arpa/inet.h
3703 header.  Calls WSAStartup and WSACleanup in gnutls_global_init and
3704 gnutls_global_deinit, respectively.  Loads getaddrinfo and getnameinfo
3705 at run-time from ws2_32.dll, and falls back on a simple replacement if
3706 it is not available.  Builds the library with -mms-bitfields
3707 -Wl,--enable-runtime-pseudo-reloc.  Links with --output-def, to
3708 create *.def files, which are installed.
3710 ** The examples now (conditionally) include config.h and link to gnulib.
3711 No other source changes were necessary, so the examples should
3712 continue to be possible to use stand-alone without any autoconf or
3713 gnulib stuff.
3715 ** Added C++ header "gnutlsxx.h" and library "libgnutlsxx".
3716 You may unconditionally disable it with --disable-cxx.  See
3717 includes/gnutls/gnutlsxx.h and lib/gnutlsxx.cpp for the
3718 implementation.
3720 ** Made command line tool '--version' behave according to GNU Standards.
3721 This enables 'make distcheck' to succeed.
3723 ** OpenCDK updated to 0.5.9 to fix some problems with OpenPGP support.
3725 ** Make --without-included-libtasn1 work.
3726 Reported by Daniel Black <dragonheart@gentoo.org>.
3728 ** Fix a crash (strcmp() on a NULL value) in the certificate verification logic.
3729 See http://www.gnu.org/software/gnutls/security.html regardging
3730 GNUTLS-SA-2006-2 for more up to date information.  Reported by
3731 satyakumar <satyam_kkd@hyd.hellosoft.com>.
3733 ** API and ABI modifications:
3734 No changes since last version.
3736 * Version 1.4.5 (released 2006-11-06)
3738 ** When a GnuTLS server receive a SSLv2 Client Hello for an unknown TLS
3739 ** version, try to negotiate the highest version support by the GnuTLS server,
3740 ** instead of the lowest.
3741 Reported by <Pasi.Eronen@nokia.com>.
3743 ** Fix typo in doc/examples/ex-serv-pgp.c.
3744 Reported by Adam Langley" <agl@imperialviolet.org>.
3746 ** API and ABI modifications:
3747 No changes since last version.
3749 * Version 1.4.4 (released 2006-09-12)
3751 ** Relax the test that caught signatures that exploit the variant of
3752 ** Bleichenbacher's Crypto 06 rump session attack on our
3753 ** verification logic flaw.
3754 In particular, we now permit the digestAlgorithm.parameters field to
3755 be present but empty, whereas in 1.4.3 we actually checked that the
3756 field was absent.
3758 ** Revert the removal of debug information for the GNUTLS-SA-2006-3 problem.
3759 The messages are only printed in debug mode, which is not recommended
3760 for normal use, and thus logging this situation cannot be abused as an
3761 oracle in typical recommended situations.
3763 ** API and ABI modifications:
3764 No changes since last version.
3766 * Version 1.4.3 (released 2006-09-08)
3768 ** Fix PKCS#1 verification to avoid a variant of Bleichenbacher's
3769 ** Crypto 06 rump session attack.
3770 In particular, we check that the digestAlgorithm.parameters field is
3771 empty, to avoid that it can contain "garbage" that may be used to
3772 alter the numeric properties of the signature.  See
3773 <http://www.imc.org/ietf-openpgp/mail-archive/msg14307.html> (which is
3774 not exactly the same as the problem we fix here).  Reported by Yutaka
3775 OIWA <y.oiwa@aist.go.jp>.
3777 See GNUTLS-SA-2006-4 on http://www.gnutls.org/security.html for more
3778 up to date information.
3780 ** Fix PKCS#1 decryption to avoid Bleichenbacher's Crypto 98 attack.
3781 See <http://www.bell-labs.com/user/bleichen/papers/pkcs.ps.gz>.
3782 Reported by Werner Koch <wk@gnupg.org>.
3784 See GNUTLS-SA-2006-3 on http://www.gnutls.org/security.html for more
3785 up to date information.
3787 ** Fix crash in gnutls_x509_crt_sign2 if passed a NULL issuer_key.
3789 ** API and ABI modifications:
3790 No changes since last version.
3792 * Version 1.4.2 (released 2006-08-12)
3794 ** Fix a crash (strcmp() on a NULL value) in the certificate verification logic.
3795 This can happen if you call gnutls_certificate_verify_peers2 and have
3796 a certain mix of local CA certificates and the peer send special
3797 certificates, that together trigger certain behaviour.  It is not
3798 known at this point whether the crash can be triggered without the
3799 special local CA certificate, and thus turn this into a remote crash
3800 of clients that verify server certificates when they talk to a server
3801 with the special server certificate.  See GNUTLS-SA-2006-2 on
3802 http://www.gnu.org/software/gnutls/security.html for more up to date
3803 information.  Reported by satyakumar <satyam_kkd@hyd.hellosoft.com>.
3805 ** Change SRP and Cert-Type extensions to match IANA registry.
3807 ** OpenCDK updated to 0.5.9 to fix some problems with OpenPGP support.
3809 ** Make --without-included-libtasn1 work.
3810 Reported by Daniel Black <dragonheart@gentoo.org>.
3812 ** API and ABI modifications:
3813 No changes since last version.
3815 * Version 1.4.1 (released 2006-06-14)
3817 ** Replaced inactive ifdefs to enable openpgp support in test programs.
3819 ** Fixed bug in OpenPGP authentication handshake.
3821 ** Fixed typographical in man pages.
3823 ** Build fixes of the manual.
3825 ** Added Swedish translation.
3827 ** API and ABI modifications:
3828 No changes since last version.
3830 * Version 1.4.0 (released 2006-05-15)
3832 ** Remove GnuTLS 0.8.x compatibility functions.
3834 ** The libgcrypt RNG is initialized in gnutls_global_init().
3836 ** TLS/IA API changes from Emile van Bergen.
3837 A dummy credential structure is not needed now, if you wish to use the
3838 low-level TLS/IA API, simply call gnutls_ia_enable to enable TLS/IA on
3839 a session.
3841 ** The self-tests are now run under valgrind, if it is installed.
3843 ** Libtasn1 is updated to 0.3.4, and that version is now required.
3845 ** The command line tools now use getaddrinfo and support IPv6.
3847 ** API and ABI modifications:
3848 _gnutls_x509_get_raw_crt_activation_time,
3849 _gnutls_x509_get_raw_crt_expiration_time: Removed.
3850 gnutls_ia_require_inner_phase: Removed, replaced by gnutls_ia_enable.
3851 gnutls_ia_enable: Added.
3853 * Version 1.3.5 (released 2006-03-08)
3855 ** Error messages are now translated using GNU Gettext.
3857 ** The function gnutls_x509_crt_to_xml now return an internal error.
3858 This means that the code to convert X.509 certificates to XML format
3859 does not work any more.  The reason is that the function called
3860 libtasn1 internal functions.  It seems unclean for libtasn1 to export
3861 the APIs needed here.  Instead it would be better to implement XML
3862 support inside libtasn1 properly.  If you need this functionality
3863 strongly, please consider looking into implementing this suggested
3864 approach instead.  As a workaround, you may also modify lib/x509/xml.c
3865 (change '#if 1' to '#if 0') and build using --with-included-libtasn1.
3867 ** Libraries are now built with libtool's -no-undefined.
3868 This helps producing libraries for Windows using mingw32.
3870 ** Doc fixes to explain that gnutls_record_send can block.
3872 ** Libtasn1 0.3.1 or later is now required.
3873 The include copy has been updated too.
3875 ** gnutls-cli can now recognize services and port numbers with the -p option.
3877 ** API and ABI modifications:
3878 No changes since last version.
3880 * Version 1.3.4 (released 2006-02-09)
3882 ** Fix read of out bounds bug in DER parser.
3883 Reported by Evgeny Legerov <admin@gleg.net>, and debugging help from
3884 Protover SSL.  Libtasn1 0.2.18 is now required, which contains the
3885 previous bug fix.  The included libtasn1 version in GnuTLS has been
3886 updated.
3888 ** Fixed bug in non-blocking gnutls_bye(). gnutls_record_send() will no 
3889 longer invalidate a session if the underlying send fails, but it will 
3890 prevent future writes. That is to allow reading the already received data.
3891 Patches and bug reports by Yoann Vandoorselaere <yoann@prelude-ids.org>
3893 ** Corrected bugs in gnutls_certificate_set_x509_crl() and
3894 gnutls_certificate_set_x509_trust(), that caused memory corruption if 
3895 more than one certificates were added. Report and patch by Max Kellermann.
3897 ** Fix build problems of OpenCDK on AIX.
3898 Thanks to "Heiden, John" <JHeiden@UTNet.UToledo.Edu>.
3900 ** API and ABI modifications:
3901 No changes since last version.
3903 * Version 1.3.3 (released 2006-01-12)
3905 ** New API to access the TLS master secret.
3906 When possible, you should use the TLS PRF functions instead.
3907 Suggested by Jouni Malinen <jkmaline@cc.hut.fi>.
3909 ** Improved handling when multiple libraries use GnuTLS at the same time.
3910 Now gnutls_global_init() can be called multiple times, and
3911 gnutls_global_deinit() will only deallocate the structure when it has
3912 been called as many times as gnutls_global_init() was called.
3914 ** Added a self test of TLS resume functionality.
3916 ** Fix crash in TLS resume code, caused by TLS/IA changes.
3918 ** Documentation fixes about thread unsafety, prompted by
3919 ** discussion with bryanh@giraffe-data.com (Bryan Henderson).
3920 In particular, gnutls_global_init() and gnutls_global_deinit() are not
3921 thread safe.  Careful callers may want to protect the call using a
3922 mutex.  The problem could also be ignored, which would cause a memory
3923 leak under rare conditions when two threads invoke the function
3924 roughly at the same time.
3926 ** Add 'const' keywords in various places, from Frediano ZIGLIO.
3928 ** The code was indented again, including the external header files.
3930 ** API and ABI modifications:
3931 New functions to retrieve the master secret value:
3932   gnutls_session_get_master_secret
3934 Add a 'const' keyword to existing API:
3935   gnutls_x509_crq_get_challenge_password
3937 * Version 1.3.2 (released 2005-12-15)
3939 ** GnuTLS now support TLS Inner application (TLS/IA).
3940 This is per draft-funk-tls-inner-application-extension-01.  This
3941 functionality is added to libgnutls-extra, so it is licensed under the
3942 GNU General Public License.
3944 ** New APIs to access the TLS Pseudo-Random-Function (PRF).
3945 The PRF is used by some protocols building on TLS, such as EAP-PEAP
3946 and EAP-TTLS.  One function to access the raw PRF and one to access
3947 the PRF seeded with the client/server random fields are provided.
3948 Suggested by Jouni Malinen <jkmaline@cc.hut.fi>.
3950 ** New APIs to acceess the client and server random fields in a session.
3951 These fields can be useful by protocols using TLS.  Note that these
3952 fields are typically used as input to the TLS PRF, and if this is your
3953 intended use, you should use the TLS PRF API that use the
3954 client/server random field directly.  Suggested by Jouni Malinen
3955 <jkmaline@cc.hut.fi>.
3957 ** Internal type cleanups.
3958 The uint8, uint16, uint32 types have been replaced by uint8_t,
3959 uint16_t, uint32_t.  Gnulib is used to guarantee the presence of
3960 correct types on platforms that lack them.  The uint type have been
3961 replaced by unsigned.
3963 ** API and ABI modifications:
3964 New functions to invoke the TLS Pseudo-Random-Function (PRF):
3965   gnutls_prf
3966   gnutls_prf_raw
3968 New functions to retrieve the session's client and server random values:
3969   gnutls_session_get_server_random
3970   gnutls_session_get_client_random
3972 New function, to perform TLS/IA handshake:
3973   gnutls_ia_handshake
3975 New function to decide whether to do a TLS/IA handshake:
3976   gnutls_ia_handshake_p
3978 New functions to allocate a TLS/IA credential:
3979   gnutls_ia_allocate_client_credentials
3980   gnutls_ia_free_client_credentials
3981   gnutls_ia_allocate_server_credentials
3982   gnutls_ia_free_server_credentials
3984 New functions to handle the AVP callback:
3985   gnutls_ia_set_client_avp_function
3986   gnutls_ia_set_client_avp_ptr
3987   gnutls_ia_get_client_avp_ptr
3988   gnutls_ia_set_server_avp_function
3989   gnutls_ia_set_server_avp_ptr
3990   gnutls_ia_get_server_avp_ptr
3992 New functions, to toggle TLS/IA application phases:
3993   gnutls_ia_require_inner_phase
3995 New function to mix session keys with inner secret:
3996   gnutls_ia_permute_inner_secret
3998 Low-level API (used internally by gnutls_ia_handshake):
3999   gnutls_ia_endphase_send
4000   gnutls_ia_send
4001   gnutls_ia_recv
4003 New functions that can be used after successful TLS/IA negotiation:
4004   gnutls_ia_generate_challenge
4005   gnutls_ia_extract_inner_secret
4007 Enum type with TLS/IA modes:
4008   gnutls_ia_mode_t
4010 Enum type with TLS/IA packet types:
4011   gnutls_ia_apptype_t
4013 Enum values for TLS/IA alerts:
4014   GNUTLS_A_INNER_APPLICATION_FAILURE
4015   GNUTLS_A_INNER_APPLICATION_VERIFICATION
4017 New error codes, to signal when an application phase has finished:
4018   GNUTLS_E_WARNING_IA_IPHF_RECEIVED
4019   GNUTLS_E_WARNING_IA_FPHF_RECEIVED
4021 New error code to signal TLS/IA verify failure:
4022   GNUTLS_E_IA_VERIFY_FAILED
4024 * Version 1.3.1 (released 2005-12-08)
4026 ** Support for DHE-PSK cipher suites has been added.
4027 This method offers perfect forward secrecy.
4029 ** Fix gnutls-cli STARTTLS hang when SIGINT is sent too quickly, thanks to
4030 Otto Maddox <ottomaddox@fastmail.fm> and Nozomu Ando <nand@mac.com>.
4032 ** Corrected a bug in certtool for 64 bit machines. Reported
4033 by Max Kellermann <max@duempel.org>.
4035 ** New function to set a X.509 private key and certificate pairs, and/or
4036 CRLs, from an PKCS#12 file, suggested by Emile van Bergen
4037 <emile@e-advies.nl>.
4039 The integrity of the PKCS#12 file is protected through a password
4040 based MAC; public-key based signatures for integrity protection are
4041 not supported.  PKCS#12 bags may be encrypted using password derived
4042 symmetric keys, public-key based encryption is not supported.  The
4043 PKCS#8 keys may be encrypted using passwords.  The API use the same
4044 password for all operations.  We believe that any more flexibility
4045 create too much complexity that would hurt overall security, but may
4046 add more PKCS#12 related APIs if real-world experience indicate
4047 otherwise.
4049 ** gnutls_x509_privkey_import_pkcs8 now accept unencrypted PEM PKCS#8 keys,
4050 reported by Emile van Bergen <emile@e-advies.nl>.
4051 This will enable "certtool -k -8" to parse those keys.
4053 ** Certtool now generate keys in unencrypted PKCS#8 format for empty passwords.
4054 Use "certtool -p -8" and press press enter at the prompt.  Earlier,
4055 certtool would have encrypted the key using an empty password.
4057 ** Certtool now accept --password for --key-info and encrypted PKCS#8 keys.
4058 Earlier it would have prompted the user for it, even if --password was
4059 supplied.
4061 ** Added self test of PKCS#8 parsing.
4062 Unencrypted and encrypted (pbeWithSHAAnd3-KeyTripleDES-CBC and
4063 pbeWithSHAAnd40BitRC2-CBC) formats are tested.  The test is in
4064 tests/pkcs8.
4066 ** API and ABI modifications:
4067 New function to set X.509 credentials from a PKCS#12 file:
4068   gnutls_certificate_set_x509_simple_pkcs12_file
4070 New gnutls_kx_algorithm_t enum type:
4071   GNUTLS_KX_DHE_PSK
4073 New API to return session data (basically same as gnutls_session_get_data):
4074   gnutls_session_get_data2
4076 New API to set PSK Diffie-Hellman parameters:
4077   gnutls_psk_set_server_dh_params
4079 * Version 1.3.0 (2005-11-15)
4081 ** Support for TLS Pre-Shared Key (TLS-PSK) ciphersuites have been added.
4082 This add several new APIs, see below.  Read the updated manual for
4083 more information.  A new self test "pskself" has been added, that will
4084 test this functionality.
4086 ** The session resumption data are now system independent.
4088 ** The code has been re-indented to conform to the GNU coding style.
4090 ** Removed the RIPEMD ciphersuites.
4092 ** Added a discussion of the internals of gnutls in manual.
4094 ** Fixes for Tru64 UNIX 4.0D that lack MAP_FAILED, from Albert Chin.
4096 ** Remove trailing comma in enums, for IBM C v6, from Albert Chin.
4098 ** Make sure config.h is included first in a few files, from Albert Chin.
4100 ** Don't use C++ comments ("//") as they are invalid, from Albert Chin.
4102 ** Don't install SRP programs and man pages if --disable-srp-authentication,
4103 from Albert Chin.
4105 ** API and ABI modifications:
4106 New gnutls_kx_algorithm_t key exchange type: GNUTLS_KX_PSK
4108 New gnutls_credentials_type_t credential type:
4109   GNUTLS_CRD_PSK
4111 New credential types:
4112   gnutls_psk_server_credentials_t
4113   gnutls_psk_client_credentials_t
4115 New functions to allocate PSK credentials:
4116   gnutls_psk_allocate_client_credentials
4117   gnutls_psk_free_client_credentials
4118   gnutls_psk_free_server_credentials
4119   gnutls_psk_allocate_server_credentials
4121 New enum type for PSK key flags:
4122   gnutls_psk_key_flags
4124 New function prototypes for credential callback:
4125   gnutls_psk_client_credentials_function
4126   gnutls_psk_server_credentials_function
4128 New function to set PSK username and key:
4129   gnutls_psk_set_client_credentials
4131 New function to set PSK passwd file:
4132   gnutls_psk_set_server_credentials_file
4134 New function to extract PSK user in server:
4135   gnutls_psk_server_get_username
4137 New functions to set PSK callback:
4138   gnutls_psk_set_server_credentials_function
4139   gnutls_psk_set_client_credentials_function
4141 Use size_t instead of int for output size parameter:
4142   gnutls_srp_base64_encode
4143   gnutls_srp_base64_decode
4145 * Version 1.2.11 (2006-05-11)
4146 - The function gnutls_x509_crt_to_xml is not supported any more, and
4147   return an internal error.  The reason is that the function called
4148   internal libtasn1 functions which are no longer exported from
4149   libtasn1.
4150 - Updated libtasn1 requirement to 0.3.4 and refreshed internal mintiasn1.
4151 - Updated gnulib compatibility files.
4152 - Fixed _gnutls_x509_get_raw_crt_expiration_time and
4153   _gnutls_x509_get_raw_crt_activation_time to return (time_t)-1 on errors.
4154 - API and ABI modifications:
4155   No changes since last version.
4157 * Version 1.2.10 (2006-02-09)
4158 - Fix read out bounds bug in DER parser.  Reported by Evgeny Legerov
4159   <admin@gleg.net>, and debugging help from Protover SSL.
4160 - Libtasn1 0.2.18 is now required (contains the previous bug fix).
4161   The included version has been updated too.
4162 - Fix gnutls-cli STARTTLS hang when SIGINT is sent too quickly, thanks to
4163   Otto Maddox <ottomaddox@fastmail.fm> and Nozomu Ando <nand@mac.com>.
4164 - Corrected a bug in certtool for 64 bit machines. Reported
4165   by Max Kellermann <max@duempel.org>.
4166 - Corrected bugs in gnutls_certificate_set_x509_crl() and
4167   gnutls_certificate_set_x509_trust(), that caused memory corruption if
4168   more than one certificates were added. Report and patch by Max Kellermann.
4169 - Fixed bug in non-blocking gnutls_bye(). gnutls_record_send() will no 
4170   longer invalidate a session if the underlying send fails, but it will 
4171   prevent future writes. That is to allow reading the already received data.
4172   Patches and bug reports by Yoann Vandoorselaere <yoann@prelude-ids.org>
4174 * Version 1.2.9 (2005-11-07)
4175 - Documentation was updated and improved.
4176 - RSA-MD2 is now supported for verifying digital signatures.
4177 - Due to cryptographic advances, verifying untrusted X.509
4178   certificates signed with RSA-MD2 or RSA-MD5 will now fail with a
4179   GNUTLS_CERT_INSECURE_ALGORITHM verification output.  For
4180   applications that must remain interoperable, you can use the
4181   GNUTLS_VERIFY_ALLOW_SIGN_RSA_MD2 or GNUTLS_VERIFY_ALLOW_SIGN_RSA_MD5
4182   flags when verifying certificates.  Naturally, this is not
4183   recommended default behaviour for applications.  To enable the
4184   broken algorithms, call gnutls_certificate_set_verify_flags with the
4185   proper flag, to change the verification mode used by
4186   gnutls_certificate_verify_peers2.
4187 - Make it possible to send empty data through gnutls_record_send,
4188   to align with the send(2) API.
4189 - Some changes in the certificate receiving part of handshake to prevent
4190   some possible errors with non-blocking servers.
4191 - Added numeric version symbols to permit simple CPP-based feature
4192   tests, suggested by Daniel Stenberg <daniel@haxx.se>.
4193 - The (experimental) low-level crypto alternative to libgcrypt used
4194   earlier (Nettle) has been replaced with crypto code from gnulib.
4195   This leads to easier re-use of these components in other projects,
4196   leading to more review and simpler maintenance.  The new configure
4197   parameter --with-builtin-crypto replace the old --with-nettle, and
4198   must be used if you wish to enable this functionality.  See README
4199   under "Experimental" for more information.  Internally, GnuTLS has
4200   been updated to use the new "Generic Crypto" API in gl/gc.h.  The
4201   API is similar to the old crypto/gc.h, because the gnulib code were
4202   based on GnuTLS's gc.h.
4203 - Fix compiler warning in the "anonself" self test.
4204 - API and ABI modifications:
4205 gnutls_x509_crt_list_verify: Added 'const' to prototype in <gnutls/x509.h>.
4206                              This doesn't reflect a change in behaviour,
4207                              so we don't break backwards compatibility.
4208 GNUTLS_MAC_MD2: New gnutls_mac_algorithm_t value.
4209 GNUTLS_DIG_MD2: New gnutls_digest_algorithm_t value.
4210 GNUTLS_VERIFY_ALLOW_SIGN_RSA_MD2,
4211 GNUTLS_VERIFY_ALLOW_SIGN_RSA_MD5: New gnutls_certificate_verify_flags values.
4212                                   Use when calling
4213                                   gnutls_x509_crt_list_verify,
4214                                   gnutls_x509_crt_verify, or
4215                                   gnutls_certificate_set_verify_flags.
4216 GNUTLS_CERT_INSECURE_ALGORITHM: New gnutls_certificate_status_t value,
4217                                 used when broken signature algorithms
4218                                 is used (currently RSA-MD2/MD5).
4219 LIBGNUTLS_VERSION_MAJOR,
4220 LIBGNUTLS_VERSION_MINOR,
4221 LIBGNUTLS_VERSION_PATCH,
4222 LIBGNUTLS_VERSION_NUMBER: New CPP symbols, indicating the GnuTLS
4223                           version number, can be used for feature existence
4224                           tests.
4226 * Version 1.2.8 (2005-10-07)
4227 - Libgcrypt 1.2.2 is required to fix a bug for forking GnuTLS servers.
4228 - Don't install the auxilliary libexamples library used by the
4229   examples in doc/examples/ on "make install", report and tiny patch
4230   from Thomas Klausner <tk@giga.or.at>.
4231 - If you pass a X.509 CA or PGP trust database to the command line
4232   tool, it will now abort the connection if the server certificate
4233   validation fails.  Use the parameter --insecure to continue even
4234   after certificate validation failures.  Inspired from discussion
4235   with Alexander Kotelnikov <sacha@myxomop.com>.
4236 - The test for socklen_t has been moved to gnulib.
4237 - Link failures for duplicate or missing "program_name" symbol has been fixed,
4238   patch from Martin Lambers <marlam@marlam.de>.
4239 - The command line tool and the examples no longer uses mmap or bzero,
4240   to make them more portable, patch from Martin Lambers
4241   <marlam@marlam.de>.
4242 - Made the PKCS #12 API handle null passwords. Based on patch by
4243   Anton Altaparmakov <aia21@cam.ac.uk>.
4244 - The GTK-DOC manual should build with current released tools.
4245   (But a copy of the output is included, so the tools are not required.)
4246 - The inet_ntop function is now used through gnulib.
4247 - API and ABI modifications:
4248   No changes since last version.
4250 * Version 1.2.7 (2005-09-09)
4251 - The GNUTLS and GNUTLS-EXTRA libraries are now built with versioned symbols.
4252 - Certtool now complains when reading out-of-range X.509 serial
4253   numbers, suggested by Fran <e_agf@yahoo.es>.
4254 - Certtool now uses the readline library (when available) when reading
4255   X.509 serial numbers.
4256 - Fixed build problems in getpass on uClibc and Mingw32 platforms.
4257 - Fixed compile warning regarding socklen_t on Mingw32, reported by
4258   Martin Lambers <marlam@marlam.de>.
4259 - Fixed examples in doc/examples/, suggested by Fran <e_agf@yahoo.es>.
4260 - Gnulib is now used for the core library, enabling future code cleanups.
4261 - The gnutls-cli tool now use gnutls_certificate_verify_peers2,
4262   suggested by Daniel Stenberg <daniel@haxx.se>.
4263 - Doc fixes for gnutls_transport_set_push and gnutls_transport_set_pull.
4264 - Minilibtasn1 is now 0.2.17 (removed optional use of C99 macros).
4265 - Disable zlib support if zlib.h is not present.
4266 - A number of internal cleanups.
4267 - API and ABI modifications:
4268   No changes since last version.
4270 * Version 1.2.6 (2005-07-16)
4271 - MiniLZO updated to version 2.01 and moved to separate directory.
4272 - Collision between system LZO header files and MiniLZO header file
4273   fixed, reported by Matthias Urlichs <smurf@smurf.noris.de>.
4274 - Will now test for liblzo functionality in liblzo2 too, reported by
4275   Thomas Klausner <tk@giga.or.at>.
4276 - Minilibtasn1 is now 0.2.14 (no code changes).
4277 - Some code changes to avoid GTK-DOC warnings.
4278 - API and ABI modifications:
4279   No changes since last version.
4281 * Version 1.2.5 (2005-07-03)
4282 - More builddir != srcdir fixes, reported by Mike Castle
4283   <dalgoda@ix.netcom.com>.
4284 - Fixed off-by-one bug in the size parameter of gnutls_x509_crt_get*_dn,
4285   reported by Adam Langley <alangley@gmail.com>.
4286 - Corrected some stuff in minilzo detection. Pointed out by 
4287   Sergey Lipnevich.
4288 - MiniLZO updated to version 2.00.
4289 - gnutls_x509_crt_list_import now accept a DER formatted CRL.
4290 - API and ABI modifications:
4291   No changes since last version.
4293 * Version 1.2.4 (2005-05-28)
4294 - Corrected some bugs that could affect 64 bit systems.
4295 - Some corrections in the header files to include the prototype
4296   of memmem properly (affected 64 bit systems). Report and patch
4297   by Yoann Vandoorselaere <yoann@prelude-ids.org>.
4298 - Introduced the --fix-key option to certtool, which can be used to
4299   regenerate the (optional) parameters in a private key. It should
4300   be used together with --key-info.
4301 - Corrected a bug in certificate chain verification that could lead
4302   to marking a trusted chain as non trusted, if the last certificate in
4303   the chain was a self signed one.
4304 - Gnulib portability files were updated.
4305 - License were updated to reflect new FSF address.
4306 - API and ABI modifications:
4307   No changes since last version.
4309 * Version 1.2.3 (2005-04-28)
4310 - Corrected bug in record packet parsing that could lead
4311   to a denial of service attack.
4312 - Corrected bug in RSA key export. Previously exported keys
4313   can be fixed using certtool. Use certtool -k <infile >outfile
4314 - API and ABI modifications:
4315     gnutls_x509_privkey_fix(): Add.
4317 * Version 1.2.2 (2005-04-25)
4318 - gnutls_error_to_alert() now considers
4319   GNUTLS_E_UNEXPECTED_HANDSHAKE_PACKET.
4320 - Fixed error in session resuming that could cause a crash in a session.
4321 - Fixed pkcs12 friendly name and local key identifier decoding.
4322 - Internal cleanups, removed duplicate typedef/struct definitions,
4323   and made source code include external include file, to check
4324   function prototypes during compile time.
4325 - API and ABI modifications:
4326   No changes since last version.  At least not intentional, but due
4327   to the include header changes, there may be inadvertant changes,
4328   please let us know if you find any.
4330 * Version 1.2.1 (2005-04-04)
4331 - gnutls_bye() will no longer fail when RDWR is used and application
4332   data are available for reading.
4333 - Added more strict checks for the SRP parameters (g,n), when they
4334   are not in the included list.
4335 - Added warning to certtool when MD5 is being used for digital
4336   signatures.
4337 - Optimizations ("-O2 -finline-functions") are not enabled by default,
4338   instead the standard autoconf defaults are used.  Use `./configure
4339   CFLAGS="-O2 -finline-functions"' to get the old optimizations.
4340 - Added the option --get-dh-params to certtool, in order to get the
4341   parameters included in the library primes and generators.
4342 - Improved the semantics of GNUTLS_VERIFY_ALLOW_X509_V1_CA_CRT, to
4343   allow only trusted Version 1 CAs and introduced
4344   GNUTLS_VERIFY_ALLOW_ANY_X509_V1_CA_CRT which has the old semantics.
4345 - Nettle self tests now build properly, reported by Pierre
4346   <pierre42d@9online.fr>.
4347 - Eliminated some memory leaks in DHE and RSA-EXPORT cipher suites.
4348   Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
4349 - If the library has been compiled with features disabled, a warning is 
4350   issued during the compilation of any program.
4351 - API and ABI modifications:
4352     gnutls_x509_crt_list_import(): Add
4353     gnutls_x509_crq_get_attribute_by_oid(): Add.
4354     gnutls_x509_crq_set_attribute_by_oid(): Add
4355     gnutls_x509_crt_set_extension_by_oid(): Add.
4356     GNUTLS_VERIFY_ALLOW_X509_V1_CA_CRT: Modify semantics.
4357     GNUTLS_VERIFY_ALLOW_ANY_X509_V1_CA_CRT: Add, old behaviour.
4359 * Version 1.2.0 (2005-01-27)
4360 - Added the definitions and OIDs for the RIPEMD-160 hash algorithm.
4361 - Introduced gnutls_x509_crt_sign2(), gnutls_x509_crq_sign2() and 
4362   gnutls_x509_crl_sign2().
4363 - Fixed license header in source code files.
4365 * Version 1.1.23 (2005-01-18)
4366 - It is now possible to generate PKCS#12 structures without private
4367   keys using "certtool --to-p12", suggested by Fabian Fagerholm
4368   <fabbe@paniq.net>.
4369 - Certtool now prints information for the RSA and DSA parameters of
4370   certificates and private keys.
4371 - Corrected the write of CRL distribution points.
4372 - The certificate chain verification function now checks certificates
4373   in the reverse order to minimize the spent resources.
4374 - Corrected several bugs found by Marcin Garski <mgarski@post.pl>
4375 - The functions gnutls_x509_crl_get_issuer_dn, gnutls_x509_crq_get_dn,
4376   gnutls_x509_crt_get_issuer_dn, gnutls_x509_crt_get_dn, and
4377   gnutls_x509_rdn_get now set *sizeof_buf to the buffer length that is
4378   required, instead of the string length.  That is, the value has been
4379   incremented by 1 to account for the terminating zero. Reported by
4380   Martin Lambers <marlam@web.de>.
4381 - Debug output shouldn't crash on platforms that doesn't handle NULL
4382   printf %s values.  Reported by Michael.Ringe@aachen.utimaco.de.
4383 - Sync included copy of libtasn1 with version 0.2.13.
4384 - Client X.509 authenticated connections via gnutls-cli should now work again.
4386 * Version 1.1.22 (2004-11-04)
4387 - Replace GNU LD version script with Libtool -export-symbols-regex,
4388   from Joe Orton <joe@manyfish.co.uk>.
4389 - Documentation improvements.
4390 - Code indented using 'indent -i4 -kr'.
4391 - The API manual is included in Devhelp format.  (Was in last release too,
4392   but the NEWS entry was forgotten.)
4393 - The OpenSSL compatibility code now use the internal crypto interface.
4394 - Added simple self test of OpenSSL compatibility library.
4395 - Internally, libtool convenience libraries are used.
4396 - Cleanups to configure.ac.
4398 * Version 1.1.21 (2004-10-27)
4399 - Print DN of certificates with unknown characters in them, but in hexform
4400   only.
4401 - Added second precision to the X.509 parsing and generation functions.
4402 - Corrected bug in _gnutls_x509_get_dn_oid(), and returns the
4403   actual OID.
4404 - Add parameter --la-file to libgnutls-config and libgnutls-extra-config,
4405   tiny patch contributed by Joe Orton <joe@manyfish.co.uk>.
4406 - Add pkg-config meta files, suggested by Stéphane LOEUILLET
4407   <stephane.loeuillet@tiscali.fr>.
4408 - Fix memory initializaion bug in gnutls_certificate_set_x509_trust,
4409   tiny patch by Aleix Conchillo Flaque <aleix@member.fsf.org>.
4410 - Add self test of PKCS#12 functionality in "certtool", based on test
4411   vectors from Joe Orton <joe@manyfish.co.uk>.
4412 - Fix library order in libgnutls*-config --libs output, to permit
4413   static linking, reported by Yoann Vandoorselaere
4414   <yoann@prelude-ids.org>.
4416 * Version 1.1.20 (2004-10-12)
4417 - Fix compile problem in gl/getpass.c on some systems.
4419 * Version 1.1.19 (2004-10-07)
4420 - Fix memory leak in gnutls_certificate_verify_peers and
4421   gnutls_certificate_free_credentials, report and patch by Simon
4422   Posnjak <simon.posnjak@cetrtapot.si>.
4423 - Fix crash in `certtool --to-p12 --load-privkey foo', i.e. exporting
4424   a key and no certificate to PKCS#12.
4425 - Fix objdir != srcdir builds, reported by "Gerrit P. Haase"
4426   <gp@familiehaase.de>.
4427 - Fixes faulty getpass implementation in libextra/opencdk/, reported
4428   by Yoann Vandoorselaere <yoann@prelude-ids.org>.
4429 - Uses memmem instead of strnstr in lib/.
4430 - Using more GNULib portability files, although not yet inside lib/.
4431 - Added gnutls_certificate_verify_peers to gnutls/compat.h.
4432   Nikos deprecated gnutls_certificate_verify_peers in favor of
4433   gnutls_certificate_verify_peers2 earlier in the 1.1 branch.
4434 - Improvements to the manual.
4435 - Add new example "ex-rfc2818" for certificate verification, from Nikos.
4436 - Known bug: the library require snprintf.  This has not yet been
4437   fixed, but will be handled via GNULib later on.
4439 * Version 1.1.18 (2004-08-24)
4440 - Corrected handling of certificate with dates after year 2038.
4441 - Corrected DER decoder which could incorrectly treat input as BER and fail.
4442 - Correct certtool --smime-to-p7 end of line character handling.
4443 - Added example client and server for anonymous authentication.
4444 - Added self test that tests anonymous TLS client and server.
4445 - Added self tests of Nettle and generic crypto layer.
4446 - Added API reference manual in HTML format in doc/reference/ using GTK-DOC.
4447   Online version at <http://www.gnu.org/software/gnutls/reference/>.
4448 - Assume C89 or better; removed checks for size_t, ptrdiff_t and time_t.
4449 - Man pages for API functions are included.
4451 * Version 1.1.17 (2004-08-18)
4452 - Bug fix of padding string in RSA PKCS#1 v1.5 type 2 encryption,
4453   reported by Robey Pointer <robey@danger.com>.
4454 - Generic crypto interface for secret key ciphers, hashes and randomness added.
4455   See section "Experimental" within section "COMPILATION ISSUES" in README.
4456 - Removed length limit on passwords read by 'certtool'.
4457 - Documentation fixes.
4459 * Version 1.1.16 (2004-08-15)
4460 - Fix missing gnulib linker parameter when building certtool.
4461 - Add gnulib module 'progname', needed by module 'error'.
4462 - Improve building with srcdir != objdir.
4464 * Version 1.1.15 (2004-08-15)
4465 - Certtool has simplistic --smime-to-p7 to translate RFC 2633 messages into
4466   PKCS #7 format.
4467 - Ported to Mac OS X / Darwin.
4468 - Ported to FreeBSD.
4470 * Version 1.1.14 (2004-08-09)
4471 - Documentation converted to Texinfo format.
4472 - Bug fix of test suite.
4473 - Configure now print build information, used by Autobuild.
4475 * Version 1.1.13 (2004-08-05)
4476 - Added simple self test suite.
4478 * Version 1.1.12 (2004-08-02)
4479 - Updated the SRP authentication to conform to the
4480   latest (yet unreleased) draft. Unfortunately this breaks
4481   compatibility with previous versions.
4482 - Changed the makefiles to be more portable.
4483 - SRP ciphersuites were moved to the gnutls library.
4484 - Added some default limits in the verification of certificate
4485   chains, to avoid denial of service attacks. Also added 
4486   gnutls_certificate_set_verify_limits() to override them.
4487   Issue pointed out by Patrik Hornik <patrik@hornik.sk>.
4488 - Added gnutls_certificate_verify_peers2().
4490 * Version 1.1.11 (2004-07-16)
4491 - Added the '_t' suffix to all exported symbols.
4492 - Fixed bug in RSA encryption, report and patch by Martijn Koster 
4493   <mak@greenhills.co.uk>.
4494 - Corrected a bug in certificate verification. Pointed out by
4495   Yoann Vandoorselaere <yoann@prelude-ids.org>
4496 - Added the GNUTLS_VERIFY_DO_NOT_ALLOW_SAME flags to the
4497   verification functions.
4498 - The ephemeral DH and RSA parameters are no longer stored in the
4499   session resume DB.
4500 - Do not free the SRP (prime and generator) parameters obtained from the 
4501   callback if they are the static ones defined in extra.h
4502 - Eliminated some memory leaks. Reported by Yoann Vandoorselaere.
4504 * Version 1.1.10 (2004-06-12)
4505 - Added gnutls_sign_algorithm_get_name() and gnutls_pk_algorithm_get_name()
4506 - Corrected bug in TLS renegotiation.
4507 - Corrected bug in OpenPGP key loading using a callback.
4508 - gnutls-srpcrypt was renamed to srptool
4509 - Allow handshake requests by the client.
4510 - Automatically disable certificate types that do not have corresponding
4511   certificates.
4512 - Added gnutls_auth_client_get_type() and gnutls_auth_server_get_type()
4513 - Opencdk library is being included if not found.
4514 - certtool can now add ip address SAN extension.
4515 - certtool has now support for more X.520 DN attribute types.
4516 - Better handling of EOF in gnutls_record_recv().
4517 - _gnutls_deinit() is no longer used. Sessions are not
4518   automatically removed any more, on abnormal termination.
4519 - Corrected session resuming in SRP ciphersuites.
4520 - Updated to conform to the latest srp draft (draft-ietf-tls-srp-07)
4521 - Added new functions to allow access to the ephemeral
4522   Diffie Hellman parameters.
4523 - Added the functions gnutls_x509_crt_get_pk_rsa_raw() and
4524   gnutls_x509_crt_get_pk_dsa_raw() to retrieve parameters from certificates.
4525 - Added the functions gnutls_dh_get_group(), gnutls_dh_get_pubkey() and
4526   gnutls_rsa_export_get_pubkey() to retrieve parameters of the DH or
4527   RSA-EXPORT key exchange.
4528 - Some fixes in the session resuming code.
4529 - Added gnutls_openpgp_keyring_check_id().
4531 * Version 1.1.9 (2004-04-14)
4532 - Added support for authority key identifier and the extended key usage
4533   X.509 extension fields. The certtoool was updated to support them.
4534 - The RC2 cipher is no more included. The one in libgcrypt is now used.
4535 - Added batch support to certtool. Now it can use templates.
4537 * Version 1.1.8 (2004-04-07)
4538 - Implemented all the tests for the SRP group parameters in
4539   client side. This may lead to incompatibility with very
4540   old gnutls servers.
4541 - Corrected bug in RSA parameters handling which could cause
4542   unexpected crashes.
4543 - Optimized the copying of rsa_params.
4545 * Version 1.1.7 (2004-03-29)
4546 - Added gnutls_certificate_set_params_function() and 
4547   gnutls_anon_set_params_function() that set the RSA or DH
4548   parameters using a callback.
4549 - Added functions gnutls_rsa_params_cpy(), gnutls_dh_params_cpy()
4550   and gnutls_x509_privkey_cpy().
4551 - Corrected a compilation issue when opencdk was installed in a
4552   non standard directory.
4553 - Deprecated: gnutls_srp_server_set_select_function(), 
4554   gnutls_certificate_client_set_select_function(), gnutls_srp_server_set_select_function().
4556 * Version 1.1.6 (2004-02-24)
4557 - Several bug fixes, by Arne Thomassen.
4558 - Fixed a bug where 'server name' extension was always sent.
4560 * Version 1.1.5 (2004-01-06)
4561 - Added the gnutls_sign_algorithm type.
4563 * Version 1.1.4 (2004-01-04)
4564 - Improved gnutls-cli's SRP behaviour in SRP ciphersuites.
4565   If they are of highest priority then the abbreviated handshake
4566   is used.
4567 - Removed all references of missing files.
4568 - Changed handshake behaviour to send the lowest TLS version
4569   when an unsupported version was advertized. The current behaviour
4570   is to send the maximum version we support.
4571 - Corrected problem printing the DC attributes in a DN.
4573 * Version 1.1.3 (2003-12-30)
4574 - Implemented TLS 1.1 (and also obsoleted the TLS 1.0 CBC protection
4575   hack).
4577 * Version 1.1.2 (2003-12-28)
4578 - Added CRL verification functionality to certtool.
4579 - Corrected the CRL distribution point extension handling.
4581 * Version 1.1.1 (2003-12-26)
4582 - Added PKCS #7 support to certtool utility.
4583 - Added support for reading and generating CRL distribution
4584   points extensions in certificates.
4585 - Added support for generating CRLs in the library and the
4586   certtool utility.
4587 - Added support for the Subject Key ID PKIX extension.
4589 * Version 1.1.0 (2003-12-21)
4590 - The error codes GNUTLS_E_NO_TEMPORARY_DH_PARAMS and GNUTLS_E_NO_TEMPORARY_RSA_PARAMS
4591   are no longer returned by the handshake function. Ciphersuites that
4592   require temporary parameters are removed when such parameters do not exist.
4593 - Added the callbacks gnutls_certificate_client_retrieve_function() and
4594   gnutls_certificate_server_retrieve_function(), to allow a client or a server
4595   to specify certificates for the handshake without storing them to the
4596   credentials structure.
4597 - Added support for generating and exporting DSA private keys.
4598 - Added gnutls_x509_crt_set_key_usage() and certtool can now set the
4599   certificate's key usage.
4600 - Added gnutls_openpgp_key_get_key_usage().
4602 * Version 1.0.25 (2005-04-27)
4603 - Corrected bug in record packet parsing that could lead
4604   to a denial of service attack.
4605 - Corrected bug in RSA key export.
4607 * Version 1.0.24 (2005-01-18)
4608 - Corrected several bugs found by Marcin Garski <mgarski@post.pl>
4610 * Version 1.0.23 (2004-11-13)
4611 - Replace GNU LD version script with Libtool -export-symbols-regex,
4612   from Joe Orton <joe@manyfish.co.uk>.
4613 - Copy libtasn1 has been updated to version 0.2.11.
4614 - Corrected the write of CRL distribution points.
4615 - It is now possible to generate PKCS#12 structures without private
4616   keys using "certtool --to-p12", suggested by Fabian Fagerholm
4617   <fabbe@paniq.net>.
4619 * Version 1.0.22 (2004-10-28)
4620 - Print DN of certificates with unknown characters in them, but in hexform
4621   only.
4622 - Corrected bug in _gnutls_x509_get_dn_oid(), and returns the
4623   actual OID.
4624 - Added second precision to the X.509 parsing functions.
4625 - Add parameter --la-file to libgnutls-config and libgnutls-extra-config,
4626   tiny patch contributed by Joe Orton <joe@manyfish.co.uk>.
4627 - Add pkg-config meta files, suggested by Stéphane LOEUILLET
4628   <stephane.loeuillet@tiscali.fr>.
4629 - Fix memory initializaion bug in gnutls_certificate_set_x509_trust,
4630   tiny patch by Aleix Conchillo Flaque <aleix@member.fsf.org>.
4631 - Fix certtool --password for PKCS #12, back ported from 1.1.x branch.
4632 - Fix library order in libgnutls*-config --libs output, to permit
4633   static linking, reported by Yoann Vandoorselaere
4634   <yoann@prelude-ids.org>.
4636 * Version 1.0.21 (2004-10-07)
4637 - Fix memory leak in gnutls_certificate_verify_peers and
4638   gnutls_certificate_free_credentials, report and patch by Simon
4639   Posnjak <simon.posnjak@cetrtapot.si>.
4640 - Fix crash in `certtool --to-p12 --load-privkey foo', i.e. exporting
4641   a key and no certificate to PKCS#12.
4642 - Fix objdir != srcdir builds, reported by "Gerrit P. Haase"
4643   <gp@familiehaase.de>.
4644 - Avoid redefining getpass if system already has it, reported by
4645   Yoann Vandoorselaere <yoann@prelude-ids.org>.
4646 - Add new example "ex-rfc2818" for certificate verification, from Nikos.
4647 - Known bug: the library require snprintf.
4649 * Version 1.0.20 (2004-08-18)
4650 - Bug fix of padding string in RSA PKCS#1 v1.5 type 2 encryption,
4651   reported by Robey Pointer <robey@danger.com>.
4653 * Version 1.0.19 (2004-08-09)
4654 - Bug fix of test suite.
4656 * Version 1.0.18 (2004-08-05)
4657 - Added simple self test suite.
4659 * Version 1.0.17 (2004-08-02)
4660 - Updated the SRP authentication to conform to the
4661   latest (yet unreleased) draft. Unfortunately this breaks
4662   compatibility with previous versions.
4663 - Changed the makefiles to be more portable.
4664 - Added some default limits in the verification of certificate
4665   chains, to avoid denial of service attacks. Also added 
4666   gnutls_certificate_set_verify_limits() to override them.
4667   Issue pointed out by Patrik Hornik <patrik@hornik.sk>.
4668 - Added gnutls_certificate_verify_peers2().
4670 * Version 1.0.16 (2004-07-10)
4671 - Do not free the SRP (prime and generator) parameters obtained from the 
4672   callback if they are the static ones defined in extra.h.
4673 - Eliminated some memory leaks. Reported by Yoann Vandoorselaere.
4674 - Some fixes in the makefiles.
4676 * Version 1.0.15 (2004-06-29)
4677 - Fixed bug in RSA encryption, report and patch by Martijn Koster 
4678   <mak@greenhills.co.uk>.
4679 - Corrected a bug in certificate verification. Pointed out by
4680   Yoann Vandoorselaere <yoann@prelude-ids.org>.
4682 * Version 1.0.14 (2004-06-12)
4683 - Automatically disable certificate types that do not have corresponding
4684   certificates.
4685 - Updates in the documentation.
4686 - certtool can now add ip address SAN extension.
4687 - certtool has now support for more X.520 DN attribute types.
4688 - Opencdk library is being included if not found.
4689 - Added gnutls_openpgp_keyring_check_id().
4690 - Corrected a serious bug in the included libtasn1 library.
4691 - Corrected session resuming in SRP ciphersuites.
4692 - Updated to conform to the latest srp draft (draft-ietf-tls-srp-07)
4693 - Added the functions gnutls_x509_crt_get_pk_rsa_raw() and
4694   gnutls_x509_crt_get_pk_dsa_raw() to retrieve parameters from certificates.
4695 - Some fixes in the session resuming code.
4697 * Version 1.0.13 (2004-04-29)
4698 - Some complilation fixes.
4699 - Added the --xml parameter to the certtool utility.
4701 * Version 1.0.12 (2004-04-23)
4702 - Corrected bug in OpenPGP key loading using a callback.
4703 - Renamed gnutls-srpcrypt to srptool
4704 - Allow handshake requests by the client.
4705 * Things backported from the development branch:
4706 - Added support for authority key identifier and the extended key usage
4707   X.509 extension fields. The certtoool was updated to support them.
4708 - Added batch support to certtool. Now it can use templates.
4709 - The RC2 cipher is no more included. The one in libgcrypt is now used.
4711 * Version 1.0.11 (2004-04-17)
4712 - Added gnutls_sign_algorithm_get_name() and gnutls_pk_algorithm_get_name()
4713 - Corrected bug in TLS renegotiation.
4715 * Version 1.0.10 (2004-04-03)
4716 - Corrected bug in RSA parameters handling which could cause
4717   unexpected crashes.
4718 - Corrected bug in SSL 3.0 authentication.
4720 * Version 1.0.9 (2004-03-29)
4721 - Added gnutls_certificate_set_params_function() and 
4722   gnutls_anon_set_params_function() that set the RSA or DH
4723   parameters using a callback.
4724 - Added functions gnutls_rsa_params_cpy(), gnutls_dh_params_cpy()
4725   and gnutls_x509_privkey_cpy().
4726 - Corrected a compilation issue when opencdk was installed in a
4727   non standard directory.
4728 - Documented the changes need in multi-threaded application due
4729   to the new libgcrypt.
4731 * Version 1.0.8 (2004-02-28)
4732 - Corrected bug in mutual certificate authentication in SSL 3.0.
4734 * Version 1.0.7 (2004-02-25)
4735 - Implemented TLS 1.1 (and also obsoleted the TLS 1.0 CBC protection
4736   hack).
4737 - Some updates in the documentation.
4739 * Version 1.0.6 (2004-02-12)
4740 * Backported things from the development branch (while maintaining
4741   backwards compatibility):
4742 - Improved gnutls-cli's SRP behaviour in SRP ciphersuites.
4743   If they are of highest priority then the abbreviated handshake
4744   is used.
4745 - The error codes GNUTLS_E_NO_TEMPORARY_DH_PARAMS and GNUTLS_E_NO_TEMPORARY_RSA_PARAMS
4746   are no longer returned by the handshake function. Ciphersuites that
4747   require temporary parameters are removed when such parameters do not exist.
4748 - Added the callbacks gnutls_certificate_client_retrieve_function() and
4749   gnutls_certificate_server_retrieve_function(), to allow a client or a server
4750   to specify certificates for the handshake without storing them to the
4751   credentials structure.
4752 - Added support for generating and exporting DSA private keys.
4754 * Version 1.0.5 (2004-02-11)
4755 - Fixed a bug where 'server name' extension was always sent.
4756 * Backported things from the development branch:
4757 - Added CRL verification functionality to certtool.
4758 - Corrected the CRL distribution point extension handling.
4759 - Added PKCS #7 support to certtool utility.
4760 - Added support for reading and generating CRL distribution
4761   points extensions in certificates.
4762 - Added support for generating CRLs in the library and the
4763   certtool utility.
4764 - Added support for the Subject Key ID PKIX extension.
4765 - Added the gnutls_sign_algorithm type.
4767 * Version 1.0.4 (2004-01-04)
4768 - Changed handshake behaviour to send the lowest TLS version
4769   when an unsupported version was advertized. The current behaviour
4770   is to send the maximum version we support.
4771 - certtool no longer asks the password in unencrypted private
4772   keys.
4773 - The source is now compiled to use the reentrant libc functions.
4775 * Version 1.0.3 (2003-12-21)
4776 - Corrected bug in gnutls_bye() which made it return an error code
4777   of INVALID_REQUEST instead of success.
4778 - Corrected a bug in the GNUTLS_KEY key usage definitions.
4780 * Version 1.0.2 (2003-12-18)
4781 - Corrected a bug in the RSA key generation. This was
4782   generating unusable RSA keys.
4784 * Version 1.0.1 (2003-12-10)
4785 - Some minor fixes in the makefiles. They now include CFLAGS
4786   from libgcrypt or opencdk if installed in a non standard directory.
4787 - Fixed the SRP detection test in gnutls-cli-debug.
4788 - Added gnutls_rsa_params_export_pkcs1() and gnutls_rsa_params_import_pkcs1().
4790 * Version 1.0.0 (2003-12-04)
4791 - Exported the static SRP group parameters.
4792 - Some fixes in the certificate authenticated SRP ciphersuites.
4793 - Improved the support for draft-ietf-tls-srp-05. The two-phase
4794   handshake is now fully supported without any interaction with
4795   the application layer (except for a callback).
4797 * Version 0.9.99 (2003-11-28)
4798 - Some fixes in the gnutls.h header for the gnutls_server_name_set()
4799   and gnutls_server_name_get() prototypes.
4800 - Exported the gnutls_x509_privkey_sign_data(), gnutls_x509_privkey_verify_data() 
4801   and gnutls_x509_crt_verify_data().
4802 - Some fixes in the openpgp authentication.
4803 - Removed the Twofish cipher.
4805 * Version 0.9.98 (2003-11-16)
4806 - The openssl compatibility layer was moved to gnutls-openssl
4807   library instead of being included in the gnutls-extra library.
4808 - Added the RIPEMD ciphersuites defined in draft-ietf-tls-openpgp-keys-04.
4809 - Building with openpgp support is now mandatory.
4810 - gnutls4 compatibility header is no longer included by default in
4811   gnutls.h.
4812 - gnutls8 function usage yelds a deprecation warning in gcc3.
4813 - gnutls_x509_*_set_dn_by_oid() and gnutls_x509_*_get_*_dn_by_oid()
4814   functions have a raw_flag parameter added.
4815 - Added gnutls_x509_*_get_dn_oid() and gnutls_x509_crt_get_extension_oid()
4816   functions which return the available OIDs.
4818 * Version 0.9.97 (2003-11-11)
4819 - The certtool utility can now generate PKCS #12 structures
4820   without specifying a certificate.
4821 - Added capability to read CRLs to certtool.
4822 - Corrected some functions which return GNUTLS_E_SHORT_MEMORY_BUFFER
4823   to properly set the required buffer size.
4824 - Corrected a bug in libgcrypt detection.
4826 * Version 0.9.96 (2003-11-09)
4827 - Some changes to allow compilation with mingw32.
4828 - Several code cleanups.
4830 * Version 0.9.95 (2003-11-02)
4831 - Improved the verification functions. Added new verification
4832   output flags and removed the unused and redundant ones.
4833 - Improved the OpenPGP key support.
4834 - The prime utility was removed, and its functionality was moved
4835   to certtool.
4837 * Version 0.9.94 (2003-10-30)
4838 - Added manpages for the included programs.
4839 - Documented and improved the certtool utility. 
4840 - Added PKCS #12 support to certtool utility.
4842 * Version 0.9.93 (2003-10-26)
4843 - Corrected some compilation issues.
4844 - Improved the certtool command line utility.
4846 * Version 0.9.92 (2003-10-25)
4847 - The RFC2818 hostname verification is now case insensitive.
4848 - Added support for generating X.509 certificates.
4849 - Added the certtool, a tool for generating X.509 certificates
4851 * Version 0.9.91 (2003-10-17)
4852 - Fixed a compilation issue in the openpgp authentication part.
4854 * Version 0.9.90 (2003-10-08)
4855 - Updated the openpgp key API (depends on the unreleased new
4856   opencdk).
4858 * Version 0.9.8 (2003-10-02)
4859 - Updated the SRP implementation to follow the latest draft
4860   (draft-ietf-tls-srp-05).
4861 - Improved the gnutls-cli behaviour in error handling,
4862   and added a check for the peer's hostname.
4863 - Use versioned symbols in the library (where available).
4864 - RIJNDAEL ciphersuites were renamed to AES.
4866 * Version 0.9.7 (2003-08-25)
4867 - The tex files are now included in the distribution.
4868 - The library can now decrypt PKCS #12 files encrypted with
4869   the RC2-40 cipher.
4870 - The missing rfc2818_hostname object is now included.
4871 - Several corrections and bug fixes in the library by 
4872   Arne Thomassen <arne@arne-thomassen.de>.
4873 - CR is now allowed in the base64 decoder.
4875 * Version 0.9.6 (2003-06-28)
4876 - Added gnutls_x509_privkey_get_key_id() and gnutls_x509_crt_get_key_id()
4877   functions which return a unique (per public key) ID. These can
4878   be used to check if the private key corresponds to a given certificate.
4879 - Corrections in the TLS layer openpgp certificate packet parser.
4880 - Corrected a bug in the record layer buffering, which affected
4881   the case where external pull function was used. Report and patch
4882   by Sergey Poznyakoff <gray@Mirddin.farlep.net>.
4883 - Corrected a bug in gnutls-srpcrypt where a non allocated variable
4884   was freed.
4885 - SRP programs are now built by default.
4886 - Added API to read and write to PKCS #12 structures. Prototypes
4887   in gnutls/pkcs12.h.
4888 - The gnutls_transport_ptr type was changed to a pointer type (void*).
4890 * Version 0.9.5 (2003-04-06)
4891 - Several improvements in the PKCS #7 handling
4892 - Eliminated several hard coded constants in MPI parameters.
4894 * Version 0.9.4 (2003-03-28)
4895 - Corrected a parsing error in the Certificate request message.
4896 - Corrected behaviour when a certificate request message is received.
4897   Now a certificate packet is always sent, and in SSL 3.0 cipher suites
4898   a no_certificate alert is sent instead.
4899 - Added functionality to generate PKCS #7 structures (with certificates).
4901 * Version 0.9.3 (2003-03-24)
4902 - Support for MD2 was dropped. 
4903 - Improved the error logging functions, by adding a level, and
4904   by allowing debugging messages just by increasing the level.
4905 - The diffie Hellman ciphersuites are now of higher priority than
4906   the plain RSA.
4907 - The RSA premaster secret version check can no longer be disabled.
4908 - Implemented the counter measure discussed in the paper "Attacking
4909   RSA-based Sessions in SSL/TLS", against the attack described in the
4910   same paper.
4911 - Added the functions: gnutls_handshake_get_last_in(), 
4912   gnutls_handshake_get_last_out().
4913 - The gnutls_certificate_set_rsa_params() was renamed to 
4914   gnutls_certificate_set_rsa_export_params().
4915 - Added the new functions: gnutls_certificate_set_x509_key()
4916   gnutls_certificate_set_x509_trust(), gnutls_certificate_set_x509_crl(),
4917   gnutls_x509_crt_export(), gnutls_x509_crl_export().
4918 - Added support for encoding and decoding PKCS #8 2.0 encrypted 
4919   RSA private keys.
4921 * Version 0.9.2 (2003-03-15)
4922 - Some corrections in the memory mapping code (file is unmapped after 
4923   it is read).
4924 - Added support for PKCS#10 certificate requests generation.
4926 * Version 0.9.1 (2003-03-12)
4927 - Corrected a bug in 64 bit architectures, which affected the
4928   serial number calculation in the record layer.
4929 - Added gnutls_certificate_free_keys() which deletes all the
4930   private keys and certificates from the credentials structure.
4931 - Corrected a broken buffer check in _gnutls_io_read_buffered(),
4932   which caused some unexpected packet length errors. Report and patch
4933   by Ian Peters <itp@ximian.com>.
4934 - Added ability to generate RSA keys.
4935 - Increased the maximum parameter size in order to read some large keys
4936   by some CAs. Patch by Ian Peters <itp@ximian.com>.
4937 - Added an strnstr() function and the requirement in some functions to
4938   use null terminated PEM structures is no more.
4939 - Use mmap() if available to read files.
4940 - Fixed a memory leak in SRP code reported by Rupert Kittinger 
4941   <r.kittinger@efkon.com>.
4943 * Version 0.9.0 (2003-03-03)
4944 - This version is not binary compatible with the previous ones.
4945 - The library notifies the application on empty and illegal SRP usernames, 
4946   so that proper notification (via an alert) is sent to the peer.
4947 - Added ability to send some messages back to the application using
4948   the gnutls_global_set_log_function().
4949 - gnutls_dh_params_generate() and gnutls_rsa_params_generate() now use 
4950   gnutls_malloc() to allocate the output parameters.
4951 - Added support for MD2 algorithm in certificate signature verification.
4952 - The RSA and DH parameter generation interface was changed. Added
4953   ability to import and export from and to PKCS3 structures. This 
4954   was needed to read parameters generated using the openssl dhparam tool.
4955 - Several changes in the temporary (DH/RSA) parameter codebase. No DH 
4956   parameters are now included in the library. Also the credentials structure 
4957   can now hold only one temporary parameter of a kind.
4958 - Added a new Certificate, CRL, Private key and PKCS7 structures handling 
4959   API, defined in gnutls/x509.h
4960 - Added gnutls_certificate_set_verify_flags() function to allow setting the 
4961   verification flags in the credentials structure. They will be used in the
4962   *verify_peers functions.
4963 - Added protection against the new TLS 1.0 record layer timing attack.
4964 - Added support for Certificate revocation lists. Functions defined
4965   in gnutls/x509.h
4966 - The only functions that were removed are:
4967   gnutls_x509_certificate_to_xml()
4968   gnutls_x509_extract_dn_string()
4969 - Ported to libtasn1 0.2.x
4971 * Version 0.8.1 (2003-01-22)
4972 - Improved the SRP support, to prevent attackers guessing the
4973   available usernames by brute force.
4974 - Improved the SRP detection in gnutls-cli-debug
4975 - Some fixes which now allow compilation.
4977 * Version 0.8.0 (2003-01-20)
4978 - Added gnutls_x509_extract_dn_string() which returns a 
4979   distinguished name in a single string.
4980 - Added gnutls_openpgp_extract_key_name_string() which returns
4981   an openpgp user ID in a single string.
4982 - Added gnutls_x509_extract_certificate_ca_status() which returns
4983   the CA status of the given certificate.
4984 - Added SRP-6 support. Follows draft-ietf-tls-srp-04.
4985 - If libtasn1 is not present in the system, it is included in 
4986   the main gnutls library.
4987 - If liblzo is present in the system, then the included minilzo
4988   will not be used, and libgnutls-extra will depend on liblzo.
4989 - GNUTLS_E_PARSING_ERROR error code was replaced by GNUTLS_E_BASE64_DECODING_ERROR, 
4990   and GNUTLS_E_SRP_PWD_PARSING_ERROR. GNUTLS_E_ASCII_ARMOR_ERROR was also 
4991   replaced by GNUTLS_E_BASE64_DECODING_ERROR.
4993 * Version 0.6.0 (2002-12-08)
4994 - Added "gnutls/compat4.h" header. This is included in gnutls.h
4995   to emulate the old 0.4.x API.
4996 - Example programs are now stored in doc/examples/
4997 - Several improvements and updates in the documentation.
4998 - Added the certificate authenticated SRP cipher suites.
4999 - gnutls_x509_extract_certificate_dn_string() was updated to return
5000   an RFC2253 conforming string.
5001 - Added the SRP related functions:
5002    gnutls_srp_verifier()
5003    gnutls_srp_base64_encode()
5004    gnutls_srp_base64_decode()
5005 - Added the function gnutls_srp_set_server_credentials_function()
5006   to allow retrieving SRP parameters from an external backend - other
5007   than password files.
5008 - Added the function gnutls_openpgp_set_recv_key_function()
5009   which can be used to set a callback, to get OpenPGP keys.
5010 - Exported the functions:
5011    gnutls_malloc()
5012    gnutls_free()
5013   which should be used by callback functions.
5014 - Changed the semantics of gnutls_pem_base64_encode_alloc()
5015   and gnutls_pem_base64_decode_alloc(). In the default case
5016   were the gnutls library is used with malloc/realloc/free,
5017   these are binary compatible.
5019 * Version 0.5.11 (2002-11-05)
5020 - Some fixes in 'gnutls-cli' client program to prevent some segmentation 
5021   faults at exit.
5022 - Example programs found in the documentation can now be generated by
5023   running "make examples" in doc/tex directory.
5024 - Added more descriptive error strings, to gnutls_strerror().
5025 - Documented error codes, and the function reference list is now sorted.
5026 - Optimized buffering code.
5027 - gnutls_x509_extract_certificate_dn_string() was rewritten.
5028 - Added GNUTLS_E_SHORT_MEMORY_BUFFER error code, which is returned in the
5029   case where the memory buffer provided is not long enough.
5030 - Depends on the new OpenCDK 0.3.2.
5032 * Version 0.5.10 (2002-10-13)
5033 - Updated documentation.
5034 - Added server name extension. This allows clients to specify the
5035   name of the server they connect to. Useful to HTTPS.
5036 - Several corrections in the code base, mostly in signed/unsigned,
5037   checkings.
5039 * Version 0.5.9 (2002-10-10)
5040 - Corrected some code which worked fine in gcc 3.2, but not with any
5041   other compiler.
5042 - Updated 'gnutls-cli' with the '--starttls' option, to allow testing
5043   starttls implementations.
5044 - Added gnutls_x509_extract_key_pk_algorithm() function which extracts
5045   the private key type, of a DER encoded key.
5046 - Added gnutls_x509_extract_certificate_dn_string() which returns the 
5047   certificate's distinguished name in a single string.
5048 - Added gnutls_set_default_priority() and gnutls_set_default_export_priority()
5049   functions, to avoid calling all the *_priority() functions if the defaults
5050   are acceptable.
5051 - Added int gnutls_x509_check_certificates_hostname() which check whether
5052   the given hostname matches the owner of the given X.509 certificate.
5054 * Version 0.5.8 (2002-09-25)
5055 - Updated documentation.
5056 - Added gnutls_record_get_direction() which replaces the obsolete
5057   gnutls_handshake_get_direction().
5058 - Added function to convert error codes to alert descriptions
5059 - Added LZO compression
5061 * Version 0.5.7 (2002-09-11)
5062 - Some fixes in the memory allocation functions (realloc).
5063 - Improved the string functions used in XML certificate generation.
5064 - Removed dependency on libgdbm.
5065 - Corrected bug in gnutls_dh_params_set() which affected
5066   gnutls_dh_params_deinit().
5067 - Corrected bug in session resuming code in server side.
5069 * Version 0.5.6 (2002-09-06)
5070 - Corrected bugs in SRP implementation, which prevented gnutls 
5071   to interoperate with other implementations. (interoperability testing
5072   was done by David Taylor)
5073 - Corrected bug in cert_type extension.
5074 - Corrected extension type checks which used an 8 bit extension size,
5075   instead of 16 bits.
5076 - Added versioning in the XML output of certificate functions.
5077 - Removed the X.509 test suite.
5079 * Version 0.5.5 (2002-09-03)
5080 - Updated the SRP implementation to the latest draft. The blowfish
5081   crypt implementation was removed, since the new draft does not allow
5082   other hash algorithms except for the srpsha. 
5083 - Renamed all the constructed types in order to have more consistent
5084   names. 
5085 - Improved the certificate and key read functions. Now they can read 
5086   the certificate and the private key from the same file.
5087 - Updated and corrected documentation.
5089 * Version 0.5.4 (2002-08-27)
5090 - Fixes in TLS 1.0 PRF and SSL3 random functions.
5091 - gnutls_handshake_set_exportable_detection() was obsoleted.
5092 - Added gnutls_openpgp_extract_key_id() which returns the key ID.
5093 - Corrected bug in DHE key exchange
5094 - Added support for temporary RSA keys which are needed for the
5095   export cipher suites.
5096 - Added the TLS_RSA_EXPORT_ARCFOUR_40_MD5 ciphersuite.
5098 * Version 0.5.3 (2002-08-23)
5099 - No changes. Replaces the tarball of 0.5.2 which accidentally contained
5100   code from the unstable branch.
5102 * Version 0.5.2 (2002-08-22)
5103 - Added an error code that is returned in clients which connect
5104   to export only servers. This must be enabled using the
5105   gnutls_handshake_set_exportable_detection() function.
5106 - Updated openssl compatibility layer.
5107 - Added gnutls_handshake_get_direction() function which returns
5108   the state of the handshake when interrupted.
5110 * Version 0.5.1 (2002-07-17)
5111 - Corrected the m4 macros which used <gnutls.h> instead of
5112   <gnutls/gnutls.h>
5113 - Documentation fixes
5114 - Added gnutls_transport_set_ptr2() function, which accepts two
5115   different pointers, to be used while receiving, and 
5116   while sending data.
5117 - Semantic changes in gnutls_record_set_max_size(). The requested
5118   size is now immediately enforced at the output buffers.
5119 - gnutls_global_init_extra() now fails if the library versions do
5120   not match.
5121 - Fixes in client and server example programs. Null encryption can
5122   be used in these programs, to assist in debuging.
5123 - Fixes in zlib compression code.
5125 * Version 0.5.0 (2002-07-06)
5126 - Added X.509 certificate tests in tests/ directory
5127 - Removed stubs for SRP and Anonymous authentication. They served
5128   no purpose since they are always included, unless it was requested
5129   not to do so.
5130 - Added gnutls_handshake_set_private_extensions() function. This
5131   function can be used to enable private (gnutls specific) cipher suites
5132   and compression algorithms.
5133 - Added check for C99 macro support by the compiler.
5134 - Added functions gnutls_b64_encode_fmt2() and gnutls_b64_decode_fmt2()
5135 - Added the new libtasn1 library.
5136 - Removed the gdbm backend. Applications are now responsible for the
5137   session resuming backend. The gnutls-serv application contains an
5138   simple example on how to use gdbm for resuming.
5139 - Headers for the gnutls library are now installed in $(includedir)/gnutls
5140 - Added an OpenSSL compatible interface (with some limitations).
5141 - Added functions to convert DER encoded certificates to XML format.
5143 * Version 0.4.4 (2002-06-24)
5144 - Corrected bug in PKCS-1 RSA encryption which prevented gnutls to encrypt
5145   using keys of some specific size.
5147 * Version 0.4.3 (2002-05-23)
5148 - The gnutls-extra library now compiles fine, if the opencdk library is
5149   not present.
5150 - Several bug fixes.
5151 - Added gnutls_global_set_mem_func() function, to set the memory allocation
5152   functions, if other than the defaults are to be used.
5153 - The default memory allocation functions are now the ones in libc.
5155 * Version 0.4.2 (2002-05-21)
5156 - Separated ASN.1 structures parser documentation and TLS library
5157   documentation.
5158 - Added gnutls_handshake_set_rsa_pms() function, which disables the
5159   version check in RSA premaster secret.
5160 - Added gnutls_session_is_resumed() function, which reports if a session
5161   is a resumed one.
5162 - Added gnutls_state_set_ptr() and gnutls_state_get_ptr() functions, to
5163   assist in callback functions.
5164 - Replaced the included 1024 bit prime for Diffie Hellman, with a new
5165   random one.
5166 - Relicensed the library under the GNU Lesser General Public License
5167 - Added gnutls-extra library which contains the GPL covered code of gnutls.
5169 * Version 0.4.1 (2002-04-07)
5170 - Now uses alloca() for temporary variables
5171 - Optimized RSA signing
5172 - Added functions to return the peer's certificate activation and
5173   expiration time.
5174 - Corrected time function's behaviour (the time value returned no longer
5175   relate to local timezone).
5177 * Version 0.4.0 (2002-04-01)
5178 - Added support for RFC2630 (PKCS7) X.509 certificate sets
5179 - Added new functions: gnutls_x509_extract_certificate_pk_algorithm(),
5180   gnutls_openpgp_extract_key_pk_algorithm().
5181 - Several optimizations in the Handshake protocol
5182 - Several optimizations in RSA algorithm
5183 - Unified the return values because of small buffers.
5185 * Version 0.3.92 (2002-03-23)
5186 - Updated documentation
5187 - Combined error codes of ASN.1 parser and gnutls
5188 - Removed GNUTLS_CERT_TRUSTED from the CertificateStatus enumeration
5189 - Added protection against CBC chosen plaintext attack (disabled by default)
5190 - Improved and optimized compression support
5192 * Version 0.3.91 (2002-03-03)
5193 - Added gnutls-cli-debug program
5194 - Corrections in session resumption
5195 - Rehandshake can now handle negotiation of different authentication
5196   type.
5197 - gnutls-cli, gnutls-serv, gnutls-srpcrypt and gnutls-cli-debug are 
5198   now being installed.
5200 * Version 0.3.90 (2002-02-24)
5201 - Handshake messages are not kept in memory any more. Now we use 
5202   less memory during a handshake
5203 - Added support for certificates with DSA parameters
5204 - Added DHE_DSS cipher suites
5205 - Key exchange methods changed so they do not depend on the 
5206   certificate type. Added certificate type negotiation TLS extension.
5207 - Added openpgp key support (EXPERIMENTAL)
5208 - Improved Diffie Hellman key exchange support.
5209 - Bug fixes in the RSA key exchange.
5210 - Added check for the requested TLS extensions
5211 - TLS extensions now use a 16 bit type field.
5212 - Added a minimal string library to assist in ASN.1 parsing
5213 - Changes in ASN.1 parser to work with the new bison
5214 - Added gnutls_x509_extract_subject_alt_name(), which deprecates 
5215   gnutls_x509_extract_subject_dns_name()
5216 - gnutls_x509_set_trust_(file/mem) can now be called multiple times
5217 - gnutls_srp_server_set_cred_file() can now be called multiple times
5219 * Version 0.3.5 (2002-01-25)
5220 - Corrected the RSA key exchange method, to avoid attacks against
5221   PKCS-1 formating.
5223 * Version 0.3.4 (2002-01-20)
5224 - Corrected bugs in DHE_RSA key exchange method
5226 * Version 0.3.3 (2002-01-19)
5227 - Added gnutls_x509pki_verify_certificate()
5228 - Added gnutls_x509pki_set_trust_mem() and gnutls_x509pki_set_key_mem()
5229 - Bug fixes in srpcrypt (based on patch by Marc Huber)
5230 - Bug fixes in the Handshake protocol (based on patch by Guillaume Morin)
5231 - Corrected library versioning
5233 * Version 0.3.2 (2002-01-05)
5234 - Corrected bug which did not allow a client to accept multiple CA names
5235 - Added gnutls_fingerprint()
5236 - Added gnutls_x509pki_extract_certificate_serial()
5237 - Added gnutls_b64_encode_fmt() and gnutls_b64_decode_fmt()
5238 - Corrected behaviour in version advertizing
5239 - Updated documentation
5240 - Prefixed all types in gnutls.h with 'GNUTLS_' to avoid namespace collisions
5242 * Version 0.3.1 (2001-12-21)
5243 - Corrections in the configuration files
5244 - Fixes a bug in anonymous authentication
5246 * Version 0.3.0 (2001-12-17)
5247 - Corrected bug in new integer formatting (now we use the old format again)
5248 - Several corrections and usual cleanups
5250 * Version 0.2.91 (2001-12-10)
5251 - Fixes in MPI handling (fixes possible bug with signed integers)
5252 - Removed name indication extension
5253 - Added gnutls_transport_get_ptr() and gnutls_db_get_ptr()
5254 - Optimizations in server certificate callback.
5255 - Fixes in anonymous authentication
5256 - Corrections in client ciphersuite selection
5258 * Version 0.2.90 (2001-12-07)
5259 - gnutls_handshake(), gnutls_read() etc. functions no longer require
5260   the 'SOCKET cd' argument. This argument is set using the function
5261   gnutls_set_transport_ptr().
5262 - introduced gnutls_x509pki_get_peer_certificate_list(). This function returns
5263   a list containing peer's certificate and issuers DER encoded.
5264 - Updated X.509 certificate handling API
5265 - Added callback to select the server certificate
5266 - More consistent function naming (changes in several function names)
5267 - Buffer overflow checking in ASN.1 structures parser
5268 - Updated documentation
5270 * Version 0.2.11 (2001-11-16)
5271 - Changed the meaning of GNUTLS_E_REHANDSHAKE value. If this value
5272   is returned, then the caller should perform a handshake or send
5273   an alert to the peer.
5274 - Made receive buffer dynamic. Normally if no large chunks are received
5275   it occupies less space.
5276 - Added max_record_size extension
5277 - Bugfixes in session handling
5278 - Improved non blocking IO support in the Handshake Protocol
5279 - Usual bugfixes and cleanups
5280 - Documentation updated (includes ASN.1 documentation)
5282 * Version 0.2.10 (2001-11-05)
5283 - Corrected bugs and improved non blocking IO
5284 - Added hooks to use external database to store sessions
5285 - Usual cleanups
5287 * Version 0.2.9 (2001-10-27)
5288 - AUTH_INFO types and structures were moved to library internals
5289 - AUTH_FAILED is no longer returned in SRP authentication
5290   (any fatal error in SRP means auth failed)
5291 - Introduced GNUTLS_E_INTERRUPTED
5292 - Added support for non blocking IO
5293 - gnutls_recv() and gnutls_send() are now obsolete
5294 - Changed semantics of gnutls_rehandshake()
5296 * Version 0.2.4 (2001-10-12)
5297 - Better handling of X.509 certificate extensions
5298 - Added DHE_RSA ciphersuites
5299 - Updated the Name Indication (dnsname) extension
5300 - Improvements in Diffie Hellman primes handling
5302 * Version 0.2.3 (2001-09-19)
5303 - Memory optimizations in gnutls_recv()
5304 - Fixed several memory leaks
5305 - Added ability to specify callback for x509 client certificate selection
5306 - Better documentation
5308 * Version 0.2.2 (2001-08-21)
5309 - Several bugfixes (library and documentation)
5311 * Version 0.2.1 (2001-08-07)
5312 - SRP fixes
5314 * Version 0.2.0 (2001-08-07)
5315 - Partial support for X.509v3 Certificate extensions.
5316 - Added Internal memory handlers
5317 - Removed gnutls_x509_set_cn()
5318 - Added X.509 client authentication
5319 - Several bug fixes and protocol fixes
5321 * Version 0.1.9 (2001-07-30)
5322 - Corrected bug(s) in ChangeCipherSpec packet (fixes renegotiate)
5323 - SRP is updated to conform to the newest draft.
5324 - Added support for DNSNAME extension.
5325 - Reentracy fixes in ASN.1 Parsing.
5326 - Optimizations in hash/hmac functions
5327 - (Error) message handling has changed
5328 - Better Protocol Version handling
5329 - Added X.509 Certificate Verification
5330 - gnutls_read() semantics are now closer to read(2) - added EOF
5331 - Documented some part of gnutls in doc/tex/ using Latex
5333 * Version 0.1.4 (2001-06-22)
5334 - Corrected (srp) base64 encoding.
5335 - Changed bcrypt algorithm to include username.
5336 - Added RSA Ciphersuites (no certificate checking).
5337 - Fixes in SSL 2.0 client hello parsing.
5338 - Added ASN.1 and DER parsers.
5339 - Bugfixes in session resuming
5340 - Updated Ciphersuite selection algorithm
5341 - Added internal representation of X.509 structures.
5342 - Added global state
5344 * Version 0.1.3 (2001-06-01)
5345 - Updated API (and the way it is documented - we use inline documentation)
5346 - Added function to access alert messages.
5347 - Added support for renegotiating parameters.
5348 - Better and Faster Resume Database handling.
5349 - Several bugfixes
5351 * Version 0.1.2 (2001-05-14)
5352 - Updated API
5353 - Fixes in extension handling
5355 * Version 0.1.1 (2001-05-13)
5356 - Added compatibility with Stanford's libsrp library
5358 * Version 0.1.0 (2001-05-09)
5359 - Added SSL 2.0 client hello support
5360 - GNUTLS is a gnu library
5361 - Added support for TLS extensions.
5362 - Added support for SRP
5364 * Version 0.0.7 (2001-01-11)
5365 - Added server side session resuming (using gdbm)
5366 - Added twofish algorithm
5368 * Version 0.0.6 (2000-12-20)
5369 - Added client side session resuming
5370 - Better documentation (check doc/API)
5371 - Better socket handling (gnutls can be used with select())
5372 - Some primitive support for non blocking IO and socket options has been added.
5374 * Version 0.0.5 (2000-12-07)
5375 - Added Compression (using ZLIB)
5376 - Added SSL 3.0 support
5378 ----------------------------------------------------------------------
5379 Copying and distribution of this file, with or without modification,
5380 are permitted in any medium without royalty provided the copyright
5381 notice and this notice are preserved.