Version 1.7.8.
[gnutls.git] / NEWS
blobde05b4175fdd28cd922f372c4c9986271a13ed62
1 GNU TLS NEWS -- History of user-visible changes.                -*- outline -*-
2 Copyright (C) 2004, 2005, 2006, 2007 Simon Josefsson
3 Copyright (C) 2000, 2001, 2002, 2003, 2004 Nikos Mavroyanopoulos
4 See the end for copying conditions.
6 * Version 1.7.8 (released 2007-04-16)
8 ** Added examples for the authorization extension.
9 See doc/examples/ex-client-authz.c and doc/examples/ex-serv-authz.c.
11 ** The examples only use gnutls_set_default_priority().
12 The exception is when DH_ANON is needed.
14 ** Improve gnutls_set_default_priority() priorities.
15 The new approach is for it to try and negotiate all secure and
16 standard mechanisms available.  Currently, DH_ANON ciphersuites and
17 LZO compressions are not enabled by default, because they are,
18 respectively, insecure and non-standardized.  Note that TLS 1.2 will
19 not be enabled by default in non-experimental release until it has
20 been approved by the IETF.
22 ** gnutls-cli and gnutls-serv now uses the library's default priorities.
23 This means that to get DH_ANON and LZO compression, you'll need to
24 specify that manually using '--kx anon' or '--comp lzo'.
26 ** Minor fixes to the human display format of X.509 certificates.
28 ** New APIs to extract Distinguished Name's from X.509 certificates.
29 Based on patch from Howard Chu <hyc@symas.com>.
31 ** Improved library searching for opencdk.
32 It will now add the appropriate -R or -Wl,-rpath flags as necessary.
33 The deprecated opencdk.m4 is no longer used.
35 ** New APIs to list supported algorithms in the library.
36 The APIs are gnutls_cipher_list, gnutls_mac_list,
37 gnutls_compression_list, gnutls_protocol_list,
38 gnutls_certificate_type_list, gnutls_kx_list, and
39 gnutls_cipher_suite_info.  Suggested by Howard Chu <hyc@symas.com>.
41 ** The gnutls_x509_crt_get_key_id API now handle non-RSA/DSA keys.
43 ** New configure option --disable-tls-authorization to disable tls-authz.
45 ** Fix prototype for `gnutls_psk_set_client_credentials'.
46 The last parameter was renamed from 'flags' to 'format' and the type
47 changed from 'unsigned int' to 'gnutls_psk_key_flags' (an enum type),
48 which shouldn't cause any ABI changes.  Reported by ludo@chbouib.org
49 (Ludovic Courtès).
51 ** API and ABI modifications:
52 gnutls_x509_dn_t: ADD.
53 gnutls_x509_ava_st: ADD.
54 gnutls_x509_crt_get_subject,
55 gnutls_x509_crt_get_issuer: ADD.
56 gnutls_x509_dn_get_rdn_ava: ADD.
57 gnutls_cipher_list: ADD.
58 gnutls_mac_list: ADD.
59 gnutls_compression_list: ADD.
60 gnutls_protocol_list: ADD.
61 gnutls_certificate_type_list: ADD.
62 gnutls_kx_list: ADD.
63 gnutls_cipher_suite_info: ADD.
65 * Version 1.7.7 (released 2007-02-22)
67 ** Support for supplemental handshake messages and authorization data.
68 Supplemental data is described in RFC 4680 and the authorization
69 extensions in draft-housley-tls-authz-extns-07.
71 ** Support for authorization data in gnutls-cli and gnutls-serv.
72 New parameters --authz-x509-attr-cert and --authz-saml-assertion.
74 ** Fix for gnutls_x509_crt_check_hostname.
75 Before it would have reported that the certificate matched a hostname
76 when it did not have any dNSName or any CN field.  Report and tiny
77 patch from "Richard W.M. Jones" <rjones@redhat.com>.
79 ** New self test for RFC 2818 comparison in gnutls_x509_crt_check_hostname.
80 Tests regressions of the bug, and several other features.
82 ** GnuTLS now matches URI's with IP Addresses against iPAddress SAN's.
83 Before there were no support for iPAddress SAN's during comparison.
85 ** New API to print information about CRL's.
86 The function is gnutls_x509_crl_print.
88 ** New API to extract signature value from CRL's.
89 The function is gnutls_x509_crl_get_signature.
91 ** Support for directoryName Subject Alternative Name's.
92 The gnutls_x509_crt_get_subject_alt_name function returns the DN as a
93 string in the provided buffer.
95 ** Internal improvements to certtool.
96 It uses gnutls_x509_crl_print to print CRL information.  It uses some
97 more gnulib modules to simplify error handling.
99 ** API and ABI modifications:
100 GNUTLS_HANDSHAKE_SUPPLEMENTAL: ADD, new gnutls_handshake_description_t element.
101 gnutls_supplemental_data_format_type_t: ADD.
102 gnutls_authz_data_format_type_t: ADD.
103 gnutls_supplemental_get_name: ADD.
104 gnutls_authz_recv_callback_func,
105 gnutls_authz_send_callback_func: ADD, callback prototypes.
106 gnutls_authz_enable: ADD.
107 gnutls_authz_send_x509_attr_cert,
108 gnutls_authz_send_saml_assertion,
109 gnutls_authz_send_x509_attr_cert_url,
110 gnutls_authz_send_saml_assertion_url: ADD.
111 GNUTLS_SAN_DN: ADD, new gnutls_x509_subject_alt_name_t element.
112 gnutls_x509_crl_print: ADD.
113 gnutls_x509_crl_get_signature: ADD.
115 * Version 1.7.6 (released 2007-02-12)
117 ** Support for 'otherName' Subject Alternative Names.
118 The existing API gnutls_x509_crt_get_subject_alt_name may now return
119 the new type GNUTLS_SAN_OTHERNAME together with the otherName value.
120 To find out the otherName OID (necessary for proper parsing of the
121 value), use the new API gnutls_x509_crt_get_subject_alt_othername_oid.
122 For known OIDs, gnutls_x509_crt_get_subject_alt_othername_oid will
123 return "virtual" SAN values, e.g., GNUTLS_SAN_OTHERNAME_XMPP to
124 simplify OID matching.  Suggested by Matthias Wimmer <m@tthias.eu>.
126 ** Certtool can print otherName SAN values for certificates.
127 For known otherName OIDs (currently only id-on-xmppAddr as defined by
128 RFC 3920), it will also print the name.
130 ** Fix TLS 1.2 RSA signing in servers.
131 Before it used the old-style MD5+SHA1 signature, but the TLS
132 signatures should be normal PKCS#1 signatures.  FYI, we use and
133 require that DigestInfo parameters are present and NULL for TLS 1.2.
135 ** Add APIs to access X.509 extensions sequentially.
136 The existing APIs gnutls_x509_crt_get_extension_oid() and
137 gnutls_x509_crt_get_extension_by_oid() does not permit callers to
138 inspect the extensions in the order defined by the certificate.
140 ** Add API to extract signature value from X.509 certificates.
141 The function is gnutls_x509_crt_get_signature.
143 ** Fix crash when generating proxy certificates in batch mode.
144 If you don't specify a proxy policy in batch mode, it will use
145 id-ppl-inheritALL.
147 ** Add API to print information about X.509 certificates.
148 The function is gnutls_x509_crt_print.
150 ** Certtool uses the new API gnutls_x509_crt_print to print certificate info.
151 One consequence of this is that the output syntax has changed
152 slightly.  Some more fields are printed.
154 ** Doc fixes.
156 ** API and ABI modifications:
157 gnutls_x509_crt_print: ADD
158 gnutls_certificate_print_formats_t: ADD, new enum.
159 gnutls_x509_crt_get_signature: ADD.
160 gnutls_x509_crt_get_extension_data: ADD.
161 gnutls_x509_crt_get_extension_info: ADD.
162 gnutls_x509_crt_get_subject_alt_othername_oid: ADD.
163 GNUTLS_SAN_OTHERNAME: ADD, new gnutls_x509_subject_alt_name_t element.
164 GNUTLS_SAN_OTHERNAME_XMPP: ADD, new gnutls_x509_subject_alt_name_t element.
166 * Version 1.7.5 (released 2007-02-06)
168 ** Servers won't negotiate SRP RSA/DSS cipher suites if no SRP credential
169 ** is set.
171 ** Default behaviour for the gnutls-cli and gnutls-serv tools improved.
173 ** Fix --list output for gnutls-cli and gnutls-serv.
174 Mention TLS1.2, SHA512 etc.
176 ** Manual contains new section on setting up a test HTTP server.
177 A server set up following those descriptions are available online via
178 <http://www.gnutls.org/server.html>.
180 ** Update of gnulib files.
182 ** API and ABI modifications:
183 No changes since last version.
185 * Version 1.7.4 (released 2007-02-05)
187 ** Support for RSA signing using SHA-256/384/512.
188 A new self test "sha2" tries to build a long X.509 certificate chain
189 testing all new hashes.
191 ** The gnutls-serv tool now use static DH parameters if none are supplied.
193 ** Discuss proxy certificates in the manual.
195 ** Improve bibliographical citations in the manual.
197 ** Update of gnulib files.
199 ** Fix certtool template handling of pathLenConstraints.
200 It now defaults to -1 instead of 0, which causes the field to be
201 missing unless the template specify it.
203 ** API and ABI modifications:
204 GNUTLS_MAC_SHA256,
205 GNUTLS_MAC_SHA384,
206 GNUTLS_MAC_SHA512: New gnutls_mac_algorithm_t values.
207 GNUTLS_DIG_SHA256,
208 GNUTLS_DIG_SHA384,
209 GNUTLS_DIG_SHA512: New gnutls_digest_algorithm_t values.
210 GNUTLS_SIGN_RSA_SHA256,
211 GNUTLS_SIGN_RSA_SHA384,
212 GNUTLS_SIGN_RSA_SHA512: New gnutls_sign_algorithm_t values.
214 * Version 1.7.3 (released 2007-02-01)
216 ** New option to certtool: --generate-proxy.
217 This will generate a Proxy Certificate from an end entity certificate.
218 Proxy Certificates are documented in RFC 3820.  You will need to
219 specify the proxy certificate's private key with --load-privkey, the
220 user certificate with --load-certificate and the private key used to
221 sign the new proxy certificate with --load-ca-privkey.  Certtool will
222 query for proxy path length and the policy language OID.  Currently
223 only OIDs that have an empty policy are supported (which includes the
224 two OIDs defined by RFC 3820).
226 ** Certtool --certificate-info now prints information for Proxy Certificates.
227 Before the proxy extension was just printed as DER encoded data.
229 ** New APIs to set proxy subject names and get/set proxy cert extension.
231 ** Fix parsing of pathLenConstraints in BasicConstraints with missing cA.
233 ** Added self-test to test for regressions of pathLenConstraint bug.
234 Incidentally, this also test (some) other regressions or changes in
235 the output from certtool --certificate-info.
237 ** When certtool generates CA certificates, pressing enter on the path
238 ** length constraint query will now remove the field.
239 Before it set the path length constraint to 0, which is a rather poor
240 default.
242 ** Certtool now print times in UTC when printing certificate/CRL info.
244 ** Add better fix to work around C++ compiler bug on Mac OS X.
245 Reported and tiny patch provided by Matthias Scheler <tron@NetBSD.org>.
247 ** Fix import of ASCII armored OpenPGP keys.
248 Patch by ludovic.courtes@laas.fr (Ludovic Courtès).
250 ** Update of gnulib files.
252 ** API and ABI modifications:
253 gnutls_x509_crt_set_proxy_dn: ADD.
254 gnutls_x509_crt_set_proxy: ADD.
255 gnutls_x509_crt_get_proxy: ADD.
257 * Version 1.7.2 (released 2007-01-14)
259 ** Certtool now print the value of the pathLenConstraints field for certs.
261 ** Certtool now query for path length constraints when generating CA certs.
262 For batch uses, the certtool configuration name is "path_len".
263 Suggested by Sascha Ziemann <sascha.ziemann@secunet.com>.
265 ** Add new API to get/set pathLenConstraint in the Basic Constraints.
266 The new functions gnutls_x509_crt_get_basic_constraints and
267 gnutls_x509_crt_set_basic_constraints provide a superset of the
268 functionality in the old gnutls_x509_crt_get_ca_status and
269 gnutls_x509_crt_set_ca_status (respectively), but the old functions
270 will continue to be supported.
272 ** Add new API in OpenCDK to extract public/secret OpenPGP key to S-expr.
273 The functions are cdk_pubkey_to_sexp and cdk_seckey_to_sexp.  A proper
274 OpenCDK release with this patch will be made soon, which should bump
275 the OpenCDK version number.  Patch by Mario Lenz <mario.lenz@gmx.net>.
277 ** Certtool --to-p12 can now store more than one certificate in the blob.
278 Before it could only store one certificate, but now it will read and
279 store as many certificate there are from the --load-certificate file.
280 Suggested by Sascha Ziemann <sascha.ziemann@secunet.com>.
282 ** Clean up separation of gnutls and gnutls-extra for OpenPGP.
283 In particular, the OpenPGP function variables are no longer part of
284 the exported libgnutls interface, and no header files from
285 libgnutls-extra (GPL) are needed by libgnutls (LGPL).  The variables
286 were never intended for non-internal purposes, and thus this does not
287 imply a change in the external API/ABI.
289 ** Print URL to gaa when missing, and fix srcdir!=builddir for GAA files.
290 Reported by ludovic.courtes@laas.fr (Ludovic Courtès).
292 ** GnuTLS no longer uses -mms-bitfields --enable-runtime-pseudo-reloc.
293 Before these parameters were set to make GnuTLS build under mingw32,
294 however, they appear to no longer be necessary.
296 ** A minor fix to the C++ library to make it build.
297 Reported by Pavlov Konstantin <thresh@altlinux.ru>.
299 ** Update of gnulib files.
301 ** API and ABI modifications:
302 gnutls_x509_crt_get_basic_constraints: ADD.
303 gnutls_x509_crt_set_basic_constraints: ADD.
304 cdk_pubkey_to_sexp: ADD (in opencdk).
305 cdk_seckey_to_sexp: ADD (in opencdk).
307 * Version 1.7.1 (released 2006-12-28)
309 ** TLS 1.2 server side fix.
310 The Certificate Request sent did not contain the list of supported
311 hashes field, thus violating the protocol.  It will now contain an
312 empty list.  Reported by ludovic.courtes@laas.fr (Ludovic Courtès).
314 ** TLS 1.2 DSA signature verification fix.
315 Reported by ludovic.courtes@laas.fr (Ludovic Courtès).
317 ** Fix the list of trusted CAs that server's send to clients.
318 Before, the list contained issuer DN's instead of subject DN's of the
319 trusted CAs.  Reported by Max Kellermann <max@duempel.org>.
321 ** Fix gnutls_certificate_set_x509_crl to initialize the CRL before using it.
322 Also added a self-test in tests/certificate_set_x509_crl.c to test the
323 function.  Reported by Max Kellermann <max@duempel.org>.
325 ** Encode UID fields in DN's as DirectoryString.
326 Before GnuTLS encoded and parsed UID fields as IA5String.  This was
327 incorrect, it should have used DirectoryString.  Now it will use
328 DirectoryString for the UID field, but for backwards compatibility it
329 will also accept IA5String UID's.  Reported by Max Kellermann
330 <max@duempel.org>.
332 ** Improve out-of-sourcedir builds from CVS.
333 Reported by ludovic.courtes@laas.fr (Ludovic Courtès).
335 ** Bootstrap tools changed.
336 We now require autoconf 2.61, automake 1.10, and gettext 0.16, when
337 building GnuTLS from CVS.  Libtool 1.5.22 is used.
339 ** Fixed a syntax error in lib/gnutls.asn.
340 Reported by Paul Millar <p.millar@physics.gla.ac.uk>.
342 ** Added German translation of GnuTLS messages.
344 ** Update of gnulib files.
346 ** API and ABI modifications:
347 No changes since last version.
349 * Version 1.7.0 (released 2006-11-29)
351 ** The default protocol priority try TLS 1.1 and TLS 1.2 too.
352 The details is that the protocol priority set by
353 `gnutls_set_default_priority' has been changed from TLS 1.0 and SSL
354 3.0 to TLS 1.2, TLS 1.1, TLS 1.0 and SSL 3.0.
356 ** Preliminary support for TLS 1.2.
357 The client has been successfully tested against
358 https://www.mikestoolbox.org:4433/.
360 ** Anonself test now print a lot of debugging info, including TLS version.
362 ** Doc fixes in OpenCDK, to avoid some gtk-doc warnings.
364 ** Update of gnulib files.
366 ** API and ABI modifications:
367 GNUTLS_TLS1_2: New gnutls_protocol_t enum member.
369 *** Pulled up from stable 1.6.x branch:
371 ** Fix ./configure failure with non-GCC compilers.
372 This fixes the following error message:
373 configure: error: conditional "HAVE_LD_OUTPUT_DEF" was never defined.
374 Reported by "Michael C. Vergallen" <mvergall@telenet.be>.
376 * Version 1.6.1 (released 2006-12-28)
378 ** Fix the list of trusted CAs that server's send to clients.
379 Before, the list contained issuer DN's instead of subject DN's of the
380 trusted CAs.  Reported by Max Kellermann <max@duempel.org>.
382 ** Fix gnutls_certificate_set_x509_crl to initialize the CRL before using it.
383 Reported by Max Kellermann <max@duempel.org>.
385 ** Encode UID fields in DN's as DirectoryString.
386 Before GnuTLS encoded and parsed UID fields as IA5String.  This was
387 incorrect, it should have used DirectoryString.  Now it will use
388 DirectoryString for the UID field, but for backwards compatibility it
389 will also accept IA5String UID's.  Reported by Max Kellermann
390 <max@duempel.org>.
392 ** Fix ./configure failure with non-GCC compilers.
393 This fixes the following error message:
394 configure: error: conditional "HAVE_LD_OUTPUT_DEF" was never defined.
395 Reported by "Michael C. Vergallen" <mvergall@telenet.be>.
397 ** API and ABI modifications:
398 No changes since last version.
400 * Version 1.6.0 (released 2006-11-17)
402 ** No changes since 1.5.5.
403 The major changes compared to the 1.4.x branch are:
405 *** A GnuTLS C++ library is part of the official distribution.
406 Currently there are no examples or documentation, but hopefully this
407 will change.  See gnutlsxx.h for the API.
409 *** Windows is a supported platform.
410 There are, however, two know bugs.  One is related to select() in
411 command line tools (not, nota bene, in the library), the other is a
412 problem with libgcrypt that causes delays.  Help is needed to resolve
413 those issues, so we feel we can't delay the release because of this.
415 *** New APIs for custom push/pull function error reporting.
416 The new APIs are gnutls_transport_set_errno and
417 gnutls_transport_set_global_errno.  See the release notes for version
418 1.5.4 for more information.
420 *** Self tests are run under valgrind, if available.  See --disable-valgrind.
422 * Version 1.5.5 (released 2006-11-16)
424 ** Correctly bump shared library version after adding new APIs.
425 This was forgotten in the last release.
427 ** Fix unsigned vs signed problem in ex-x509-info.c example.
428 Reported by Tim Kosse <tim.kosse@filezilla-project.org>.
430 ** Fix the rsa-md5-collision self test to work for MinGW+Wine.
432 ** Update of gnulib files.
434 ** API and ABI modifications:
435 No changes since last version.
437 * Version 1.5.4 (released 2006-11-07)
439 ** New API functions to set errno in push/pull functions.
440 Under Windows, setting the errno variable in a push/pull replacement
441 may end up setting the wrong errno variable, and GnuTLS send/recv
442 functions become confused about the real errno returned from a failed
443 push/pull function.  Therefor, we have added two APIs to set the errno
444 variable used by GnuTLS.  The APIs can also help to keep things
445 thread-safe, by avoiding potentially global variables.  Typically,
446 instead of setting errno in your push/pull function, you will call one
447 of these functions.  It is recommended to use
448 gnutls_transport_set_errno, but if you don't have the session variable
449 easily accessible in the push/pull replacement function, you can use
450 gnutls_transport_set_global_errno.  Suggested by Tim Kosse
451 <tim.kosse@filezilla-project.org>.
453 void gnutls_transport_set_errno (gnutls_session_t session, int err);
454 void gnutls_transport_set_global_errno (int err);
456 ** When calling `recv' or `send' Windows errors are handled properly.
457 The Windows recv/send functions doesn't use errno, and GnuTLS now use
458 WSAGetLastError to access the error condition instead.
460 ** Several OpenPGP API fixes.
461 All suggested by ludovic.courtes@laas.fr (Ludovic Courtès).  The most
462 important fix is to change the return value of
463 gnutls_openpgp_privkey_get_pk_algorithm and
464 gnutls_openpgp_key_get_pk_algorithm from 'int' to
465 'gnutls_pk_algorithm_t', which is an enum type (and thus API/ABI
466 compatible with 'int').
468 ** When a GnuTLS server receive a SSLv2 Client Hello for an unknown TLS
469 ** version, try to negotiate the highest version support by the GnuTLS server,
470 ** instead of the lowest.
471 Reported by <Pasi.Eronen@nokia.com>.
473 ** Replace old constructs with use of gnulib modules.
474 For example, we can now assume unistd.h, sys/stat.h, sys/socket.h in
475 the code.  If the headers doesn't exist on the target system, gnulib
476 will make sure its replacement header files are used instead.
478 ** Fix SOVERSION computation for *.def files.
479 This fixes build errors similar to "No rule to make target
480 `libgnutls-`expr', needed by `all-am'." when building for Windows.
482 ** gnutls_check-version uses strverscmp from gnulib.
484 ** Update of gnulib files.
486 ** API and ABI modifications:
487 gnutls_transport_set_errno: ADD
488 gnutls_transport_set_global_errno: ADD
490 * Version 1.5.3 (released 2006-10-26)
492 ** Add new self-test of RSA-MD5 signature chains.
493 Note that we already, since GnuTLS 1.2.9, reject RSA-MD5 signatures
494 when verifying X.509 chains.  The code is in tests/rsa-md5-collision/
495 and is based on the work by Marc Stevens et al, see
496 <http://www.win.tue.nl/hashclash/TargetCollidingCertificates/>.
498 ** Re-factor self tests.
500 ** The include copy of Libtasn1 is updated to version 0.3.7.
502 ** The included copy of OpenCDK is updated to version 0.5.11.
504 ** Fix the filename of the *.def file on Windows after library version bump.
506 ** Separated the gnulib directory into one for LGPL modules and one for GPL.
507 This allows the GPL'd part of GnuTLS to take advantage of the GPL'd
508 gnulib modules.  Earlier we could only use the LGPL'ed module from
509 gnulib, because two gnulib directories in the same project didn't
510 work.
512 ** API and ABI modifications:
513 No changes since last version.
515 * Version 1.5.2 (released 2006-10-03)
517 ** Decrement the shared library version back to 13 (as in the 1.4.x branch).
518 Note that if you installed 1.5.0 or 1.5.1, they will have a higher
519 shared library version than this version, so you'll have to remove
520 them and possibly relink your applications.  The reason for this is
521 that no API/ABI changes have been made since the 1.4.x branch, and
522 that incrementing the shared library version was a mistake.  Reported
523 by Andreas Metzler <ametzler@downhill.at.eu.org>.
525 ** Fix off-by-one error when computing length to malloc.
526 The code is used by gnutls_openpgp_add_keyring_file and
527 gnutls_openpgp_add_keyring_mem.  Reported by "Adam Langley"
528 <agl@imperialviolet.org>.
530 ** Add version script for the GnuTLS C++ library.
531 Reported by Andreas Metzler <ametzler@downhill.at.eu.org>.
533 ** Fix the C++ compiler detection logic.
534 Reported by Andreas Metzler <ametzler@downhill.at.eu.org>.
536 ** Update of gnulib files.
538 ** API and ABI modifications:
539 No changes since last version.
541 * Version 1.5.1 (released 2006-09-21)
543 ** Fix PKCS#1 verification to avoid a variant of Bleichenbacher's
544 ** Crypto 06 rump session attack.
545 In particular, we check that the digestAlgorithm.parameters field is
546 missing or empty, to avoid that it can contain "garbage" that may be
547 used to alter the numeric properties of the signature.  See
548 <http://www.imc.org/ietf-openpgp/mail-archive/msg14307.html> (which is
549 not exactly the same as the problem we fix here).  Reported by Yutaka
550 OIWA <y.oiwa@aist.go.jp>.
552 See GNUTLS-SA-2006-4 on http://www.gnutls.org/security.html for more
553 up to date information.
555 ** Add self test to test for above flaw.
557 ** Fix gnutls-cli-debug regarding resume support detection.
558 Earlier, if the session-id from the server had a length of 0, it would
559 indicate the the server supports resumption, which isn't the case.
560 Reported by Kataja Kai <kai.kataja@op.fi>.
562 ** Fix building of examples on FreeBSD by including netinet/in.h.
563 Reported by Roman Bogorodskiy <novel@FreeBSD.org>.
565 ** Fix certtool bug that caused the private key to not be loaded when
566 generating a certificate with --load-request, which in turn triggered
567 another unrelated bug in gnutls_x509_crt_sign2 (also fixed).  Reported
568 by Sascha Ziemann <sascha.ziemann@secunet.com>.
570 ** gnutls-cli and gnutls-serv works on Windows.
571 The problem was the select() call that doesn't work on file
572 descriptors (stdin) on Windows.  We borrowed some code from plibc to
573 solve this.  It appears to be somewhat unreliable though.
575 ** Autoconf 2.60 is now used.
577 ** API and ABI modifications:
578 No changes since last version.
580 * Version 1.5.0 (released 2006-08-13)
582 ** Change SRP and Cert-Type extensions to match IANA registry.
584 ** Fixed bug in OpenPGP authentication handshake.
586 ** Improvements for building under MinGW.
587 Provides internal inet_ntop and inet_pton functions and arpa/inet.h
588 header.  Calls WSAStartup and WSACleanup in gnutls_global_init and
589 gnutls_global_deinit, respectively.  Loads getaddrinfo and getnameinfo
590 at run-time from ws2_32.dll, and falls back on a simple replacement if
591 it is not available.  Builds the library with -mms-bitfields
592 -Wl,--enable-runtime-pseudo-reloc.  Links with --output-def, to
593 create *.def files, which are installed.
595 ** The examples now (conditionally) include config.h and link to gnulib.
596 No other source changes were necessary, so the examples should
597 continue to be possible to use stand-alone without any autoconf or
598 gnulib stuff.
600 ** Added C++ header "gnutlsxx.h" and library "libgnutlsxx".
601 You may unconditionally disable it with --disable-cxx.  See
602 includes/gnutls/gnutlsxx.h and lib/gnutlsxx.cpp for the
603 implementation.
605 ** Made command line tool '--version' behave according to GNU Standards.
606 This enables 'make distcheck' to succeed.
608 ** OpenCDK updated to 0.5.9 to fix some problems with OpenPGP support.
610 ** Make --without-included-libtasn1 work.
611 Reported by Daniel Black <dragonheart@gentoo.org>.
613 ** Fix a crash (strcmp() on a NULL value) in the certificate verification logic.
614 See http://www.gnu.org/software/gnutls/security.html regardging
615 GNUTLS-SA-2006-2 for more up to date information.  Reported by
616 satyakumar <satyam_kkd@hyd.hellosoft.com>.
618 ** API and ABI modifications:
619 No changes since last version.
621 * Version 1.4.5 (released 2006-11-06)
623 ** When a GnuTLS server receive a SSLv2 Client Hello for an unknown TLS
624 ** version, try to negotiate the highest version support by the GnuTLS server,
625 ** instead of the lowest.
626 Reported by <Pasi.Eronen@nokia.com>.
628 ** Fix typo in doc/examples/ex-serv-pgp.c.
629 Reported by Adam Langley" <agl@imperialviolet.org>.
631 ** API and ABI modifications:
632 No changes since last version.
634 * Version 1.4.4 (released 2006-09-12)
636 ** Relax the test that caught signatures that exploit the variant of
637 ** Bleichenbacher's Crypto 06 rump session attack on our
638 ** verification logic flaw.
639 In particular, we now permit the digestAlgorithm.parameters field to
640 be present but empty, whereas in 1.4.3 we actually checked that the
641 field was absent.
643 ** Revert the removal of debug information for the GNUTLS-SA-2006-3 problem.
644 The messages are only printed in debug mode, which is not recommended
645 for normal use, and thus logging this situation cannot be abused as an
646 oracle in typical recommended situations.
648 ** API and ABI modifications:
649 No changes since last version.
651 * Version 1.4.3 (released 2006-09-08)
653 ** Fix PKCS#1 verification to avoid a variant of Bleichenbacher's
654 ** Crypto 06 rump session attack.
655 In particular, we check that the digestAlgorithm.parameters field is
656 empty, to avoid that it can contain "garbage" that may be used to
657 alter the numeric properties of the signature.  See
658 <http://www.imc.org/ietf-openpgp/mail-archive/msg14307.html> (which is
659 not exactly the same as the problem we fix here).  Reported by Yutaka
660 OIWA <y.oiwa@aist.go.jp>.
662 See GNUTLS-SA-2006-4 on http://www.gnutls.org/security.html for more
663 up to date information.
665 ** Fix PKCS#1 decryption to avoid Bleichenbacher's Crypto 98 attack.
666 See <http://www.bell-labs.com/user/bleichen/papers/pkcs.ps.gz>.
667 Reported by Werner Koch <wk@gnupg.org>.
669 See GNUTLS-SA-2006-3 on http://www.gnutls.org/security.html for more
670 up to date information.
672 ** Fix crash in gnutls_x509_crt_sign2 if passed a NULL issuer_key.
674 ** API and ABI modifications:
675 No changes since last version.
677 * Version 1.4.2 (released 2006-08-12)
679 ** Fix a crash (strcmp() on a NULL value) in the certificate verification logic.
680 This can happen if you call gnutls_certificate_verify_peers2 and have
681 a certain mix of local CA certificates and the peer send special
682 certificates, that together trigger certain behaviour.  It is not
683 known at this point whether the crash can be triggered without the
684 special local CA certificate, and thus turn this into a remote crash
685 of clients that verify server certificates when they talk to a server
686 with the special server certificate.  See GNUTLS-SA-2006-2 on
687 http://www.gnu.org/software/gnutls/security.html for more up to date
688 information.  Reported by satyakumar <satyam_kkd@hyd.hellosoft.com>.
690 ** Change SRP and Cert-Type extensions to match IANA registry.
692 ** OpenCDK updated to 0.5.9 to fix some problems with OpenPGP support.
694 ** Make --without-included-libtasn1 work.
695 Reported by Daniel Black <dragonheart@gentoo.org>.
697 ** API and ABI modifications:
698 No changes since last version.
700 * Version 1.4.1 (released 2006-06-14)
702 ** Replaced inactive ifdefs to enable openpgp support in test programs.
704 ** Fixed bug in OpenPGP authentication handshake.
706 ** Fixed typographical in man pages.
708 ** Build fixes of the manual.
710 ** Added Swedish translation.
712 ** API and ABI modifications:
713 No changes since last version.
715 * Version 1.4.0 (released 2006-05-15)
717 ** Remove GnuTLS 0.8.x compatibility functions.
719 ** The libgcrypt RNG is initialized in gnutls_global_init().
721 ** TLS/IA API changes from Emile van Bergen.
722 A dummy credential structure is not needed now, if you wish to use the
723 low-level TLS/IA API, simply call gnutls_ia_enable to enable TLS/IA on
724 a session.
726 ** The self-tests are now run under valgrind, if it is installed.
728 ** Libtasn1 is updated to 0.3.4, and that version is now required.
730 ** The command line tools now use getaddrinfo and support IPv6.
732 ** API and ABI modifications:
733 _gnutls_x509_get_raw_crt_activation_time,
734 _gnutls_x509_get_raw_crt_expiration_time: Removed.
735 gnutls_ia_require_inner_phase: Removed, replaced by gnutls_ia_enable.
736 gnutls_ia_enable: Added.
738 * Version 1.3.5 (released 2006-03-08)
740 ** Error messages are now translated using GNU Gettext.
742 ** The function gnutls_x509_crt_to_xml now return an internal error.
743 This means that the code to convert X.509 certificates to XML format
744 does not work any more.  The reason is that the function called
745 libtasn1 internal functions.  It seems unclean for libtasn1 to export
746 the APIs needed here.  Instead it would be better to implement XML
747 support inside libtasn1 properly.  If you need this functionality
748 strongly, please consider looking into implementing this suggested
749 approach instead.  As a workaround, you may also modify lib/x509/xml.c
750 (change '#if 1' to '#if 0') and build using --with-included-libtasn1.
752 ** Libraries are now built with libtool's -no-undefined.
753 This helps producing libraries for Windows using mingw32.
755 ** Doc fixes to explain that gnutls_record_send can block.
757 ** Libtasn1 0.3.1 or later is now required.
758 The include copy has been updated too.
760 ** gnutls-cli can now recognize services and port numbers with the -p option.
762 ** API and ABI modifications:
763 No changes since last version.
765 * Version 1.3.4 (released 2006-02-09)
767 ** Fix read of out bounds bug in DER parser.
768 Reported by Evgeny Legerov <admin@gleg.net>, and debugging help from
769 Protover SSL.  Libtasn1 0.2.18 is now required, which contains the
770 previous bug fix.  The included libtasn1 version in GnuTLS has been
771 updated.
773 ** Fixed bug in non-blocking gnutls_bye(). gnutls_record_send() will no 
774 longer invalidate a session if the underlying send fails, but it will 
775 prevent future writes. That is to allow reading the already received data.
776 Patches and bug reports by Yoann Vandoorselaere <yoann@prelude-ids.org>
778 ** Corrected bugs in gnutls_certificate_set_x509_crl() and
779 gnutls_certificate_set_x509_trust(), that caused memory corruption if 
780 more than one certificates were added. Report and patch by Max Kellermann.
782 ** Fix build problems of OpenCDK on AIX.
783 Thanks to "Heiden, John" <JHeiden@UTNet.UToledo.Edu>.
785 ** API and ABI modifications:
786 No changes since last version.
788 * Version 1.3.3 (released 2006-01-12)
790 ** New API to access the TLS master secret.
791 When possible, you should use the TLS PRF functions instead.
792 Suggested by Jouni Malinen <jkmaline@cc.hut.fi>.
794 ** Improved handling when multiple libraries use GnuTLS at the same time.
795 Now gnutls_global_init() can be called multiple times, and
796 gnutls_global_deinit() will only deallocate the structure when it has
797 been called as many times as gnutls_global_init() was called.
799 ** Added a self test of TLS resume functionality.
801 ** Fix crash in TLS resume code, caused by TLS/IA changes.
803 ** Documentation fixes about thread unsafety, prompted by
804 ** discussion with bryanh@giraffe-data.com (Bryan Henderson).
805 In particular, gnutls_global_init() and gnutls_global_deinit() are not
806 thread safe.  Careful callers may want to protect the call using a
807 mutex.  The problem could also be ignored, which would cause a memory
808 leak under rare conditions when two threads invoke the function
809 roughly at the same time.
811 ** Add 'const' keywords in various places, from Frediano ZIGLIO.
813 ** The code was indented again, including the external header files.
815 ** API and ABI modifications:
816 New functions to retrieve the master secret value:
817   gnutls_session_get_master_secret
819 Add a 'const' keyword to existing API:
820   gnutls_x509_crq_get_challenge_password
822 * Version 1.3.2 (released 2005-12-15)
824 ** GnuTLS now support TLS Inner application (TLS/IA).
825 This is per draft-funk-tls-inner-application-extension-01.  This
826 functionality is added to libgnutls-extra, so it is licensed under the
827 GNU General Public License.
829 ** New APIs to access the TLS Pseudo-Random-Function (PRF).
830 The PRF is used by some protocols building on TLS, such as EAP-PEAP
831 and EAP-TTLS.  One function to access the raw PRF and one to access
832 the PRF seeded with the client/server random fields are provided.
833 Suggested by Jouni Malinen <jkmaline@cc.hut.fi>.
835 ** New APIs to acceess the client and server random fields in a session.
836 These fields can be useful by protocols using TLS.  Note that these
837 fields are typically used as input to the TLS PRF, and if this is your
838 intended use, you should use the TLS PRF API that use the
839 client/server random field directly.  Suggested by Jouni Malinen
840 <jkmaline@cc.hut.fi>.
842 ** Internal type cleanups.
843 The uint8, uint16, uint32 types have been replaced by uint8_t,
844 uint16_t, uint32_t.  Gnulib is used to guarantee the presence of
845 correct types on platforms that lack them.  The uint type have been
846 replaced by unsigned.
848 ** API and ABI modifications:
849 New functions to invoke the TLS Pseudo-Random-Function (PRF):
850   gnutls_prf
851   gnutls_prf_raw
853 New functions to retrieve the session's client and server random values:
854   gnutls_session_get_server_random
855   gnutls_session_get_client_random
857 New function, to perform TLS/IA handshake:
858   gnutls_ia_handshake
860 New function to decide whether to do a TLS/IA handshake:
861   gnutls_ia_handshake_p
863 New functions to allocate a TLS/IA credential:
864   gnutls_ia_allocate_client_credentials
865   gnutls_ia_free_client_credentials
866   gnutls_ia_allocate_server_credentials
867   gnutls_ia_free_server_credentials
869 New functions to handle the AVP callback:
870   gnutls_ia_set_client_avp_function
871   gnutls_ia_set_client_avp_ptr
872   gnutls_ia_get_client_avp_ptr
873   gnutls_ia_set_server_avp_function
874   gnutls_ia_set_server_avp_ptr
875   gnutls_ia_get_server_avp_ptr
877 New functions, to toggle TLS/IA application phases:
878   gnutls_ia_require_inner_phase
880 New function to mix session keys with inner secret:
881   gnutls_ia_permute_inner_secret
883 Low-level API (used internally by gnutls_ia_handshake):
884   gnutls_ia_endphase_send
885   gnutls_ia_send
886   gnutls_ia_recv
888 New functions that can be used after successful TLS/IA negotiation:
889   gnutls_ia_generate_challenge
890   gnutls_ia_extract_inner_secret
892 Enum type with TLS/IA modes:
893   gnutls_ia_mode_t
895 Enum type with TLS/IA packet types:
896   gnutls_ia_apptype_t
898 Enum values for TLS/IA alerts:
899   GNUTLS_A_INNER_APPLICATION_FAILURE
900   GNUTLS_A_INNER_APPLICATION_VERIFICATION
902 New error codes, to signal when an application phase has finished:
903   GNUTLS_E_WARNING_IA_IPHF_RECEIVED
904   GNUTLS_E_WARNING_IA_FPHF_RECEIVED
906 New error code to signal TLS/IA verify failure:
907   GNUTLS_E_IA_VERIFY_FAILED
909 * Version 1.3.1 (released 2005-12-08)
911 ** Support for DHE-PSK cipher suites has been added.
912 This method offers perfect forward secrecy.
914 ** Fix gnutls-cli STARTTLS hang when SIGINT is sent too quickly, thanks to
915 Otto Maddox <ottomaddox@fastmail.fm> and Nozomu Ando <nand@mac.com>.
917 ** Corrected a bug in certtool for 64 bit machines. Reported
918 by Max Kellermann <max@duempel.org>.
920 ** New function to set a X.509 private key and certificate pairs, and/or
921 CRLs, from an PKCS#12 file, suggested by Emile van Bergen
922 <emile@e-advies.nl>.
924 The integrity of the PKCS#12 file is protected through a password
925 based MAC; public-key based signatures for integrity protection are
926 not supported.  PKCS#12 bags may be encrypted using password derived
927 symmetric keys, public-key based encryption is not supported.  The
928 PKCS#8 keys may be encrypted using passwords.  The API use the same
929 password for all operations.  We believe that any more flexibility
930 create too much complexity that would hurt overall security, but may
931 add more PKCS#12 related APIs if real-world experience indicate
932 otherwise.
934 ** gnutls_x509_privkey_import_pkcs8 now accept unencrypted PEM PKCS#8 keys,
935 reported by Emile van Bergen <emile@e-advies.nl>.
936 This will enable "certtool -k -8" to parse those keys.
938 ** Certtool now generate keys in unencrypted PKCS#8 format for empty passwords.
939 Use "certtool -p -8" and press press enter at the prompt.  Earlier,
940 certtool would have encrypted the key using an empty password.
942 ** Certtool now accept --password for --key-info and encrypted PKCS#8 keys.
943 Earlier it would have prompted the user for it, even if --password was
944 supplied.
946 ** Added self test of PKCS#8 parsing.
947 Unencrypted and encrypted (pbeWithSHAAnd3-KeyTripleDES-CBC and
948 pbeWithSHAAnd40BitRC2-CBC) formats are tested.  The test is in
949 tests/pkcs8.
951 ** API and ABI modifications:
952 New function to set X.509 credentials from a PKCS#12 file:
953   gnutls_certificate_set_x509_simple_pkcs12_file
955 New gnutls_kx_algorithm_t enum type:
956   GNUTLS_KX_DHE_PSK
958 New API to return session data (basically same as gnutls_session_get_data):
959   gnutls_session_get_data2
961 New API to set PSK Diffie-Hellman parameters:
962   gnutls_psk_set_server_dh_params
964 * Version 1.3.0 (2005-11-15)
966 ** Support for TLS Pre-Shared Key (TLS-PSK) ciphersuites have been added.
967 This add several new APIs, see below.  Read the updated manual for
968 more information.  A new self test "pskself" has been added, that will
969 test this functionality.
971 ** The session resumption data are now system independent.
973 ** The code has been re-indented to conform to the GNU coding style.
975 ** Removed the RIPEMD ciphersuites.
977 ** Added a discussion of the internals of gnutls in manual.
979 ** Fixes for Tru64 UNIX 4.0D that lack MAP_FAILED, from Albert Chin.
981 ** Remove trailing comma in enums, for IBM C v6, from Albert Chin.
983 ** Make sure config.h is included first in a few files, from Albert Chin.
985 ** Don't use C++ comments ("//") as they are invalid, from Albert Chin.
987 ** Don't install SRP programs and man pages if --disable-srp-authentication,
988 from Albert Chin.
990 ** API and ABI modifications:
991 New gnutls_kx_algorithm_t key exchange type: GNUTLS_KX_PSK
993 New gnutls_credentials_type_t credential type:
994   GNUTLS_CRD_PSK
996 New credential types:
997   gnutls_psk_server_credentials_t
998   gnutls_psk_client_credentials_t
1000 New functions to allocate PSK credentials:
1001   gnutls_psk_allocate_client_credentials
1002   gnutls_psk_free_client_credentials
1003   gnutls_psk_free_server_credentials
1004   gnutls_psk_allocate_server_credentials
1006 New enum type for PSK key flags:
1007   gnutls_psk_key_flags
1009 New function prototypes for credential callback:
1010   gnutls_psk_client_credentials_function
1011   gnutls_psk_server_credentials_function
1013 New function to set PSK username and key:
1014   gnutls_psk_set_client_credentials
1016 New function to set PSK passwd file:
1017   gnutls_psk_set_server_credentials_file
1019 New function to extract PSK user in server:
1020   gnutls_psk_server_get_username
1022 New functions to set PSK callback:
1023   gnutls_psk_set_server_credentials_function
1024   gnutls_psk_set_client_credentials_function
1026 Use size_t instead of int for output size parameter:
1027   gnutls_srp_base64_encode
1028   gnutls_srp_base64_decode
1030 * Version 1.2.11 (2006-05-11)
1031 - The function gnutls_x509_crt_to_xml is not supported any more, and
1032   return an internal error.  The reason is that the function called
1033   internal libtasn1 functions which are no longer exported from
1034   libtasn1.
1035 - Updated libtasn1 requirement to 0.3.4 and refreshed internal mintiasn1.
1036 - Updated gnulib compatibility files.
1037 - Fixed _gnutls_x509_get_raw_crt_expiration_time and
1038   _gnutls_x509_get_raw_crt_activation_time to return (time_t)-1 on errors.
1039 - API and ABI modifications:
1040   No changes since last version.
1042 * Version 1.2.10 (2006-02-09)
1043 - Fix read out bounds bug in DER parser.  Reported by Evgeny Legerov
1044   <admin@gleg.net>, and debugging help from Protover SSL.
1045 - Libtasn1 0.2.18 is now required (contains the previous bug fix).
1046   The included version has been updated too.
1047 - Fix gnutls-cli STARTTLS hang when SIGINT is sent too quickly, thanks to
1048   Otto Maddox <ottomaddox@fastmail.fm> and Nozomu Ando <nand@mac.com>.
1049 - Corrected a bug in certtool for 64 bit machines. Reported
1050   by Max Kellermann <max@duempel.org>.
1051 - Corrected bugs in gnutls_certificate_set_x509_crl() and
1052   gnutls_certificate_set_x509_trust(), that caused memory corruption if
1053   more than one certificates were added. Report and patch by Max Kellermann.
1054 - Fixed bug in non-blocking gnutls_bye(). gnutls_record_send() will no 
1055   longer invalidate a session if the underlying send fails, but it will 
1056   prevent future writes. That is to allow reading the already received data.
1057   Patches and bug reports by Yoann Vandoorselaere <yoann@prelude-ids.org>
1059 * Version 1.2.9 (2005-11-07)
1060 - Documentation was updated and improved.
1061 - RSA-MD2 is now supported for verifying digital signatures.
1062 - Due to cryptographic advances, verifying untrusted X.509
1063   certificates signed with RSA-MD2 or RSA-MD5 will now fail with a
1064   GNUTLS_CERT_INSECURE_ALGORITHM verification output.  For
1065   applications that must remain interoperable, you can use the
1066   GNUTLS_VERIFY_ALLOW_SIGN_RSA_MD2 or GNUTLS_VERIFY_ALLOW_SIGN_RSA_MD5
1067   flags when verifying certificates.  Naturally, this is not
1068   recommended default behaviour for applications.  To enable the
1069   broken algorithms, call gnutls_certificate_set_verify_flags with the
1070   proper flag, to change the verification mode used by
1071   gnutls_certificate_verify_peers2.
1072 - Make it possible to send empty data through gnutls_record_send,
1073   to align with the send(2) API.
1074 - Some changes in the certificate receiving part of handshake to prevent
1075   some possible errors with non-blocking servers.
1076 - Added numeric version symbols to permit simple CPP-based feature
1077   tests, suggested by Daniel Stenberg <daniel@haxx.se>.
1078 - The (experimental) low-level crypto alternative to libgcrypt used
1079   earlier (Nettle) has been replaced with crypto code from gnulib.
1080   This leads to easier re-use of these components in other projects,
1081   leading to more review and simpler maintenance.  The new configure
1082   parameter --with-builtin-crypto replace the old --with-nettle, and
1083   must be used if you wish to enable this functionality.  See README
1084   under "Experimental" for more information.  Internally, GnuTLS has
1085   been updated to use the new "Generic Crypto" API in gl/gc.h.  The
1086   API is similar to the old crypto/gc.h, because the gnulib code were
1087   based on GnuTLS's gc.h.
1088 - Fix compiler warning in the "anonself" self test.
1089 - API and ABI modifications:
1090 gnutls_x509_crt_list_verify: Added 'const' to prototype in <gnutls/x509.h>.
1091                              This doesn't reflect a change in behaviour,
1092                              so we don't break backwards compatibility.
1093 GNUTLS_MAC_MD2: New gnutls_mac_algorithm_t value.
1094 GNUTLS_DIG_MD2: New gnutls_digest_algorithm_t value.
1095 GNUTLS_VERIFY_ALLOW_SIGN_RSA_MD2,
1096 GNUTLS_VERIFY_ALLOW_SIGN_RSA_MD5: New gnutls_certificate_verify_flags values.
1097                                   Use when calling
1098                                   gnutls_x509_crt_list_verify,
1099                                   gnutls_x509_crt_verify, or
1100                                   gnutls_certificate_set_verify_flags.
1101 GNUTLS_CERT_INSECURE_ALGORITHM: New gnutls_certificate_status_t value,
1102                                 used when broken signature algorithms
1103                                 is used (currently RSA-MD2/MD5).
1104 LIBGNUTLS_VERSION_MAJOR,
1105 LIBGNUTLS_VERSION_MINOR,
1106 LIBGNUTLS_VERSION_PATCH,
1107 LIBGNUTLS_VERSION_NUMBER: New CPP symbols, indicating the GnuTLS
1108                           version number, can be used for feature existence
1109                           tests.
1111 * Version 1.2.8 (2005-10-07)
1112 - Libgcrypt 1.2.2 is required to fix a bug for forking GnuTLS servers.
1113 - Don't install the auxilliary libexamples library used by the
1114   examples in doc/examples/ on "make install", report and tiny patch
1115   from Thomas Klausner <tk@giga.or.at>.
1116 - If you pass a X.509 CA or PGP trust database to the command line
1117   tool, it will now abort the connection if the server certificate
1118   validation fails.  Use the parameter --insecure to continue even
1119   after certificate validation failures.  Inspired from discussion
1120   with Alexander Kotelnikov <sacha@myxomop.com>.
1121 - The test for socklen_t has been moved to gnulib.
1122 - Link failures for duplicate or missing "program_name" symbol has been fixed,
1123   patch from Martin Lambers <marlam@marlam.de>.
1124 - The command line tool and the examples no longer uses mmap or bzero,
1125   to make them more portable, patch from Martin Lambers
1126   <marlam@marlam.de>.
1127 - Made the PKCS #12 API handle null passwords. Based on patch by
1128   Anton Altaparmakov <aia21@cam.ac.uk>.
1129 - The GTK-DOC manual should build with current released tools.
1130   (But a copy of the output is included, so the tools are not required.)
1131 - The inet_ntop function is now used through gnulib.
1132 - API and ABI modifications:
1133   No changes since last version.
1135 * Version 1.2.7 (2005-09-09)
1136 - The GNUTLS and GNUTLS-EXTRA libraries are now built with versioned symbols.
1137 - Certtool now complains when reading out-of-range X.509 serial
1138   numbers, suggested by Fran <e_agf@yahoo.es>.
1139 - Certtool now uses the readline library (when available) when reading
1140   X.509 serial numbers.
1141 - Fixed build problems in getpass on uClibc and Mingw32 platforms.
1142 - Fixed compile warning regarding socklen_t on Mingw32, reported by
1143   Martin Lambers <marlam@marlam.de>.
1144 - Fixed examples in doc/examples/, suggested by Fran <e_agf@yahoo.es>.
1145 - Gnulib is now used for the core library, enabling future code cleanups.
1146 - The gnutls-cli tool now use gnutls_certificate_verify_peers2,
1147   suggested by Daniel Stenberg <daniel@haxx.se>.
1148 - Doc fixes for gnutls_transport_set_push and gnutls_transport_set_pull.
1149 - Minilibtasn1 is now 0.2.17 (removed optional use of C99 macros).
1150 - Disable zlib support if zlib.h is not present.
1151 - A number of internal cleanups.
1152 - API and ABI modifications:
1153   No changes since last version.
1155 * Version 1.2.6 (2005-07-16)
1156 - MiniLZO updated to version 2.01 and moved to separate directory.
1157 - Collision between system LZO header files and MiniLZO header file
1158   fixed, reported by Matthias Urlichs <smurf@smurf.noris.de>.
1159 - Will now test for liblzo functionality in liblzo2 too, reported by
1160   Thomas Klausner <tk@giga.or.at>.
1161 - Minilibtasn1 is now 0.2.14 (no code changes).
1162 - Some code changes to avoid GTK-DOC warnings.
1163 - API and ABI modifications:
1164   No changes since last version.
1166 * Version 1.2.5 (2005-07-03)
1167 - More builddir != srcdir fixes, reported by Mike Castle
1168   <dalgoda@ix.netcom.com>.
1169 - Fixed off-by-one bug in the size parameter of gnutls_x509_crt_get*_dn,
1170   reported by Adam Langley <alangley@gmail.com>.
1171 - Corrected some stuff in minilzo detection. Pointed out by 
1172   Sergey Lipnevich.
1173 - MiniLZO updated to version 2.00.
1174 - gnutls_x509_crt_list_import now accept a DER formatted CRL.
1175 - API and ABI modifications:
1176   No changes since last version.
1178 * Version 1.2.4 (2005-05-28)
1179 - Corrected some bugs that could affect 64 bit systems.
1180 - Some corrections in the header files to include the prototype
1181   of memmem properly (affected 64 bit systems). Report and patch
1182   by Yoann Vandoorselaere <yoann@prelude-ids.org>.
1183 - Introduced the --fix-key option to certtool, which can be used to
1184   regenerate the (optional) parameters in a private key. It should
1185   be used together with --key-info.
1186 - Corrected a bug in certificate chain verification that could lead
1187   to marking a trusted chain as non trusted, if the last certificate in
1188   the chain was a self signed one.
1189 - Gnulib portability files were updated.
1190 - License were updated to reflect new FSF address.
1191 - API and ABI modifications:
1192   No changes since last version.
1194 * Version 1.2.3 (2005-04-28)
1195 - Corrected bug in record packet parsing that could lead
1196   to a denial of service attack.
1197 - Corrected bug in RSA key export. Previously exported keys
1198   can be fixed using certtool. Use certtool -k <infile >outfile
1199 - API and ABI modifications:
1200     gnutls_x509_privkey_fix(): Add.
1202 * Version 1.2.2 (2005-04-25)
1203 - gnutls_error_to_alert() now considers
1204   GNUTLS_E_UNEXPECTED_HANDSHAKE_PACKET.
1205 - Fixed error in session resuming that could cause a crash in a session.
1206 - Fixed pkcs12 friendly name and local key identifier decoding.
1207 - Internal cleanups, removed duplicate typedef/struct definitions,
1208   and made source code include external include file, to check
1209   function prototypes during compile time.
1210 - API and ABI modifications:
1211   No changes since last version.  At least not intentional, but due
1212   to the include header changes, there may be inadvertant changes,
1213   please let us know if you find any.
1215 * Version 1.2.1 (2005-04-04)
1216 - gnutls_bye() will no longer fail when RDWR is used and application
1217   data are available for reading.
1218 - Added more strict checks for the SRP parameters (g,n), when they
1219   are not in the included list.
1220 - Added warning to certtool when MD5 is being used for digital
1221   signatures.
1222 - Optimizations ("-O2 -finline-functions") are not enabled by default,
1223   instead the standard autoconf defaults are used.  Use `./configure
1224   CFLAGS="-O2 -finline-functions"' to get the old optimizations.
1225 - Added the option --get-dh-params to certtool, in order to get the
1226   parameters included in the library primes and generators.
1227 - Improved the semantics of GNUTLS_VERIFY_ALLOW_X509_V1_CA_CRT, to
1228   allow only trusted Version 1 CAs and introduced
1229   GNUTLS_VERIFY_ALLOW_ANY_X509_V1_CA_CRT which has the old semantics.
1230 - Nettle self tests now build properly, reported by Pierre
1231   <pierre42d@9online.fr>.
1232 - Eliminated some memory leaks in DHE and RSA-EXPORT cipher suites.
1233   Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
1234 - If the library has been compiled with features disabled, a warning is 
1235   issued during the compilation of any program.
1236 - API and ABI modifications:
1237     gnutls_x509_crt_list_import(): Add
1238     gnutls_x509_crq_get_attribute_by_oid(): Add.
1239     gnutls_x509_crq_set_attribute_by_oid(): Add
1240     gnutls_x509_crt_set_extension_by_oid(): Add.
1241     GNUTLS_VERIFY_ALLOW_X509_V1_CA_CRT: Modify semantics.
1242     GNUTLS_VERIFY_ALLOW_ANY_X509_V1_CA_CRT: Add, old behaviour.
1244 * Version 1.2.0 (2005-01-27)
1245 - Added the definitions and OIDs for the RIPEMD-160 hash algorithm.
1246 - Introduced gnutls_x509_crt_sign2(), gnutls_x509_crq_sign2() and 
1247   gnutls_x509_crl_sign2().
1248 - Fixed license header in source code files.
1250 * Version 1.1.23 (2005-01-18)
1251 - It is now possible to generate PKCS#12 structures without private
1252   keys using "certtool --to-p12", suggested by Fabian Fagerholm
1253   <fabbe@paniq.net>.
1254 - Certtool now prints information for the RSA and DSA parameters of
1255   certificates and private keys.
1256 - Corrected the write of CRL distribution points.
1257 - The certificate chain verification function now checks certificates
1258   in the reverse order to minimize the spent resources.
1259 - Corrected several bugs found by Marcin Garski <mgarski@post.pl>
1260 - The functions gnutls_x509_crl_get_issuer_dn, gnutls_x509_crq_get_dn,
1261   gnutls_x509_crt_get_issuer_dn, gnutls_x509_crt_get_dn, and
1262   gnutls_x509_rdn_get now set *sizeof_buf to the buffer length that is
1263   required, instead of the string length.  That is, the value has been
1264   incremented by 1 to account for the terminating zero. Reported by
1265   Martin Lambers <marlam@web.de>.
1266 - Debug output shouldn't crash on platforms that doesn't handle NULL
1267   printf %s values.  Reported by Michael.Ringe@aachen.utimaco.de.
1268 - Sync included copy of libtasn1 with version 0.2.13.
1269 - Client X.509 authenticated connections via gnutls-cli should now work again.
1271 * Version 1.1.22 (2004-11-04)
1272 - Replace GNU LD version script with Libtool -export-symbols-regex,
1273   from Joe Orton <joe@manyfish.co.uk>.
1274 - Documentation improvements.
1275 - Code indented using 'indent -i4 -kr'.
1276 - The API manual is included in Devhelp format.  (Was in last release too,
1277   but the NEWS entry was forgotten.)
1278 - The OpenSSL compatibility code now use the internal crypto interface.
1279 - Added simple self test of OpenSSL compatibility library.
1280 - Internally, libtool convenience libraries are used.
1281 - Cleanups to configure.ac.
1283 * Version 1.1.21 (2004-10-27)
1284 - Print DN of certificates with unknown characters in them, but in hexform
1285   only.
1286 - Added second precision to the X.509 parsing and generation functions.
1287 - Corrected bug in _gnutls_x509_get_dn_oid(), and returns the
1288   actual OID.
1289 - Add parameter --la-file to libgnutls-config and libgnutls-extra-config,
1290   tiny patch contributed by Joe Orton <joe@manyfish.co.uk>.
1291 - Add pkg-config meta files, suggested by Stéphane LOEUILLET
1292   <stephane.loeuillet@tiscali.fr>.
1293 - Fix memory initializaion bug in gnutls_certificate_set_x509_trust,
1294   tiny patch by Aleix Conchillo Flaque <aleix@member.fsf.org>.
1295 - Add self test of PKCS#12 functionality in "certtool", based on test
1296   vectors from Joe Orton <joe@manyfish.co.uk>.
1297 - Fix library order in libgnutls*-config --libs output, to permit
1298   static linking, reported by Yoann Vandoorselaere
1299   <yoann@prelude-ids.org>.
1301 * Version 1.1.20 (2004-10-12)
1302 - Fix compile problem in gl/getpass.c on some systems.
1304 * Version 1.1.19 (2004-10-07)
1305 - Fix memory leak in gnutls_certificate_verify_peers and
1306   gnutls_certificate_free_credentials, report and patch by Simon
1307   Posnjak <simon.posnjak@cetrtapot.si>.
1308 - Fix crash in `certtool --to-p12 --load-privkey foo', i.e. exporting
1309   a key and no certificate to PKCS#12.
1310 - Fix objdir != srcdir builds, reported by "Gerrit P. Haase"
1311   <gp@familiehaase.de>.
1312 - Fixes faulty getpass implementation in libextra/opencdk/, reported
1313   by Yoann Vandoorselaere <yoann@prelude-ids.org>.
1314 - Uses memmem instead of strnstr in lib/.
1315 - Using more GNULib portability files, although not yet inside lib/.
1316 - Added gnutls_certificate_verify_peers to gnutls/compat.h.
1317   Nikos deprecated gnutls_certificate_verify_peers in favor of
1318   gnutls_certificate_verify_peers2 earlier in the 1.1 branch.
1319 - Improvements to the manual.
1320 - Add new example "ex-rfc2818" for certificate verification, from Nikos.
1321 - Known bug: the library require snprintf.  This has not yet been
1322   fixed, but will be handled via GNULib later on.
1324 * Version 1.1.18 (2004-08-24)
1325 - Corrected handling of certificate with dates after year 2038.
1326 - Corrected DER decoder which could incorrectly treat input as BER and fail.
1327 - Correct certtool --smime-to-p7 end of line character handling.
1328 - Added example client and server for anonymous authentication.
1329 - Added self test that tests anonymous TLS client and server.
1330 - Added self tests of Nettle and generic crypto layer.
1331 - Added API reference manual in HTML format in doc/reference/ using GTK-DOC.
1332   Online version at <http://www.gnu.org/software/gnutls/reference/>.
1333 - Assume C89 or better; removed checks for size_t, ptrdiff_t and time_t.
1334 - Man pages for API functions are included.
1336 * Version 1.1.17 (2004-08-18)
1337 - Bug fix of padding string in RSA PKCS#1 v1.5 type 2 encryption,
1338   reported by Robey Pointer <robey@danger.com>.
1339 - Generic crypto interface for secret key ciphers, hashes and randomness added.
1340   See section "Experimental" within section "COMPILATION ISSUES" in README.
1341 - Removed length limit on passwords read by 'certtool'.
1342 - Documentation fixes.
1344 * Version 1.1.16 (2004-08-15)
1345 - Fix missing gnulib linker parameter when building certtool.
1346 - Add gnulib module 'progname', needed by module 'error'.
1347 - Improve building with srcdir != objdir.
1349 * Version 1.1.15 (2004-08-15)
1350 - Certtool has simplistic --smime-to-p7 to translate RFC 2633 messages into
1351   PKCS #7 format.
1352 - Ported to Mac OS X / Darwin.
1353 - Ported to FreeBSD.
1355 * Version 1.1.14 (2004-08-09)
1356 - Documentation converted to Texinfo format.
1357 - Bug fix of test suite.
1358 - Configure now print build information, used by Autobuild.
1360 * Version 1.1.13 (2004-08-05)
1361 - Added simple self test suite.
1363 * Version 1.1.12 (2004-08-02)
1364 - Updated the SRP authentication to conform to the
1365   latest (yet unreleased) draft. Unfortunately this breaks
1366   compatibility with previous versions.
1367 - Changed the makefiles to be more portable.
1368 - SRP ciphersuites were moved to the gnutls library.
1369 - Added some default limits in the verification of certificate
1370   chains, to avoid denial of service attacks. Also added 
1371   gnutls_certificate_set_verify_limits() to override them.
1372   Issue pointed out by Patrik Hornik <patrik@hornik.sk>.
1373 - Added gnutls_certificate_verify_peers2().
1375 * Version 1.1.11 (2004-07-16)
1376 - Added the '_t' suffix to all exported symbols.
1377 - Fixed bug in RSA encryption, report and patch by Martijn Koster 
1378   <mak@greenhills.co.uk>.
1379 - Corrected a bug in certificate verification. Pointed out by
1380   Yoann Vandoorselaere <yoann@prelude-ids.org>
1381 - Added the GNUTLS_VERIFY_DO_NOT_ALLOW_SAME flags to the
1382   verification functions.
1383 - The ephemeral DH and RSA parameters are no longer stored in the
1384   session resume DB.
1385 - Do not free the SRP (prime and generator) parameters obtained from the 
1386   callback if they are the static ones defined in extra.h
1387 - Eliminated some memory leaks. Reported by Yoann Vandoorselaere.
1389 * Version 1.1.10 (2004-06-12)
1390 - Added gnutls_sign_algorithm_get_name() and gnutls_pk_algorithm_get_name()
1391 - Corrected bug in TLS renegotiation.
1392 - Corrected bug in OpenPGP key loading using a callback.
1393 - gnutls-srpcrypt was renamed to srptool
1394 - Allow handshake requests by the client.
1395 - Automatically disable certificate types that do not have corresponding
1396   certificates.
1397 - Added gnutls_auth_client_get_type() and gnutls_auth_server_get_type()
1398 - Opencdk library is being included if not found.
1399 - certtool can now add ip address SAN extension.
1400 - certtool has now support for more X.520 DN attribute types.
1401 - Better handling of EOF in gnutls_record_recv().
1402 - _gnutls_deinit() is no longer used. Sessions are not
1403   automatically removed any more, on abnormal termination.
1404 - Corrected session resuming in SRP ciphersuites.
1405 - Updated to conform to the latest srp draft (draft-ietf-tls-srp-07)
1406 - Added new functions to allow access to the ephemeral
1407   Diffie Hellman parameters.
1408 - Added the functions gnutls_x509_crt_get_pk_rsa_raw() and
1409   gnutls_x509_crt_get_pk_dsa_raw() to retrieve parameters from certificates.
1410 - Added the functions gnutls_dh_get_group(), gnutls_dh_get_pubkey() and
1411   gnutls_rsa_export_get_pubkey() to retrieve parameters of the DH or
1412   RSA-EXPORT key exchange.
1413 - Some fixes in the session resuming code.
1414 - Added gnutls_openpgp_keyring_check_id().
1416 * Version 1.1.9 (2004-04-14)
1417 - Added support for authority key identifier and the extended key usage
1418   X.509 extension fields. The certtoool was updated to support them.
1419 - The RC2 cipher is no more included. The one in libgcrypt is now used.
1420 - Added batch support to certtool. Now it can use templates.
1422 * Version 1.1.8 (2004-04-07)
1423 - Implemented all the tests for the SRP group parameters in
1424   client side. This may lead to incompatibility with very
1425   old gnutls servers.
1426 - Corrected bug in RSA parameters handling which could cause
1427   unexpected crashes.
1428 - Optimized the copying of rsa_params.
1430 * Version 1.1.7 (2004-03-29)
1431 - Added gnutls_certificate_set_params_function() and 
1432   gnutls_anon_set_params_function() that set the RSA or DH
1433   parameters using a callback.
1434 - Added functions gnutls_rsa_params_cpy(), gnutls_dh_params_cpy()
1435   and gnutls_x509_privkey_cpy().
1436 - Corrected a compilation issue when opencdk was installed in a
1437   non standard directory.
1438 - Deprecated: gnutls_srp_server_set_select_function(), 
1439   gnutls_certificate_client_set_select_function(), gnutls_srp_server_set_select_function().
1441 * Version 1.1.6 (2004-02-24)
1442 - Several bug fixes, by Arne Thomassen.
1443 - Fixed a bug where 'server name' extension was always sent.
1445 * Version 1.1.5 (2004-01-06)
1446 - Added the gnutls_sign_algorithm type.
1448 * Version 1.1.4 (2004-01-04)
1449 - Improved gnutls-cli's SRP behaviour in SRP ciphersuites.
1450   If they are of highest priority then the abbreviated handshake
1451   is used.
1452 - Removed all references of missing files.
1453 - Changed handshake behaviour to send the lowest TLS version
1454   when an unsupported version was advertized. The current behaviour
1455   is to send the maximum version we support.
1456 - Corrected problem printing the DC attributes in a DN.
1458 * Version 1.1.3 (2003-12-30)
1459 - Implemented TLS 1.1 (and also obsoleted the TLS 1.0 CBC protection
1460   hack).
1462 * Version 1.1.2 (2003-12-28)
1463 - Added CRL verification functionality to certtool.
1464 - Corrected the CRL distribution point extension handling.
1466 * Version 1.1.1 (2003-12-26)
1467 - Added PKCS #7 support to certtool utility.
1468 - Added support for reading and generating CRL distribution
1469   points extensions in certificates.
1470 - Added support for generating CRLs in the library and the
1471   certtool utility.
1472 - Added support for the Subject Key ID PKIX extension.
1474 * Version 1.1.0 (2003-12-21)
1475 - The error codes GNUTLS_E_NO_TEMPORARY_DH_PARAMS and GNUTLS_E_NO_TEMPORARY_RSA_PARAMS
1476   are no longer returned by the handshake function. Ciphersuites that
1477   require temporary parameters are removed when such parameters do not exist.
1478 - Added the callbacks gnutls_certificate_client_retrieve_function() and
1479   gnutls_certificate_server_retrieve_function(), to allow a client or a server
1480   to specify certificates for the handshake without storing them to the
1481   credentials structure.
1482 - Added support for generating and exporting DSA private keys.
1483 - Added gnutls_x509_crt_set_key_usage() and certtool can now set the
1484   certificate's key usage.
1485 - Added gnutls_openpgp_key_get_key_usage().
1487 * Version 1.0.25 (2005-04-27)
1488 - Corrected bug in record packet parsing that could lead
1489   to a denial of service attack.
1490 - Corrected bug in RSA key export.
1492 * Version 1.0.24 (2005-01-18)
1493 - Corrected several bugs found by Marcin Garski <mgarski@post.pl>
1495 * Version 1.0.23 (2004-11-13)
1496 - Replace GNU LD version script with Libtool -export-symbols-regex,
1497   from Joe Orton <joe@manyfish.co.uk>.
1498 - Copy libtasn1 has been updated to version 0.2.11.
1499 - Corrected the write of CRL distribution points.
1500 - It is now possible to generate PKCS#12 structures without private
1501   keys using "certtool --to-p12", suggested by Fabian Fagerholm
1502   <fabbe@paniq.net>.
1504 * Version 1.0.22 (2004-10-28)
1505 - Print DN of certificates with unknown characters in them, but in hexform
1506   only.
1507 - Corrected bug in _gnutls_x509_get_dn_oid(), and returns the
1508   actual OID.
1509 - Added second precision to the X.509 parsing functions.
1510 - Add parameter --la-file to libgnutls-config and libgnutls-extra-config,
1511   tiny patch contributed by Joe Orton <joe@manyfish.co.uk>.
1512 - Add pkg-config meta files, suggested by Stéphane LOEUILLET
1513   <stephane.loeuillet@tiscali.fr>.
1514 - Fix memory initializaion bug in gnutls_certificate_set_x509_trust,
1515   tiny patch by Aleix Conchillo Flaque <aleix@member.fsf.org>.
1516 - Fix certtool --password for PKCS #12, back ported from 1.1.x branch.
1517 - Fix library order in libgnutls*-config --libs output, to permit
1518   static linking, reported by Yoann Vandoorselaere
1519   <yoann@prelude-ids.org>.
1521 * Version 1.0.21 (2004-10-07)
1522 - Fix memory leak in gnutls_certificate_verify_peers and
1523   gnutls_certificate_free_credentials, report and patch by Simon
1524   Posnjak <simon.posnjak@cetrtapot.si>.
1525 - Fix crash in `certtool --to-p12 --load-privkey foo', i.e. exporting
1526   a key and no certificate to PKCS#12.
1527 - Fix objdir != srcdir builds, reported by "Gerrit P. Haase"
1528   <gp@familiehaase.de>.
1529 - Avoid redefining getpass if system already has it, reported by
1530   Yoann Vandoorselaere <yoann@prelude-ids.org>.
1531 - Add new example "ex-rfc2818" for certificate verification, from Nikos.
1532 - Known bug: the library require snprintf.
1534 * Version 1.0.20 (2004-08-18)
1535 - Bug fix of padding string in RSA PKCS#1 v1.5 type 2 encryption,
1536   reported by Robey Pointer <robey@danger.com>.
1538 * Version 1.0.19 (2004-08-09)
1539 - Bug fix of test suite.
1541 * Version 1.0.18 (2004-08-05)
1542 - Added simple self test suite.
1544 * Version 1.0.17 (2004-08-02)
1545 - Updated the SRP authentication to conform to the
1546   latest (yet unreleased) draft. Unfortunately this breaks
1547   compatibility with previous versions.
1548 - Changed the makefiles to be more portable.
1549 - Added some default limits in the verification of certificate
1550   chains, to avoid denial of service attacks. Also added 
1551   gnutls_certificate_set_verify_limits() to override them.
1552   Issue pointed out by Patrik Hornik <patrik@hornik.sk>.
1553 - Added gnutls_certificate_verify_peers2().
1555 * Version 1.0.16 (2004-07-10)
1556 - Do not free the SRP (prime and generator) parameters obtained from the 
1557   callback if they are the static ones defined in extra.h.
1558 - Eliminated some memory leaks. Reported by Yoann Vandoorselaere.
1559 - Some fixes in the makefiles.
1561 * Version 1.0.15 (2004-06-29)
1562 - Fixed bug in RSA encryption, report and patch by Martijn Koster 
1563   <mak@greenhills.co.uk>.
1564 - Corrected a bug in certificate verification. Pointed out by
1565   Yoann Vandoorselaere <yoann@prelude-ids.org>.
1567 * Version 1.0.14 (2004-06-12)
1568 - Automatically disable certificate types that do not have corresponding
1569   certificates.
1570 - Updates in the documentation.
1571 - certtool can now add ip address SAN extension.
1572 - certtool has now support for more X.520 DN attribute types.
1573 - Opencdk library is being included if not found.
1574 - Added gnutls_openpgp_keyring_check_id().
1575 - Corrected a serious bug in the included libtasn1 library.
1576 - Corrected session resuming in SRP ciphersuites.
1577 - Updated to conform to the latest srp draft (draft-ietf-tls-srp-07)
1578 - Added the functions gnutls_x509_crt_get_pk_rsa_raw() and
1579   gnutls_x509_crt_get_pk_dsa_raw() to retrieve parameters from certificates.
1580 - Some fixes in the session resuming code.
1582 * Version 1.0.13 (2004-04-29)
1583 - Some complilation fixes.
1584 - Added the --xml parameter to the certtool utility.
1586 * Version 1.0.12 (2004-04-23)
1587 - Corrected bug in OpenPGP key loading using a callback.
1588 - Renamed gnutls-srpcrypt to srptool
1589 - Allow handshake requests by the client.
1590 * Things backported from the development branch:
1591 - Added support for authority key identifier and the extended key usage
1592   X.509 extension fields. The certtoool was updated to support them.
1593 - Added batch support to certtool. Now it can use templates.
1594 - The RC2 cipher is no more included. The one in libgcrypt is now used.
1596 * Version 1.0.11 (2004-04-17)
1597 - Added gnutls_sign_algorithm_get_name() and gnutls_pk_algorithm_get_name()
1598 - Corrected bug in TLS renegotiation.
1600 * Version 1.0.10 (2004-04-03)
1601 - Corrected bug in RSA parameters handling which could cause
1602   unexpected crashes.
1603 - Corrected bug in SSL 3.0 authentication.
1605 * Version 1.0.9 (2004-03-29)
1606 - Added gnutls_certificate_set_params_function() and 
1607   gnutls_anon_set_params_function() that set the RSA or DH
1608   parameters using a callback.
1609 - Added functions gnutls_rsa_params_cpy(), gnutls_dh_params_cpy()
1610   and gnutls_x509_privkey_cpy().
1611 - Corrected a compilation issue when opencdk was installed in a
1612   non standard directory.
1613 - Documented the changes need in multi-threaded application due
1614   to the new libgcrypt.
1616 * Version 1.0.8 (2004-02-28)
1617 - Corrected bug in mutual certificate authentication in SSL 3.0.
1619 * Version 1.0.7 (2004-02-25)
1620 - Implemented TLS 1.1 (and also obsoleted the TLS 1.0 CBC protection
1621   hack).
1622 - Some updates in the documentation.
1624 * Version 1.0.6 (2004-02-12)
1625 * Backported things from the development branch (while maintaining
1626   backwards compatibility):
1627 - Improved gnutls-cli's SRP behaviour in SRP ciphersuites.
1628   If they are of highest priority then the abbreviated handshake
1629   is used.
1630 - The error codes GNUTLS_E_NO_TEMPORARY_DH_PARAMS and GNUTLS_E_NO_TEMPORARY_RSA_PARAMS
1631   are no longer returned by the handshake function. Ciphersuites that
1632   require temporary parameters are removed when such parameters do not exist.
1633 - Added the callbacks gnutls_certificate_client_retrieve_function() and
1634   gnutls_certificate_server_retrieve_function(), to allow a client or a server
1635   to specify certificates for the handshake without storing them to the
1636   credentials structure.
1637 - Added support for generating and exporting DSA private keys.
1639 * Version 1.0.5 (2004-02-11)
1640 - Fixed a bug where 'server name' extension was always sent.
1641 * Backported things from the development branch:
1642 - Added CRL verification functionality to certtool.
1643 - Corrected the CRL distribution point extension handling.
1644 - Added PKCS #7 support to certtool utility.
1645 - Added support for reading and generating CRL distribution
1646   points extensions in certificates.
1647 - Added support for generating CRLs in the library and the
1648   certtool utility.
1649 - Added support for the Subject Key ID PKIX extension.
1650 - Added the gnutls_sign_algorithm type.
1652 * Version 1.0.4 (2004-01-04)
1653 - Changed handshake behaviour to send the lowest TLS version
1654   when an unsupported version was advertized. The current behaviour
1655   is to send the maximum version we support.
1656 - certtool no longer asks the password in unencrypted private
1657   keys.
1658 - The source is now compiled to use the reentrant libc functions.
1660 * Version 1.0.3 (2003-12-21)
1661 - Corrected bug in gnutls_bye() which made it return an error code
1662   of INVALID_REQUEST instead of success.
1663 - Corrected a bug in the GNUTLS_KEY key usage definitions.
1665 * Version 1.0.2 (2003-12-18)
1666 - Corrected a bug in the RSA key generation. This was
1667   generating unusable RSA keys.
1669 * Version 1.0.1 (2003-12-10)
1670 - Some minor fixes in the makefiles. They now include CFLAGS
1671   from libgcrypt or opencdk if installed in a non standard directory.
1672 - Fixed the SRP detection test in gnutls-cli-debug.
1673 - Added gnutls_rsa_params_export_pkcs1() and gnutls_rsa_params_import_pkcs1().
1675 * Version 1.0.0 (2003-12-04)
1676 - Exported the static SRP group parameters.
1677 - Some fixes in the certificate authenticated SRP ciphersuites.
1678 - Improved the support for draft-ietf-tls-srp-05. The two-phase
1679   handshake is now fully supported without any interaction with
1680   the application layer (except for a callback).
1682 * Version 0.9.99 (2003-11-28)
1683 - Some fixes in the gnutls.h header for the gnutls_server_name_set()
1684   and gnutls_server_name_get() prototypes.
1685 - Exported the gnutls_x509_privkey_sign_data(), gnutls_x509_privkey_verify_data() 
1686   and gnutls_x509_crt_verify_data().
1687 - Some fixes in the openpgp authentication.
1688 - Removed the Twofish cipher.
1690 * Version 0.9.98 (2003-11-16)
1691 - The openssl compatibility layer was moved to gnutls-openssl
1692   library instead of being included in the gnutls-extra library.
1693 - Added the RIPEMD ciphersuites defined in draft-ietf-tls-openpgp-keys-04.
1694 - Building with openpgp support is now mandatory.
1695 - gnutls4 compatibility header is no longer included by default in
1696   gnutls.h.
1697 - gnutls8 function usage yelds a deprecation warning in gcc3.
1698 - gnutls_x509_*_set_dn_by_oid() and gnutls_x509_*_get_*_dn_by_oid()
1699   functions have a raw_flag parameter added.
1700 - Added gnutls_x509_*_get_dn_oid() and gnutls_x509_crt_get_extension_oid()
1701   functions which return the available OIDs.
1703 * Version 0.9.97 (2003-11-11)
1704 - The certtool utility can now generate PKCS #12 structures
1705   without specifying a certificate.
1706 - Added capability to read CRLs to certtool.
1707 - Corrected some functions which return GNUTLS_E_SHORT_MEMORY_BUFFER
1708   to properly set the required buffer size.
1709 - Corrected a bug in libgcrypt detection.
1711 * Version 0.9.96 (2003-11-09)
1712 - Some changes to allow compilation with mingw32.
1713 - Several code cleanups.
1715 * Version 0.9.95 (2003-11-02)
1716 - Improved the verification functions. Added new verification
1717   output flags and removed the unused and redundant ones.
1718 - Improved the OpenPGP key support.
1719 - The prime utility was removed, and its functionality was moved
1720   to certtool.
1722 * Version 0.9.94 (2003-10-30)
1723 - Added manpages for the included programs.
1724 - Documented and improved the certtool utility. 
1725 - Added PKCS #12 support to certtool utility.
1727 * Version 0.9.93 (2003-10-26)
1728 - Corrected some compilation issues.
1729 - Improved the certtool command line utility.
1731 * Version 0.9.92 (2003-10-25)
1732 - The RFC2818 hostname verification is now case insensitive.
1733 - Added support for generating X.509 certificates.
1734 - Added the certtool, a tool for generating X.509 certificates
1736 * Version 0.9.91 (2003-10-17)
1737 - Fixed a compilation issue in the openpgp authentication part.
1739 * Version 0.9.90 (2003-10-08)
1740 - Updated the openpgp key API (depends on the unreleased new
1741   opencdk).
1743 * Version 0.9.8 (2003-10-02)
1744 - Updated the SRP implementation to follow the latest draft
1745   (draft-ietf-tls-srp-05).
1746 - Improved the gnutls-cli behaviour in error handling,
1747   and added a check for the peer's hostname.
1748 - Use versioned symbols in the library (where available).
1749 - RIJNDAEL ciphersuites were renamed to AES.
1751 * Version 0.9.7 (2003-08-25)
1752 - The tex files are now included in the distribution.
1753 - The library can now decrypt PKCS #12 files encrypted with
1754   the RC2-40 cipher.
1755 - The missing rfc2818_hostname object is now included.
1756 - Several corrections and bug fixes in the library by 
1757   Arne Thomassen <arne@arne-thomassen.de>.
1758 - CR is now allowed in the base64 decoder.
1760 * Version 0.9.6 (2003-06-28)
1761 - Added gnutls_x509_privkey_get_key_id() and gnutls_x509_crt_get_key_id()
1762   functions which return a unique (per public key) ID. These can
1763   be used to check if the private key corresponds to a given certificate.
1764 - Corrections in the TLS layer openpgp certificate packet parser.
1765 - Corrected a bug in the record layer buffering, which affected
1766   the case where external pull function was used. Report and patch
1767   by Sergey Poznyakoff <gray@Mirddin.farlep.net>.
1768 - Corrected a bug in gnutls-srpcrypt where a non allocated variable
1769   was freed.
1770 - SRP programs are now built by default.
1771 - Added API to read and write to PKCS #12 structures. Prototypes
1772   in gnutls/pkcs12.h.
1773 - The gnutls_transport_ptr type was changed to a pointer type (void*).
1775 * Version 0.9.5 (2003-04-06)
1776 - Several improvements in the PKCS #7 handling
1777 - Eliminated several hard coded constants in MPI parameters.
1779 * Version 0.9.4 (2003-03-28)
1780 - Corrected a parsing error in the Certificate request message.
1781 - Corrected behaviour when a certificate request message is received.
1782   Now a certificate packet is always sent, and in SSL 3.0 cipher suites
1783   a no_certificate alert is sent instead.
1784 - Added functionality to generate PKCS #7 structures (with certificates).
1786 * Version 0.9.3 (2003-03-24)
1787 - Support for MD2 was dropped. 
1788 - Improved the error logging functions, by adding a level, and
1789   by allowing debugging messages just by increasing the level.
1790 - The diffie Hellman ciphersuites are now of higher priority than
1791   the plain RSA.
1792 - The RSA premaster secret version check can no longer be disabled.
1793 - Implemented the counter measure discussed in the paper "Attacking
1794   RSA-based Sessions in SSL/TLS", against the attack described in the
1795   same paper.
1796 - Added the functions: gnutls_handshake_get_last_in(), 
1797   gnutls_handshake_get_last_out().
1798 - The gnutls_certificate_set_rsa_params() was renamed to 
1799   gnutls_certificate_set_rsa_export_params().
1800 - Added the new functions: gnutls_certificate_set_x509_key()
1801   gnutls_certificate_set_x509_trust(), gnutls_certificate_set_x509_crl(),
1802   gnutls_x509_crt_export(), gnutls_x509_crl_export().
1803 - Added support for encoding and decoding PKCS #8 2.0 encrypted 
1804   RSA private keys.
1806 * Version 0.9.2 (2003-03-15)
1807 - Some corrections in the memory mapping code (file is unmapped after 
1808   it is read).
1809 - Added support for PKCS#10 certificate requests generation.
1811 * Version 0.9.1 (2003-03-12)
1812 - Corrected a bug in 64 bit architectures, which affected the
1813   serial number calculation in the record layer.
1814 - Added gnutls_certificate_free_keys() which deletes all the
1815   private keys and certificates from the credentials structure.
1816 - Corrected a broken buffer check in _gnutls_io_read_buffered(),
1817   which caused some unexpected packet length errors. Report and patch
1818   by Ian Peters <itp@ximian.com>.
1819 - Added ability to generate RSA keys.
1820 - Increased the maximum parameter size in order to read some large keys
1821   by some CAs. Patch by Ian Peters <itp@ximian.com>.
1822 - Added an strnstr() function and the requirement in some functions to
1823   use null terminated PEM structures is no more.
1824 - Use mmap() if available to read files.
1825 - Fixed a memory leak in SRP code reported by Rupert Kittinger 
1826   <r.kittinger@efkon.com>.
1828 * Version 0.9.0 (2003-03-03)
1829 - This version is not binary compatible with the previous ones.
1830 - The library notifies the application on empty and illegal SRP usernames, 
1831   so that proper notification (via an alert) is sent to the peer.
1832 - Added ability to send some messages back to the application using
1833   the gnutls_global_set_log_function().
1834 - gnutls_dh_params_generate() and gnutls_rsa_params_generate() now use 
1835   gnutls_malloc() to allocate the output parameters.
1836 - Added support for MD2 algorithm in certificate signature verification.
1837 - The RSA and DH parameter generation interface was changed. Added
1838   ability to import and export from and to PKCS3 structures. This 
1839   was needed to read parameters generated using the openssl dhparam tool.
1840 - Several changes in the temporary (DH/RSA) parameter codebase. No DH 
1841   parameters are now included in the library. Also the credentials structure 
1842   can now hold only one temporary parameter of a kind.
1843 - Added a new Certificate, CRL, Private key and PKCS7 structures handling 
1844   API, defined in gnutls/x509.h
1845 - Added gnutls_certificate_set_verify_flags() function to allow setting the 
1846   verification flags in the credentials structure. They will be used in the
1847   *verify_peers functions.
1848 - Added protection against the new TLS 1.0 record layer timing attack.
1849 - Added support for Certificate revocation lists. Functions defined
1850   in gnutls/x509.h
1851 - The only functions that were removed are:
1852   gnutls_x509_certificate_to_xml()
1853   gnutls_x509_extract_dn_string()
1854 - Ported to libtasn1 0.2.x
1856 * Version 0.8.1 (2003-01-22)
1857 - Improved the SRP support, to prevent attackers guessing the
1858   available usernames by brute force.
1859 - Improved the SRP detection in gnutls-cli-debug
1860 - Some fixes which now allow compilation.
1862 * Version 0.8.0 (2003-01-20)
1863 - Added gnutls_x509_extract_dn_string() which returns a 
1864   distinguished name in a single string.
1865 - Added gnutls_openpgp_extract_key_name_string() which returns
1866   an openpgp user ID in a single string.
1867 - Added gnutls_x509_extract_certificate_ca_status() which returns
1868   the CA status of the given certificate.
1869 - Added SRP-6 support. Follows draft-ietf-tls-srp-04.
1870 - If libtasn1 is not present in the system, it is included in 
1871   the main gnutls library.
1872 - If liblzo is present in the system, then the included minilzo
1873   will not be used, and libgnutls-extra will depend on liblzo.
1874 - GNUTLS_E_PARSING_ERROR error code was replaced by GNUTLS_E_BASE64_DECODING_ERROR, 
1875   and GNUTLS_E_SRP_PWD_PARSING_ERROR. GNUTLS_E_ASCII_ARMOR_ERROR was also 
1876   replaced by GNUTLS_E_BASE64_DECODING_ERROR.
1878 * Version 0.6.0 (2002-12-08)
1879 - Added "gnutls/compat4.h" header. This is included in gnutls.h
1880   to emulate the old 0.4.x API.
1881 - Example programs are now stored in doc/examples/
1882 - Several improvements and updates in the documentation.
1883 - Added the certificate authenticated SRP cipher suites.
1884 - gnutls_x509_extract_certificate_dn_string() was updated to return
1885   an RFC2253 conforming string.
1886 - Added the SRP related functions:
1887    gnutls_srp_verifier()
1888    gnutls_srp_base64_encode()
1889    gnutls_srp_base64_decode()
1890 - Added the function gnutls_srp_set_server_credentials_function()
1891   to allow retrieving SRP parameters from an external backend - other
1892   than password files.
1893 - Added the function gnutls_openpgp_set_recv_key_function()
1894   which can be used to set a callback, to get OpenPGP keys.
1895 - Exported the functions:
1896    gnutls_malloc()
1897    gnutls_free()
1898   which should be used by callback functions.
1899 - Changed the semantics of gnutls_pem_base64_encode_alloc()
1900   and gnutls_pem_base64_decode_alloc(). In the default case
1901   were the gnutls library is used with malloc/realloc/free,
1902   these are binary compatible.
1904 * Version 0.5.11 (2002-11-05)
1905 - Some fixes in 'gnutls-cli' client program to prevent some segmentation 
1906   faults at exit.
1907 - Example programs found in the documentation can now be generated by
1908   running "make examples" in doc/tex directory.
1909 - Added more descriptive error strings, to gnutls_strerror().
1910 - Documented error codes, and the function reference list is now sorted.
1911 - Optimized buffering code.
1912 - gnutls_x509_extract_certificate_dn_string() was rewritten.
1913 - Added GNUTLS_E_SHORT_MEMORY_BUFFER error code, which is returned in the
1914   case where the memory buffer provided is not long enough.
1915 - Depends on the new OpenCDK 0.3.2.
1917 * Version 0.5.10 (2002-10-13)
1918 - Updated documentation.
1919 - Added server name extension. This allows clients to specify the
1920   name of the server they connect to. Useful to HTTPS.
1921 - Several corrections in the code base, mostly in signed/unsigned,
1922   checkings.
1924 * Version 0.5.9 (2002-10-10)
1925 - Corrected some code which worked fine in gcc 3.2, but not with any
1926   other compiler.
1927 - Updated 'gnutls-cli' with the '--starttls' option, to allow testing
1928   starttls implementations.
1929 - Added gnutls_x509_extract_key_pk_algorithm() function which extracts
1930   the private key type, of a DER encoded key.
1931 - Added gnutls_x509_extract_certificate_dn_string() which returns the 
1932   certificate's distinguished name in a single string.
1933 - Added gnutls_set_default_priority() and gnutls_set_default_export_priority()
1934   functions, to avoid calling all the *_priority() functions if the defaults
1935   are acceptable.
1936 - Added int gnutls_x509_check_certificates_hostname() which check whether
1937   the given hostname matches the owner of the given X.509 certificate.
1939 * Version 0.5.8 (2002-09-25)
1940 - Updated documentation.
1941 - Added gnutls_record_get_direction() which replaces the obsolete
1942   gnutls_handshake_get_direction().
1943 - Added function to convert error codes to alert descriptions
1944 - Added LZO compression
1946 * Version 0.5.7 (2002-09-11)
1947 - Some fixes in the memory allocation functions (realloc).
1948 - Improved the string functions used in XML certificate generation.
1949 - Removed dependency on libgdbm.
1950 - Corrected bug in gnutls_dh_params_set() which affected
1951   gnutls_dh_params_deinit().
1952 - Corrected bug in session resuming code in server side.
1954 * Version 0.5.6 (2002-09-06)
1955 - Corrected bugs in SRP implementation, which prevented gnutls 
1956   to interoperate with other implementations. (interoperability testing
1957   was done by David Taylor)
1958 - Corrected bug in cert_type extension.
1959 - Corrected extension type checks which used an 8 bit extension size,
1960   instead of 16 bits.
1961 - Added versioning in the XML output of certificate functions.
1962 - Removed the X.509 test suite.
1964 * Version 0.5.5 (2002-09-03)
1965 - Updated the SRP implementation to the latest draft. The blowfish
1966   crypt implementation was removed, since the new draft does not allow
1967   other hash algorithms except for the srpsha. 
1968 - Renamed all the constructed types in order to have more consistent
1969   names. 
1970 - Improved the certificate and key read functions. Now they can read 
1971   the certificate and the private key from the same file.
1972 - Updated and corrected documentation.
1974 * Version 0.5.4 (2002-08-27)
1975 - Fixes in TLS 1.0 PRF and SSL3 random functions.
1976 - gnutls_handshake_set_exportable_detection() was obsoleted.
1977 - Added gnutls_openpgp_extract_key_id() which returns the key ID.
1978 - Corrected bug in DHE key exchange
1979 - Added support for temporary RSA keys which are needed for the
1980   export cipher suites.
1981 - Added the TLS_RSA_EXPORT_ARCFOUR_40_MD5 ciphersuite.
1983 * Version 0.5.3 (2002-08-23)
1984 - No changes. Replaces the tarball of 0.5.2 which accidentally contained
1985   code from the unstable branch.
1987 * Version 0.5.2 (2002-08-22)
1988 - Added an error code that is returned in clients which connect
1989   to export only servers. This must be enabled using the
1990   gnutls_handshake_set_exportable_detection() function.
1991 - Updated openssl compatibility layer.
1992 - Added gnutls_handshake_get_direction() function which returns
1993   the state of the handshake when interrupted.
1995 * Version 0.5.1 (2002-07-17)
1996 - Corrected the m4 macros which used <gnutls.h> instead of
1997   <gnutls/gnutls.h>
1998 - Documentation fixes
1999 - Added gnutls_transport_set_ptr2() function, which accepts two
2000   different pointers, to be used while receiving, and 
2001   while sending data.
2002 - Semantic changes in gnutls_record_set_max_size(). The requested
2003   size is now immediately enforced at the output buffers.
2004 - gnutls_global_init_extra() now fails if the library versions do
2005   not match.
2006 - Fixes in client and server example programs. Null encryption can
2007   be used in these programs, to assist in debuging.
2008 - Fixes in zlib compression code.
2010 * Version 0.5.0 (2002-07-06)
2011 - Added X.509 certificate tests in tests/ directory
2012 - Removed stubs for SRP and Anonymous authentication. They served
2013   no purpose since they are always included, unless it was requested
2014   not to do so.
2015 - Added gnutls_handshake_set_private_extensions() function. This
2016   function can be used to enable private (gnutls specific) cipher suites
2017   and compression algorithms.
2018 - Added check for C99 macro support by the compiler.
2019 - Added functions gnutls_b64_encode_fmt2() and gnutls_b64_decode_fmt2()
2020 - Added the new libtasn1 library.
2021 - Removed the gdbm backend. Applications are now responsible for the
2022   session resuming backend. The gnutls-serv application contains an
2023   simple example on how to use gdbm for resuming.
2024 - Headers for the gnutls library are now installed in $(includedir)/gnutls
2025 - Added an OpenSSL compatible interface (with some limitations).
2026 - Added functions to convert DER encoded certificates to XML format.
2028 * Version 0.4.4 (2002-06-24)
2029 - Corrected bug in PKCS-1 RSA encryption which prevented gnutls to encrypt
2030   using keys of some specific size.
2032 * Version 0.4.3 (2002-05-23)
2033 - The gnutls-extra library now compiles fine, if the opencdk library is
2034   not present.
2035 - Several bug fixes.
2036 - Added gnutls_global_set_mem_func() function, to set the memory allocation
2037   functions, if other than the defaults are to be used.
2038 - The default memory allocation functions are now the ones in libc.
2040 * Version 0.4.2 (2002-05-21)
2041 - Separated ASN.1 structures parser documentation and TLS library
2042   documentation.
2043 - Added gnutls_handshake_set_rsa_pms() function, which disables the
2044   version check in RSA premaster secret.
2045 - Added gnutls_session_is_resumed() function, which reports if a session
2046   is a resumed one.
2047 - Added gnutls_state_set_ptr() and gnutls_state_get_ptr() functions, to
2048   assist in callback functions.
2049 - Replaced the included 1024 bit prime for Diffie Hellman, with a new
2050   random one.
2051 - Relicensed the library under the GNU Lesser General Public License
2052 - Added gnutls-extra library which contains the GPL covered code of gnutls.
2054 * Version 0.4.1 (2002-04-07)
2055 - Now uses alloca() for temporary variables
2056 - Optimized RSA signing
2057 - Added functions to return the peer's certificate activation and
2058   expiration time.
2059 - Corrected time function's behaviour (the time value returned no longer
2060   relate to local timezone).
2062 * Version 0.4.0 (2002-04-01)
2063 - Added support for RFC2630 (PKCS7) X.509 certificate sets
2064 - Added new functions: gnutls_x509_extract_certificate_pk_algorithm(),
2065   gnutls_openpgp_extract_key_pk_algorithm().
2066 - Several optimizations in the Handshake protocol
2067 - Several optimizations in RSA algorithm
2068 - Unified the return values because of small buffers.
2070 * Version 0.3.92 (2002-03-23)
2071 - Updated documentation
2072 - Combined error codes of ASN.1 parser and gnutls
2073 - Removed GNUTLS_CERT_TRUSTED from the CertificateStatus enumeration
2074 - Added protection against CBC chosen plaintext attack (disabled by default)
2075 - Improved and optimized compression support
2077 * Version 0.3.91 (2002-03-03)
2078 - Added gnutls-cli-debug program
2079 - Corrections in session resumption
2080 - Rehandshake can now handle negotiation of different authentication
2081   type.
2082 - gnutls-cli, gnutls-serv, gnutls-srpcrypt and gnutls-cli-debug are 
2083   now being installed.
2085 * Version 0.3.90 (2002-02-24)
2086 - Handshake messages are not kept in memory any more. Now we use 
2087   less memory during a handshake
2088 - Added support for certificates with DSA parameters
2089 - Added DHE_DSS cipher suites
2090 - Key exchange methods changed so they do not depend on the 
2091   certificate type. Added certificate type negotiation TLS extension.
2092 - Added openpgp key support (EXPERIMENTAL)
2093 - Improved Diffie Hellman key exchange support.
2094 - Bug fixes in the RSA key exchange.
2095 - Added check for the requested TLS extensions
2096 - TLS extensions now use a 16 bit type field.
2097 - Added a minimal string library to assist in ASN.1 parsing
2098 - Changes in ASN.1 parser to work with the new bison
2099 - Added gnutls_x509_extract_subject_alt_name(), which deprecates 
2100   gnutls_x509_extract_subject_dns_name()
2101 - gnutls_x509_set_trust_(file/mem) can now be called multiple times
2102 - gnutls_srp_server_set_cred_file() can now be called multiple times
2104 * Version 0.3.5 (2002-01-25)
2105 - Corrected the RSA key exchange method, to avoid attacks against
2106   PKCS-1 formating.
2108 * Version 0.3.4 (2002-01-20)
2109 - Corrected bugs in DHE_RSA key exchange method
2111 * Version 0.3.3 (2002-01-19)
2112 - Added gnutls_x509pki_verify_certificate()
2113 - Added gnutls_x509pki_set_trust_mem() and gnutls_x509pki_set_key_mem()
2114 - Bug fixes in srpcrypt (based on patch by Marc Huber)
2115 - Bug fixes in the Handshake protocol (based on patch by Guillaume Morin)
2116 - Corrected library versioning
2118 * Version 0.3.2 (2002-01-05)
2119 - Corrected bug which did not allow a client to accept multiple CA names
2120 - Added gnutls_fingerprint()
2121 - Added gnutls_x509pki_extract_certificate_serial()
2122 - Added gnutls_b64_encode_fmt() and gnutls_b64_decode_fmt()
2123 - Corrected behaviour in version advertizing
2124 - Updated documentation
2125 - Prefixed all types in gnutls.h with 'GNUTLS_' to avoid namespace collisions
2127 * Version 0.3.1 (2001-12-21)
2128 - Corrections in the configuration files
2129 - Fixes a bug in anonymous authentication
2131 * Version 0.3.0 (2001-12-17)
2132 - Corrected bug in new integer formatting (now we use the old format again)
2133 - Several corrections and usual cleanups
2135 * Version 0.2.91 (2001-12-10)
2136 - Fixes in MPI handling (fixes possible bug with signed integers)
2137 - Removed name indication extension
2138 - Added gnutls_transport_get_ptr() and gnutls_db_get_ptr()
2139 - Optimizations in server certificate callback.
2140 - Fixes in anonymous authentication
2141 - Corrections in client ciphersuite selection
2143 * Version 0.2.90 (2001-12-07)
2144 - gnutls_handshake(), gnutls_read() etc. functions no longer require
2145   the 'SOCKET cd' argument. This argument is set using the function
2146   gnutls_set_transport_ptr().
2147 - introduced gnutls_x509pki_get_peer_certificate_list(). This function returns
2148   a list containing peer's certificate and issuers DER encoded.
2149 - Updated X.509 certificate handling API
2150 - Added callback to select the server certificate
2151 - More consistent function naming (changes in several function names)
2152 - Buffer overflow checking in ASN.1 structures parser
2153 - Updated documentation
2155 * Version 0.2.11 (2001-11-16)
2156 - Changed the meaning of GNUTLS_E_REHANDSHAKE value. If this value
2157   is returned, then the caller should perform a handshake or send
2158   an alert to the peer.
2159 - Made receive buffer dynamic. Normally if no large chunks are received
2160   it occupies less space.
2161 - Added max_record_size extension
2162 - Bugfixes in session handling
2163 - Improved non blocking IO support in the Handshake Protocol
2164 - Usual bugfixes and cleanups
2165 - Documentation updated (includes ASN.1 documentation)
2167 * Version 0.2.10 (2001-11-05)
2168 - Corrected bugs and improved non blocking IO
2169 - Added hooks to use external database to store sessions
2170 - Usual cleanups
2172 * Version 0.2.9 (2001-10-27)
2173 - AUTH_INFO types and structures were moved to library internals
2174 - AUTH_FAILED is no longer returned in SRP authentication
2175   (any fatal error in SRP means auth failed)
2176 - Introduced GNUTLS_E_INTERRUPTED
2177 - Added support for non blocking IO
2178 - gnutls_recv() and gnutls_send() are now obsolete
2179 - Changed semantics of gnutls_rehandshake()
2181 * Version 0.2.4 (2001-10-12)
2182 - Better handling of X.509 certificate extensions
2183 - Added DHE_RSA ciphersuites
2184 - Updated the Name Indication (dnsname) extension
2185 - Improvements in Diffie Hellman primes handling
2187 * Version 0.2.3 (2001-09-19)
2188 - Memory optimizations in gnutls_recv()
2189 - Fixed several memory leaks
2190 - Added ability to specify callback for x509 client certificate selection
2191 - Better documentation
2193 * Version 0.2.2 (2001-08-21)
2194 - Several bugfixes (library and documentation)
2196 * Version 0.2.1 (2001-08-07)
2197 - SRP fixes
2199 * Version 0.2.0 (2001-08-07)
2200 - Partial support for X.509v3 Certificate extensions.
2201 - Added Internal memory handlers
2202 - Removed gnutls_x509_set_cn()
2203 - Added X.509 client authentication
2204 - Several bug fixes and protocol fixes
2206 * Version 0.1.9 (2001-07-30)
2207 - Corrected bug(s) in ChangeCipherSpec packet (fixes renegotiate)
2208 - SRP is updated to conform to the newest draft.
2209 - Added support for DNSNAME extension.
2210 - Reentracy fixes in ASN.1 Parsing.
2211 - Optimizations in hash/hmac functions
2212 - (Error) message handling has changed
2213 - Better Protocol Version handling
2214 - Added X.509 Certificate Verification
2215 - gnutls_read() semantics are now closer to read(2) - added EOF
2216 - Documented some part of gnutls in doc/tex/ using Latex
2218 * Version 0.1.4 (2001-06-22)
2219 - Corrected (srp) base64 encoding.
2220 - Changed bcrypt algorithm to include username.
2221 - Added RSA Ciphersuites (no certificate checking).
2222 - Fixes in SSL 2.0 client hello parsing.
2223 - Added ASN.1 and DER parsers.
2224 - Bugfixes in session resuming
2225 - Updated Ciphersuite selection algorithm
2226 - Added internal representation of X.509 structures.
2227 - Added global state
2229 * Version 0.1.3 (2001-06-01)
2230 - Updated API (and the way it is documented - we use inline documentation)
2231 - Added function to access alert messages.
2232 - Added support for renegotiating parameters.
2233 - Better and Faster Resume Database handling.
2234 - Several bugfixes
2236 * Version 0.1.2 (2001-05-14)
2237 - Updated API
2238 - Fixes in extension handling
2240 * Version 0.1.1 (2001-05-13)
2241 - Added compatibility with Stanford's libsrp library
2243 * Version 0.1.0 (2001-05-09)
2244 - Added SSL 2.0 client hello support
2245 - GNUTLS is a gnu library
2246 - Added support for TLS extensions.
2247 - Added support for SRP
2249 * Version 0.0.7 (2001-01-11)
2250 - Added server side session resuming (using gdbm)
2251 - Added twofish algorithm
2253 * Version 0.0.6 (2000-12-20)
2254 - Added client side session resuming
2255 - Better documentation (check doc/API)
2256 - Better socket handling (gnutls can be used with select())
2257 - Some primitive support for non blocking IO and socket options has been added.
2259 * Version 0.0.5 (2000-12-07)
2260 - Added Compression (using ZLIB)
2261 - Added SSL 3.0 support
2263 ----------------------------------------------------------------------
2264 Copying and distribution of this file, with or without modification,
2265 are permitted in any medium without royalty provided the copyright
2266 notice and this notice are preserved.