Update gnulib.
[gnutls.git] / NEWS
blobe6b0969a013bd57acd4a185ad8547fdee91c05c5
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 Mavrogiannopoulos
4 See the end for copying conditions.
6 * Version 2.1.x (unreleased)
8 ** The GPL programs and libextra are under GPLv3
10 ** Added gnutls_x509_crt_get_subject_alt_name2().
12 ** Corrected a segfault when setting an empty gnutls_priority_t
13 at gnutls_priority_set().
15 ** Update version of m4/lib-*.m4 macros.
16 Fixes a problem with spurious -L/usr/lib additions.
18 ** API and ABI modifications:
19 gnutls_x509_crt_get_subject_alt_name2: ADD.
21 * Version 2.1.7 (released 2007-11-29)
23 ** PKCS #8 parser can now encode/decode DSA keys.
25 ** Updated gnutls_set_default_priority2() now renamed to
26 gnutls_priority_set() and gnutls_priority_set_direct() which
27 accept a string to indicate preferences of ciphersuite parameters.
29 ** gnutls-cli and gnutls-serv now have a --priority option to set
30 the priority string.
32 ** The gnutls_*_convert_priority() functions were deprecated by
33 the gnutls_priority_set() and gnutls_priority_set_direct().
35 ** Internal copy of OpenCDK upgraded to version 0.6.6.
37 ** API and ABI modifications:
38 gnutls_priority_init: ADD.
39 gnutls_priority_deinit: ADD.
40 gnutls_priority_set: ADD.
41 gnutls_priority_set_direct: ADD.
42 gnutls_set_default_priority2: RENAMED to gnutls_priority_set_direct()
43 gnutls_mac_convert_priority: REMOVED
44 gnutls_compression_convert_priority: REMOVED
45 gnutls_protocol_convert_priority: REMOVED
46 gnutls_kx_convert_priority: REMOVED
47 gnutls_cipher_convert_priority: REMOVED
48 gnutls_certificate_type_convert_priority: REMOVED
49 gnutls_set_default_priority: UNDEPRECATED
50 gnutls_set_default_priority_export: UNDEPRECATED
52 ** Undocumented API and ABI modifications earlier in the 2.1.x series:
53 GNUTLS_CIPHER_UNKNOWN: ADD.
54 GNUTLS_CIPHER_CAMELLIA_128_CBC: ADD.
55 GNUTLS_CIPHER_CAMELLIA_256_CBC: ADD.
56 GNUTLS_KX_UNKNOWN: ADD.
57 GNUTLS_COMP_UNKNOWN: ADD.
58 GNUTLS_CRT_UNKNOWN: ADD.
59 gnutls_mac_get_id: ADD.
60 gnutls_compression_get_id: ADD.
61 gnutls_cipher_get_id: ADD.
62 gnutls_kx_get_id: ADD.
63 gnutls_protocol_get_id: ADD.
64 gnutls_certificate_type_get_id: ADD.
65 gnutls_handshake_post_client_hello_func: ADD.
66 gnutls_certificate_send_x509_rdn_sequence: ADD prototype to gnutls.h.in.
68 * Version 2.1.6 (released 2007-11-15)
70 ** Corrected bug in decompression of expanded compression data.
72 ** Added the --to-p8 option to certtool to convert private keys
73 to PKCS #8 keys.
75 ** Introduced the GNUTLS_E_BASE64_UNEXPECTED_HEADER_ERROR error code.
77 ** gnutls_certificate_set_x509_key_* can now read PKCS #8 unencrypted
78 private keys.
80 ** Fixed GNUTLS_E_UNKNOWN_ALGORITHM vs GNUTLS_E_UNKNOWN_HASH_ALGORITHM.
81 During the 2.1.x series the GNUTLS_E_UNKNOWN_HASH_ALGORITHM error code
82 was renamed to GNUTLS_E_UNKNOWN_ALGORITHM, unfortunately without being
83 documented.  This caused some problems (e.g., debian #450854).  To
84 avoid backwards compatibility problems, this release revert this
85 change, so that GNUTLS_E_UNKNOWN_HASH_ALGORITHM works just like it has
86 done in GnuTLS 2.0.x and earlier, and add a new error code
87 GNUTLS_E_UNKNOWN_ALGORITHM.
89 ** Fixes several gtk-doc warnings.
91 ** API and ABI modifications:
92 GNUTLS_E_UNKNOWN_ALGORITHM: CHANGED.
93 GNUTLS_E_UNKNOWN_HASH_ALGORITHM: CHANGED.
94 GNUTLS_E_BASE64_UNEXPECTED_HEADER_ERROR: ADD.
96 * Version 2.1.5 (released 2007-11-01)
98 ** Fix PKCS#3 parameter export problem.
100 ** Improve certtool queries, they now print the default value.
102 ** Fix ABI version.
104 ** Update gnulib files.
106 ** API and ABI modifications:
107 No changes since last version.
109 * Version 2.1.4 (released 2007-10-27)
111 ** Added the --v1 option to certtool, to allow generating X.509
112 version 1 certificates. 
114 ** certtool: Add option --disable-quick-random to enable the old behaviour
115 of using /dev/random to generate keys.
117 ** Added priority functions that accept strings.
119 ** Added gnutls_set_default_priority2() which accepts a flag to indicate
120 priorities preferences.
122 ** Added gnutls_record_disable_padding() to allow servers talking to 
123 buggy clients that complain if the TLS 1.0 record protocol padding is
124 used.
126 ** Introduced gnutls_session_enable_compatibility_mode() to allow enabling
127 all supported compatibility options (like disabling padding).
129 ** The gnutls_certificate_set_openpgp_* functions were modified to include
130 the format. This makes the interface consistent with the x509 functions.
132 ** Internal copy of OpenCDK upgraded to version 0.6.5.
134 ** Update gnulib files.
136 ** API and ABI modifications:
137 gnutls_certificate_set_openpgp_key_mem: MODIFIED
138 gnutls_certificate_set_openpgp_key_file: MODIFIED
139 gnutls_certificate_set_openpgp_keyring_mem: MODIFIED
140 gnutls_certificate_set_openpgp_keyring_file: MODIFIED
141 gnutls_set_default_priority: DEPRECATED
142 gnutls_set_default_priority_export: DEPRECATED
143 gnutls_set_default_priority2: ADDED
144 gnutls_session_enable_compatibility_mode: ADDED
145 gnutls_record_disable_padding: ADDED
146 gnutls_mac_convert_priority: ADDED
147 gnutls_compression_convert_priority: ADDED
148 gnutls_protocol_convert_priority: ADDED
149 gnutls_kx_convert_priority: ADDED
150 gnutls_cipher_convert_priority: ADDED
151 gnutls_certificate_type_convert_priority: ADDED
152 gnutls_openpgp_key_t: RENAMED to gnutls_openpgp_crt_t
153 gnutls_openpgp_key_status_t: RENAMED to gnutls_openpgp_crt_status_t
154 gnutls_openpgp_send_key: RENAMED to gnutls_openpgp_send_cert
155 gnutls_openpgp_key_init: RENAMED to gnutls_openpgp_crt_init
156 gnutls_openpgp_key_import: RENAMED to gnutls_openpgp_crt_import
157 gnutls_openpgp_key_export: RENAMED to gnutls_openpgp_crt_export
158 gnutls_openpgp_key_check_hostname: RENAMED to gnutls_openpgp_crt_check_hostname
159 gnutls_openpgp_key_get_creation_time: RENAMED to gnutls_openpgp_crt_get_creation_time
160 gnutls_openpgp_key_get_expiration_time: RENAMED to gnutls_openpgp_crt_get_expiration_time
161 gnutls_openpgp_key_get_fingerprint: RENAMED to gnutls_openpgp_crt_get_fingerprint
162 gnutls_openpgp_key_get_version: RENAMED to gnutls_openpgp_crt_get_version
163 gnutls_openpgp_key_get_pk_algorithm: RENAMED to gnutls_openpgp_crt_get_pk_algorithm
164 gnutls_openpgp_key_get_name: RENAMED to gnutls_openpgp_crt_get_name
165 gnutls_openpgp_key_deinit: RENAMED to gnutls_openpgp_crt_deinit
166 gnutls_openpgp_key_get_id: RENAMED to gnutls_openpgp_crt_get_id
167 gnutls_openpgp_key_get_key_usage: RENAMED to gnutls_openpgp_crt_get_key_usage
168 gnutls_openpgp_key_verify_ring: RENAMED to gnutls_openpgp_crt_verify_ring
169 gnutls_openpgp_key_verify_self: RENAMED to gnutls_openpgp_crt_verify_self
171 * Version 2.1.3 (released 2007-10-17)
173 ** TLS authorization support removed.
174 This technique may be patented in the future, and it is not of crucial
175 importance for the Internet community.  After deliberation we have
176 concluded that the best thing we can do in this situation is to
177 encourage society not to adopt this technique.  We have decided to
178 lead the way with our own actions.
180 ** Re-enabled the 256 bit ciphers in the default priorities.
182 ** Corrected bugs in openpgp key verification using a keyring (both in
183 gnutls and opencdk)
185 ** API and ABI modifications:
186 gnutls_certificate_set_openpgp_keyserver: REMOVED
187 gnutls_authz_data_format_type_t,
188 gnutls_authz_recv_callback_func,
189 gnutls_authz_send_callback_func,
190 gnutls_authz_enable,
191 gnutls_authz_send_x509_attr_cert,
192 gnutls_authz_send_saml_assertion,
193 gnutls_authz_send_x509_attr_cert_url,
194 gnutls_authz_send_saml_assertion_url: REMOVED.
195 GNUTLS_SUPPLEMENTAL_USER_MAPPING_DATA: ADDED.  To avoid that the
196     gnutls_supplemental_data_format_type_t enum type becomes empty.
198 * Version 2.1.2 (released 2007-10-14)
200 ** Removed all the trustdb code from openpgp authentication.
201 We now use only the well-specified keyrings.
203 ** The 256 bit ciphers are not enabled in the default priorities.
205 ** Added support for DSA2 using libgcrypt 1.3.0.
207 ** certtool: Fixed data corruption when using --outder.
209 ** Removed all the xml related stubs and functions.
211 ** Added capability to set a callback after the client hello is received
212 by the server in order to adjust parameters before the handshake.
214 ** SRP was corrected to adhere to the latest draft (published soon as RFC)
216 ** Corrected bug which did not allow a server to run without supporting
217 certificates.
219 ** Updated the DN parser which now prints wrongly decoded values as hex
220 strings.
222 ** certtool: Add option --quick-random.
223 For generating low security test credentials.
225 ** API and ABI modifications:
226 gnutls_x509_crt_to_xml: REMOVED
227 gnutls_openpgp_key_to_xml: REMOVED
228 gnutls_openpgp_key_verify_trustdb: REMOVED
229 gnutls_openpgp_trustdb_init: REMOVED
230 gnutls_openpgp_trustdb_deinit: REMOVED
231 gnutls_openpgp_trustdb_import: REMOVED
232 gnutls_certificate_set_openpgp_trustdb: REMOVED
233 gnutls_srp_client_credentials_function: CHANGED
234 gnutls_handshake_set_post_client_hello_function: ADDED
235 gnutls_mac_get_key_size: ADDED
236 GNUTLS_E_OPENPGP_TRUSTDB_VERSION_UNSUPPORTED: DEPRECATED.
237 GNUTLS_A_MISSING_SRP_USERNAME: DEPRECATED
238 GNUTLS_A_UNKNOWN_SRP_USERNAME: DEPRECATED
240 * Version 2.1.1 (released 2007-09-24)
242 ** Added support for Camellia cipher, thanks to Yoshisato YANAGISAWA.
243 Camellia is only enabled in GnuTLS if the installed libgcrypt has been
244 compiled with Camellia support.  See the libgcrypt documentation on
245 how to enable it.  Unconditionally disable it using the configure
246 option --disable-camellia.  Fixes #1.
248 ** Properly document in the NEWS file the API change in the last release.
250 ** API and ABI modifications:
251 No changes since last version.
253 * Version 2.1.0 (released 2007-09-20)
255 ** Support for draft-rescorla-tls-opaque-prf-input-00.txt.
256 The support is disabled by default.  Since no value has been allocated
257 by the IANA for this extension yet, you will need to provide one
258 yourself by invoking './configure --enable-opaque-prf-input=42'.
259 Fixes #2.
261 ** Example code: Fix compilation flaw under MinGW.
263 ** API and ABI modifications:
264 gnutls_oprfi_callback_func: ADD, new typedef function prototype.
265 gnutls_oprfi_enable_client: ADD, new function.
266 gnutls_oprfi_enable_server: ADD, new function.
268 * Version 2.0.2 (unreleased)
270 ** Fix configure-time Guile detection.
272 * Version 2.0.1 (released 2007-09-20)
274 ** New directory doc/credentials/ with test credentials.
275 This collects the test credentials from the web page and from src/.
276 The script gnutls-http-serv has also been moved to that directory.
278 ** Update SRP extension type and cipher suite with official IANA values.
279 This breaks backwards compatibility with SRP in older versions of
280 GnuTLS, but this is intentional to speed up the adoption of the
281 official values.  The old values we used were incorrect.
283 ** Guile: Fix `x509-certificate-dn-oid'
285 ** API and ABI modifications:
286 No changes since last version.
288 * Version 2.0.0 (released 2007-09-04)
290 ** Included copy of Libtasn1 upgraded to version 1.1.
292 ** Disable building of some examples if anonymous ciphers are disabled.
294 ** Don't build examples for disabled features.
296 ** API and ABI modifications:
297 No changes since last version.
299 * Version 1.7.19 (released 2007-08-27)
301 ** Fix gnutls_error_is_fatal so that positive "errors" are non-critical.
302 This solves connection problems in mutt, see
303 <http://bugs.debian.org/439640>.
305 ** Update gnulib files.
306 In particular, the getpass module -- with its dependencies on getline,
307 getdelim, fseeko etc -- where moved from the lgl/ (used by the core
308 library) directory to the gl/ directory (only used by the command line
309 tools).  The reason is that getpass is now only used by the
310 command-line tools, and reducing the number of gnulib modules linked
311 to the core library helps portability and reduces size.
313 ** Fix warnings.
315 ** Disable building of PGP examples if PGP is disabled.
317 ** Included copy of OpenCDK upgraded to version 0.6.4.
319 ** API and ABI modifications:
320 No changes since last version.
322 * Version 1.7.18 (released 2007-08-16)
324 ** Install images for the info manual.
325 This has a side effect of renaming the images.  See
326 <http://thread.gmane.org/gmane.comp.tex.texinfo.bugs/3533> for
327 discussions on the approach chosen.
329 ** Fix pointer mix to variables of different size.
330 Patch extracted from
331 <http://cvs.fedora.redhat.com/viewcvs/devel/gnutls/gnutls-1.6.3-incompat-pointers.patch?rev=1.1&view=auto>.
333 ** Fix warnings during build.
334 Thanks to Andreas Metzler <ametzler@downhill.at.eu.org>.
336 ** API and ABI modifications:
337 No changes since last version.
339 * Version 1.7.17 (released 2007-08-15)
341 ** New functions to perform external signing.
342 Set the signing callback function (of the gnutls_sign_func prototype)
343 using the gnutls_sign_callback_set function.  In the callback, you may
344 find the new functions gnutls_x509_privkey_sign_hash and
345 gnutls_openpgp_privkey_sign_hash useful.  A new function
346 gnutls_sign_callback_get is also added, to retrieve the function
347 pointer.  Thanks to "Alon Bar-Lev" <alon.barlev@gmail.com> for
348 comments and testing.
350 ** New self test of client and server authenticated X.509 TLS sessions.
351 See tests/x509self.c and tests/x509signself.c.  The latter also tests
352 the new external signing callback interface.
354 ** New errors GNUTLS_E_APPLICATION_ERROR_MIN..GNUTLS_E_APPLICATION_ERROR_MAX.
355 These two actually describe the outer limits of a range of error codes
356 reserved to the application.  All of the errors are treated as fatal
357 by the library (it has to since it doesn't know the semantics of the
358 error codes).  This can be useful in callbacks, to signal some
359 application-specific error condition, which will usually eventually
360 cause some gnutls API to return the same error code as the callback,
361 which then can be inspected by the application.  Note that error codes
362 are negative.
364 ** gnutls_set_default_priority now disable TLS 1.2 by default.
365 The RFC is not released yet, and we're approaching a major release so
366 let's not enable it just yet.
368 ** Fix namespace so that gnutls_*_t is used consistently.
369 Before, many places in the GnuTLS code used the old deprecated type
370 names without the '_t' suffix.
372 ** Build fixes for Guile code.
373 Patch from Ludovic Courtes <ludovic.courtes@laas.fr>.
375 ** More documentation fixes.
376 In particular, the section headings were modified for casing.  By
377 Ludovic Courtes <ludovic.courtes@laas.fr>.
379 ** Updated Polish and Swedish translations.
380 Thanks to Jakub Bogusz <qboosh@pld-linux.org> and Daniel Nylander
381 <po@danielnylander.se>.
383 ** API and ABI modifications:
384 gnutls_sign_func: ADD, new type for sign callback.
385 gnutls_sign_callback_set: ADD, new function to set sign callback.
386 gnutls_sign_callback_get: ADD, new function to retrieve sign callback.
387 gnutls_x509_privkey_sign_hash,
388 gnutls_openpgp_privkey_sign_hash: ADD, new functions useful in sign callback.
389 GNUTLS_E_APPLICATION_ERROR_MIN,
390 GNUTLS_E_APPLICATION_ERROR_MAX: ADD, new CPP #defines for error codes.
392 * Version 1.7.16 (released 2007-08-07)
394 ** Fix sanity checks and return values in certificate selection.
395 In some cases, GnuTLS omitted to report suitable error codes when no
396 suitable certificate was found.
398 ** Fix gnutls-cli starttls EOF on Mac OS X.
399 Thanks to Hal Eden <n.mavrogiannopoulos@gmail.com>.
401 ** Documentation fixes.
402 In particular, the section headings were modified for casing.  By
403 Ludovic Courtes <ludovic.courtes@laas.fr>.
405 ** Update gnulib files.
407 ** API and ABI modifications:
408 No changes since last version.
410 * Version 1.7.15 (released 2007-07-02)
412 ** Fix self-tests key-id under mingw32.
414 ** Test that the Guile header files are recent enough to work.
415 Before we just tested that the command line tool 'guile' was recent
416 enough, which may not be sufficient if you still have an old
417 libguile.h header installed.
419 ** Guile bindings are now installed under $prefix by default.
420 Use --without-guile-site-dir to install it under $pkgdatadir/site/
421 where $pkgdatadir is as returned by "guile-config info pkgdatadir".
422 Use --with-guile-site-dir=/your/own/path to specify the path manually.
423 The default, --with-guile-site-dir, will install the Guile bindings
424 under $datadir/guile/site.  There is a new section 'Guile
425 Preparations' in the manual that discuss these issues.
427 ** Fix run-time library path ordering in linking the Guile bindings.
429 ** Improved manual on downloading, installing, getting help, bug reports etc.
430 Suggested by Ludovic Courtès <ludovic.courtes@laas.fr>.
432 ** Add Malay message translations.
433 Thanks to Sharuzzaman Ahmat Raslan <sharuzzaman@myrealbox.com>.
435 ** API and ABI modifications:
436 No changes since last version.
438 * Version 1.7.14 (released 2007-06-26)
440 ** Don't enable Guile bindings unless we have Guile 1.8 or later.
441 Patch from Ludovic Courtès <ludovic.courtes@laas.fr>.
443 ** Fix memory leak during DSA signature verification.
444 Patch from Ludovic Courtès <ludovic.courtes@laas.fr>.
446 ** Fix crash in gnutls-cli when TLS handshake fails.
447 Reported by Marc Haber <mh+debian-bugs@zugschlus.de> and Andreas
448 Metzler <ametzler@downhill.at.eu.org> via Debian BTS #429183, see
449 <http://bugs.debian.org/429183>.
451 ** Minor OpenPGP fixes in stream_to_datum.
452 Patch from Timo Schulz <twoaday@freakmail.de> and Ludovic Courtès
453 <ludovic.courtes@laas.fr>.
455 ** Fix off-by-one in TLS 1.2 handshake.
456 Patch from Ludovic Courtès <ludovic.courtes@laas.fr>.
458 ** Minor Guile binding self-test cleanup.
459 Patch from Ludovic Courtès <ludovic.courtes@laas.fr>.
461 ** Update gnulib files.
463 ** API and ABI modifications:
464 No changes since last version.
466 * Version 1.7.13 (released 2007-06-11)
468 ** OpenCDK copy updated to version 0.6.3.
470 ** Build fixes for GnuTLS Guile bindings.
471 Patch from Ludovic Courtès <ludovic.courtes@laas.fr>.
473 ** Build fix for GTK-DOC manual.
475 ** Update gnulib files.
477 ** API and ABI modifications:
478 No changes since last version.
480 * Version 1.7.12 (released 2007-06-08)
482 ** Guile bindings for GnuTLS have been included.
483 Contributed by Ludovic Courtès <ludovic.courtes@laas.fr>.  There is a
484 new chapter 'Guile Bindings' in the manual.
486 ** Have PKCS8 parser return better error codes.
487 Reported by Nate Nielsen <nielsen-list@memberwebs.com>, see
488 <http://lists.gnupg.org/pipermail/gnutls-dev/2007-May/001653.html> and
489 <http://lists.gnupg.org/pipermail/gnutls-dev/2007-May/001654.html>.
491 ** Fix mem leak for sessions with client authentication via certificates.
492 Reported by Andrew W. Nosenko <andrew.w.nosenko@gmail.com>, see
493 <http://lists.gnupg.org/pipermail/gnutls-dev/2007-April/001539.html>.
495 ** Fix mem leaks.
496 Reported by Dennis Vshivkov <walrus@amur.ru>, see
497 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=333050>.  Added
498 self-test tests/parse_ca.c to test regressions.
500 ** Fix build failures related to missing images in manual.
501 Reported by Andreas Metzler <ametzler@downhill.at.eu.org>.
503 ** Update gnulib files.
505 ** API and ABI modifications:
506 No changes since last version.
508 * Version 1.7.11 (released 2007-05-26)
510 ** Include opencdk.h in the release.
511 Reported by Roman Bogorodskiy <novel@FreeBSD.org>.
513 ** API and ABI modifications:
514 No changes since last version.
516 * Version 1.7.10 (released 2007-05-25)
518 ** New API functions to extract DER encoded X.509 Subject/Issuer DN.
519 Suggested by Nate Nielsen <nielsen-list@memberwebs.com>.
521 ** Update of gnulib files.
523 ** GnuTLS is now developed in GIT instead of CVS.
524 See <http://repo.or.cz/w/gnutls.git> for a public repository.
526 ** API and ABI modifications:
527 gnutls_x509_crt_get_raw_issuer_dn: ADD.
528 gnutls_x509_crt_get_raw_dn: ADD.
530 * Version 1.7.9 (released 2007-05-12)
532 ** X.509 certificates are preferred over OpenPGP keys.
533 This is a change in the semantics of gnutls_set_default_priority.
535 ** The included copy of OpenCDK has been updated to 0.6.1.
536 There has been some API changes in OpenCDK, and the GnuTLS layer have
537 been modified as well.  Note that while there are API/ABI incompatible
538 changes in OpenCDK, this does not influence GnuTLS's API/ABI because
539 its API/ABI have not changed.  From this version on, GnuTLS requires
540 OpenCDK 0.6.0 or later.
542 ** Fix build failure caused by missing doc/gnutls-logo.pdf.
544 ** Change certtool's default serial number from 0 to a time-based value.
546 ** Fix X.509 signing with RSA-PKCS#1 to set a NULL parameters fields.
547 Before, we remove the parameters field, which resulted in a slightly
548 different DER encoding which in turn caused signature verification
549 failures of GnuTLS-generated RSA certificates in some other
550 implementations (e.g., GnuPG 2.x's gpgsm).  Depending on which RFCs
551 you read, this may or may not be correct, but our new behaviour appear
552 to be consistent with other widely used implementations.
554 ** Fix mem leaks in gnutls_x509_crt_print.
556 ** API and ABI modifications:
557 No changes since last version.
559 * Version 1.7.8 (released 2007-04-16)
561 ** Added examples for the authorization extension.
562 See doc/examples/ex-client-authz.c and doc/examples/ex-serv-authz.c.
564 ** The examples only use gnutls_set_default_priority().
565 The exception is when DH_ANON is needed.
567 ** Improve gnutls_set_default_priority() priorities.
568 The new approach is for it to try and negotiate all secure and
569 standard mechanisms available.  Currently, DH_ANON ciphersuites and
570 LZO compressions are not enabled by default, because they are,
571 respectively, insecure and non-standardized.  Note that TLS 1.2 will
572 not be enabled by default in non-experimental release until it has
573 been approved by the IETF.
575 ** gnutls-cli and gnutls-serv now uses the library's default priorities.
576 This means that to get DH_ANON and LZO compression, you'll need to
577 specify that manually using '--kx anon' or '--comp lzo'.
579 ** Minor fixes to the human display format of X.509 certificates.
581 ** New APIs to extract Distinguished Name's from X.509 certificates.
582 Based on patch from Howard Chu <hyc@symas.com>.
584 ** Improved library searching for opencdk.
585 It will now add the appropriate -R or -Wl,-rpath flags as necessary.
586 The deprecated opencdk.m4 is no longer used.
588 ** New APIs to list supported algorithms in the library.
589 The APIs are gnutls_cipher_list, gnutls_mac_list,
590 gnutls_compression_list, gnutls_protocol_list,
591 gnutls_certificate_type_list, gnutls_kx_list, and
592 gnutls_cipher_suite_info.  Suggested by Howard Chu <hyc@symas.com>.
594 ** The gnutls_x509_crt_get_key_id API now handle non-RSA/DSA keys.
596 ** New configure option --disable-tls-authorization to disable tls-authz.
598 ** Fix prototype for `gnutls_psk_set_client_credentials'.
599 The last parameter was renamed from 'flags' to 'format' and the type
600 changed from 'unsigned int' to 'gnutls_psk_key_flags' (an enum type),
601 which shouldn't cause any ABI changes.  Reported by ludo@chbouib.org
602 (Ludovic Courtès).
604 ** Fix allocation in gnutls_certificate_set_openpgp_key.
605 Tiny patch from ludo@chbouib.org (Ludovic Courtès).
607 ** API and ABI modifications:
608 gnutls_x509_dn_t: ADD.
609 gnutls_x509_ava_st: ADD.
610 gnutls_x509_crt_get_subject,
611 gnutls_x509_crt_get_issuer: ADD.
612 gnutls_x509_dn_get_rdn_ava: ADD.
613 gnutls_cipher_list: ADD.
614 gnutls_mac_list: ADD.
615 gnutls_compression_list: ADD.
616 gnutls_protocol_list: ADD.
617 gnutls_certificate_type_list: ADD.
618 gnutls_kx_list: ADD.
619 gnutls_cipher_suite_info: ADD.
621 * Version 1.7.7 (released 2007-02-22)
623 ** Support for supplemental handshake messages and authorization data.
624 Supplemental data is described in RFC 4680 and the authorization
625 extensions in draft-housley-tls-authz-extns-07.
627 ** Support for authorization data in gnutls-cli and gnutls-serv.
628 New parameters --authz-x509-attr-cert and --authz-saml-assertion.
630 ** Fix for gnutls_x509_crt_check_hostname.
631 Before it would have reported that the certificate matched a hostname
632 when it did not have any dNSName or any CN field.  Report and tiny
633 patch from "Richard W.M. Jones" <rjones@redhat.com>.
635 ** New self test for RFC 2818 comparison in gnutls_x509_crt_check_hostname.
636 Tests regressions of the bug, and several other features.
638 ** GnuTLS now matches URI's with IP Addresses against iPAddress SAN's.
639 Before there were no support for iPAddress SAN's during comparison.
641 ** New API to print information about CRL's.
642 The function is gnutls_x509_crl_print.
644 ** New API to extract signature value from CRL's.
645 The function is gnutls_x509_crl_get_signature.
647 ** Support for directoryName Subject Alternative Name's.
648 The gnutls_x509_crt_get_subject_alt_name function returns the DN as a
649 string in the provided buffer.
651 ** Internal improvements to certtool.
652 It uses gnutls_x509_crl_print to print CRL information.  It uses some
653 more gnulib modules to simplify error handling.
655 ** API and ABI modifications:
656 GNUTLS_HANDSHAKE_SUPPLEMENTAL: ADD, new gnutls_handshake_description_t element.
657 gnutls_supplemental_data_format_type_t: ADD.
658 gnutls_authz_data_format_type_t: ADD.
659 gnutls_supplemental_get_name: ADD.
660 gnutls_authz_recv_callback_func,
661 gnutls_authz_send_callback_func: ADD, callback prototypes.
662 gnutls_authz_enable: ADD.
663 gnutls_authz_send_x509_attr_cert,
664 gnutls_authz_send_saml_assertion,
665 gnutls_authz_send_x509_attr_cert_url,
666 gnutls_authz_send_saml_assertion_url: ADD.
667 GNUTLS_SAN_DN: ADD, new gnutls_x509_subject_alt_name_t element.
668 gnutls_x509_crl_print: ADD.
669 gnutls_x509_crl_get_signature: ADD.
671 * Version 1.7.6 (released 2007-02-12)
673 ** Support for 'otherName' Subject Alternative Names.
674 The existing API gnutls_x509_crt_get_subject_alt_name may now return
675 the new type GNUTLS_SAN_OTHERNAME together with the otherName value.
676 To find out the otherName OID (necessary for proper parsing of the
677 value), use the new API gnutls_x509_crt_get_subject_alt_othername_oid.
678 For known OIDs, gnutls_x509_crt_get_subject_alt_othername_oid will
679 return "virtual" SAN values, e.g., GNUTLS_SAN_OTHERNAME_XMPP to
680 simplify OID matching.  Suggested by Matthias Wimmer <m@tthias.eu>.
682 ** Certtool can print otherName SAN values for certificates.
683 For known otherName OIDs (currently only id-on-xmppAddr as defined by
684 RFC 3920), it will also print the name.
686 ** Fix TLS 1.2 RSA signing in servers.
687 Before it used the old-style MD5+SHA1 signature, but the TLS
688 signatures should be normal PKCS#1 signatures.  FYI, we use and
689 require that DigestInfo parameters are present and NULL for TLS 1.2.
691 ** Add APIs to access X.509 extensions sequentially.
692 The existing APIs gnutls_x509_crt_get_extension_oid() and
693 gnutls_x509_crt_get_extension_by_oid() does not permit callers to
694 inspect the extensions in the order defined by the certificate.
696 ** Add API to extract signature value from X.509 certificates.
697 The function is gnutls_x509_crt_get_signature.
699 ** Fix crash when generating proxy certificates in batch mode.
700 If you don't specify a proxy policy in batch mode, it will use
701 id-ppl-inheritALL.
703 ** Add API to print information about X.509 certificates.
704 The function is gnutls_x509_crt_print.
706 ** Certtool uses the new API gnutls_x509_crt_print to print certificate info.
707 One consequence of this is that the output syntax has changed
708 slightly.  Some more fields are printed.
710 ** Doc fixes.
712 ** API and ABI modifications:
713 gnutls_x509_crt_print: ADD
714 gnutls_certificate_print_formats_t: ADD, new enum.
715 gnutls_x509_crt_get_signature: ADD.
716 gnutls_x509_crt_get_extension_data: ADD.
717 gnutls_x509_crt_get_extension_info: ADD.
718 gnutls_x509_crt_get_subject_alt_othername_oid: ADD.
719 GNUTLS_SAN_OTHERNAME: ADD, new gnutls_x509_subject_alt_name_t element.
720 GNUTLS_SAN_OTHERNAME_XMPP: ADD, new gnutls_x509_subject_alt_name_t element.
722 * Version 1.7.5 (released 2007-02-06)
724 ** Servers won't negotiate SRP RSA/DSS cipher suites if no SRP credential
725 ** is set.
727 ** Default behaviour for the gnutls-cli and gnutls-serv tools improved.
729 ** Fix --list output for gnutls-cli and gnutls-serv.
730 Mention TLS1.2, SHA512 etc.
732 ** Manual contains new section on setting up a test HTTP server.
733 A server set up following those descriptions are available online via
734 <http://www.gnutls.org/server.html>.
736 ** Update of gnulib files.
738 ** API and ABI modifications:
739 No changes since last version.
741 * Version 1.7.4 (released 2007-02-05)
743 ** Support for RSA signing using SHA-256/384/512.
744 A new self test "sha2" tries to build a long X.509 certificate chain
745 testing all new hashes.
747 ** The gnutls-serv tool now use static DH parameters if none are supplied.
749 ** Discuss proxy certificates in the manual.
751 ** Improve bibliographical citations in the manual.
753 ** Update of gnulib files.
755 ** Fix certtool template handling of pathLenConstraints.
756 It now defaults to -1 instead of 0, which causes the field to be
757 missing unless the template specify it.
759 ** API and ABI modifications:
760 GNUTLS_MAC_SHA256,
761 GNUTLS_MAC_SHA384,
762 GNUTLS_MAC_SHA512: New gnutls_mac_algorithm_t values.
763 GNUTLS_DIG_SHA256,
764 GNUTLS_DIG_SHA384,
765 GNUTLS_DIG_SHA512: New gnutls_digest_algorithm_t values.
766 GNUTLS_SIGN_RSA_SHA256,
767 GNUTLS_SIGN_RSA_SHA384,
768 GNUTLS_SIGN_RSA_SHA512: New gnutls_sign_algorithm_t values.
770 * Version 1.7.3 (released 2007-02-01)
772 ** New option to certtool: --generate-proxy.
773 This will generate a Proxy Certificate from an end entity certificate.
774 Proxy Certificates are documented in RFC 3820.  You will need to
775 specify the proxy certificate's private key with --load-privkey, the
776 user certificate with --load-certificate and the private key used to
777 sign the new proxy certificate with --load-ca-privkey.  Certtool will
778 query for proxy path length and the policy language OID.  Currently
779 only OIDs that have an empty policy are supported (which includes the
780 two OIDs defined by RFC 3820).
782 ** Certtool --certificate-info now prints information for Proxy Certificates.
783 Before the proxy extension was just printed as DER encoded data.
785 ** New APIs to set proxy subject names and get/set proxy cert extension.
787 ** Fix parsing of pathLenConstraints in BasicConstraints with missing cA.
789 ** Added self-test to test for regressions of pathLenConstraint bug.
790 Incidentally, this also test (some) other regressions or changes in
791 the output from certtool --certificate-info.
793 ** When certtool generates CA certificates, pressing enter on the path
794 ** length constraint query will now remove the field.
795 Before it set the path length constraint to 0, which is a rather poor
796 default.
798 ** Certtool now print times in UTC when printing certificate/CRL info.
800 ** Add better fix to work around C++ compiler bug on Mac OS X.
801 Reported and tiny patch provided by Matthias Scheler <tron@NetBSD.org>.
803 ** Fix import of ASCII armored OpenPGP keys.
804 Patch by ludovic.courtes@laas.fr (Ludovic Courtès).
806 ** Update of gnulib files.
808 ** API and ABI modifications:
809 gnutls_x509_crt_set_proxy_dn: ADD.
810 gnutls_x509_crt_set_proxy: ADD.
811 gnutls_x509_crt_get_proxy: ADD.
813 * Version 1.7.2 (released 2007-01-14)
815 ** Certtool now print the value of the pathLenConstraints field for certs.
817 ** Certtool now query for path length constraints when generating CA certs.
818 For batch uses, the certtool configuration name is "path_len".
819 Suggested by Sascha Ziemann <sascha.ziemann@secunet.com>.
821 ** Add new API to get/set pathLenConstraint in the Basic Constraints.
822 The new functions gnutls_x509_crt_get_basic_constraints and
823 gnutls_x509_crt_set_basic_constraints provide a superset of the
824 functionality in the old gnutls_x509_crt_get_ca_status and
825 gnutls_x509_crt_set_ca_status (respectively), but the old functions
826 will continue to be supported.
828 ** Add new API in OpenCDK to extract public/secret OpenPGP key to S-expr.
829 The functions are cdk_pubkey_to_sexp and cdk_seckey_to_sexp.  A proper
830 OpenCDK release with this patch will be made soon, which should bump
831 the OpenCDK version number.  Patch by Mario Lenz <mario.lenz@gmx.net>.
833 ** Certtool --to-p12 can now store more than one certificate in the blob.
834 Before it could only store one certificate, but now it will read and
835 store as many certificate there are from the --load-certificate file.
836 Suggested by Sascha Ziemann <sascha.ziemann@secunet.com>.
838 ** Clean up separation of gnutls and gnutls-extra for OpenPGP.
839 In particular, the OpenPGP function variables are no longer part of
840 the exported libgnutls interface, and no header files from
841 libgnutls-extra (GPL) are needed by libgnutls (LGPL).  The variables
842 were never intended for non-internal purposes, and thus this does not
843 imply a change in the external API/ABI.
845 ** Print URL to gaa when missing, and fix srcdir!=builddir for GAA files.
846 Reported by ludovic.courtes@laas.fr (Ludovic Courtès).
848 ** GnuTLS no longer uses -mms-bitfields --enable-runtime-pseudo-reloc.
849 Before these parameters were set to make GnuTLS build under mingw32,
850 however, they appear to no longer be necessary.
852 ** A minor fix to the C++ library to make it build.
853 Reported by Pavlov Konstantin <thresh@altlinux.ru>.
855 ** Update of gnulib files.
857 ** API and ABI modifications:
858 gnutls_x509_crt_get_basic_constraints: ADD.
859 gnutls_x509_crt_set_basic_constraints: ADD.
860 cdk_pubkey_to_sexp: ADD (in opencdk).
861 cdk_seckey_to_sexp: ADD (in opencdk).
863 * Version 1.7.1 (released 2006-12-28)
865 ** TLS 1.2 server side fix.
866 The Certificate Request sent did not contain the list of supported
867 hashes field, thus violating the protocol.  It will now contain an
868 empty list.  Reported by ludovic.courtes@laas.fr (Ludovic Courtès).
870 ** TLS 1.2 DSA signature verification fix.
871 Reported by ludovic.courtes@laas.fr (Ludovic Courtès).
873 ** Fix the list of trusted CAs that server's send to clients.
874 Before, the list contained issuer DN's instead of subject DN's of the
875 trusted CAs.  Reported by Max Kellermann <max@duempel.org>.
877 ** Fix gnutls_certificate_set_x509_crl to initialize the CRL before using it.
878 Also added a self-test in tests/certificate_set_x509_crl.c to test the
879 function.  Reported by Max Kellermann <max@duempel.org>.
881 ** Encode UID fields in DN's as DirectoryString.
882 Before GnuTLS encoded and parsed UID fields as IA5String.  This was
883 incorrect, it should have used DirectoryString.  Now it will use
884 DirectoryString for the UID field, but for backwards compatibility it
885 will also accept IA5String UID's.  Reported by Max Kellermann
886 <max@duempel.org>.
888 ** Improve out-of-sourcedir builds from CVS.
889 Reported by ludovic.courtes@laas.fr (Ludovic Courtès).
891 ** Bootstrap tools changed.
892 We now require autoconf 2.61, automake 1.10, and gettext 0.16, when
893 building GnuTLS from CVS.  Libtool 1.5.22 is used.
895 ** Fixed a syntax error in lib/gnutls.asn.
896 Reported by Paul Millar <p.millar@physics.gla.ac.uk>.
898 ** Added German translation of GnuTLS messages.
900 ** Update of gnulib files.
902 ** API and ABI modifications:
903 No changes since last version.
905 * Version 1.7.0 (released 2006-11-29)
907 ** The default protocol priority try TLS 1.1 and TLS 1.2 too.
908 The details is that the protocol priority set by
909 `gnutls_set_default_priority' has been changed from TLS 1.0 and SSL
910 3.0 to TLS 1.2, TLS 1.1, TLS 1.0 and SSL 3.0.
912 ** Preliminary support for TLS 1.2.
913 The client has been successfully tested against
914 https://www.mikestoolbox.org:4433/.
916 ** Anonself test now print a lot of debugging info, including TLS version.
918 ** Doc fixes in OpenCDK, to avoid some gtk-doc warnings.
920 ** Update of gnulib files.
922 ** API and ABI modifications:
923 GNUTLS_TLS1_2: New gnutls_protocol_t enum member.
925 *** Pulled up from stable 1.6.x branch:
927 ** Fix ./configure failure with non-GCC compilers.
928 This fixes the following error message:
929 configure: error: conditional "HAVE_LD_OUTPUT_DEF" was never defined.
930 Reported by "Michael C. Vergallen" <mvergall@telenet.be>.
932 * Version 1.6.3 (released 2007-05-26)
934 ** New API functions to extract DER encoded X.509 Subject/Issuer DN.
935 Suggested by Nate Nielsen <nielsen-list@memberwebs.com>.  Backported
936 from the 1.7.x branch, see
937 <http://lists.gnu.org/archive/html/help-gnutls/2007-05/msg00029.html>.
939 ** Have PKCS8 parser return better error codes.
940 Reported by Nate Nielsen <nielsen-list@memberwebs.com>, see
941 <http://lists.gnupg.org/pipermail/gnutls-dev/2007-May/001653.html> and
942 <http://lists.gnupg.org/pipermail/gnutls-dev/2007-May/001654.html>.
944 ** Fix mem leak for sessions with client authentication via certificates.
945 Reported by Andrew W. Nosenko <andrew.w.nosenko@gmail.com>, see
946 <http://lists.gnupg.org/pipermail/gnutls-dev/2007-April/001539.html>.
948 ** Fix building of 'tlsia' self test.
949 Earlier some gcc are known to build tlsia linking to
950 $prefix/lib/libgnutls-extra.so rather than the libgnutls-extra.so in
951 the build directory, even though command line parameters look OK.
952 Changing order of some parameters fixes it.
954 ** API and ABI modifications:
955 gnutls_x509_crt_get_raw_issuer_dn: ADD.
956 gnutls_x509_crt_get_raw_dn: ADD.
958 * Version 1.6.2 (released 2007-04-18)
960 ** Fix X.509 signing with RSA-PKCS#1 to set a NULL parameters fields.
961 Before, we remove the parameters field, which resulted in a slightly
962 different DER encoding which in turn caused signature verification
963 failures of GnuTLS-generated RSA certificates in some other
964 implementations (e.g., GnuPG 2.x's gpgsm).  Depending on which RFCs
965 you read, this may or may not be correct, but our new behaviour appear
966 to be consistent with other widely used implementations.
968 ** Regenerate the PKIX ASN.1 syntax tree.
969 For some reason, after changing the ASN.1 type of ldap-UID in the last
970 release, the generated C file built from the ASN.1 schema was not
971 refreshed.  This can cause problems when reading/writing UID
972 components inside X.500 Distinguished Names.  Reported by devel
973 <dev001@pas-world.com>.
975 ** Updated translations.
977 ** API and ABI modifications:
978 No changes since last version.
980 * Version 1.6.1 (released 2006-12-28)
982 ** Fix the list of trusted CAs that server's send to clients.
983 Before, the list contained issuer DN's instead of subject DN's of the
984 trusted CAs.  Reported by Max Kellermann <max@duempel.org>.
986 ** Fix gnutls_certificate_set_x509_crl to initialize the CRL before using it.
987 Reported by Max Kellermann <max@duempel.org>.
989 ** Encode UID fields in DN's as DirectoryString.
990 Before GnuTLS encoded and parsed UID fields as IA5String.  This was
991 incorrect, it should have used DirectoryString.  Now it will use
992 DirectoryString for the UID field, but for backwards compatibility it
993 will also accept IA5String UID's.  Reported by Max Kellermann
994 <max@duempel.org>.
996 ** Fix ./configure failure with non-GCC compilers.
997 This fixes the following error message:
998 configure: error: conditional "HAVE_LD_OUTPUT_DEF" was never defined.
999 Reported by "Michael C. Vergallen" <mvergall@telenet.be>.
1001 ** API and ABI modifications:
1002 No changes since last version.
1004 * Version 1.6.0 (released 2006-11-17)
1006 ** No changes since 1.5.5.
1007 The major changes compared to the 1.4.x branch are:
1009 *** A GnuTLS C++ library is part of the official distribution.
1010 Currently there are no examples or documentation, but hopefully this
1011 will change.  See gnutlsxx.h for the API.
1013 *** Windows is a supported platform.
1014 There are, however, two know bugs.  One is related to select() in
1015 command line tools (not, nota bene, in the library), the other is a
1016 problem with libgcrypt that causes delays.  Help is needed to resolve
1017 those issues, so we feel we can't delay the release because of this.
1019 *** New APIs for custom push/pull function error reporting.
1020 The new APIs are gnutls_transport_set_errno and
1021 gnutls_transport_set_global_errno.  See the release notes for version
1022 1.5.4 for more information.
1024 *** Self tests are run under valgrind, if available.  See --disable-valgrind.
1026 * Version 1.5.5 (released 2006-11-16)
1028 ** Correctly bump shared library version after adding new APIs.
1029 This was forgotten in the last release.
1031 ** Fix unsigned vs signed problem in ex-x509-info.c example.
1032 Reported by Tim Kosse <tim.kosse@filezilla-project.org>.
1034 ** Fix the rsa-md5-collision self test to work for MinGW+Wine.
1036 ** Update of gnulib files.
1038 ** API and ABI modifications:
1039 No changes since last version.
1041 * Version 1.5.4 (released 2006-11-07)
1043 ** New API functions to set errno in push/pull functions.
1044 Under Windows, setting the errno variable in a push/pull replacement
1045 may end up setting the wrong errno variable, and GnuTLS send/recv
1046 functions become confused about the real errno returned from a failed
1047 push/pull function.  Therefor, we have added two APIs to set the errno
1048 variable used by GnuTLS.  The APIs can also help to keep things
1049 thread-safe, by avoiding potentially global variables.  Typically,
1050 instead of setting errno in your push/pull function, you will call one
1051 of these functions.  It is recommended to use
1052 gnutls_transport_set_errno, but if you don't have the session variable
1053 easily accessible in the push/pull replacement function, you can use
1054 gnutls_transport_set_global_errno.  Suggested by Tim Kosse
1055 <tim.kosse@filezilla-project.org>.
1057 void gnutls_transport_set_errno (gnutls_session_t session, int err);
1058 void gnutls_transport_set_global_errno (int err);
1060 ** When calling `recv' or `send' Windows errors are handled properly.
1061 The Windows recv/send functions doesn't use errno, and GnuTLS now use
1062 WSAGetLastError to access the error condition instead.
1064 ** Several OpenPGP API fixes.
1065 All suggested by ludovic.courtes@laas.fr (Ludovic Courtès).  The most
1066 important fix is to change the return value of
1067 gnutls_openpgp_privkey_get_pk_algorithm and
1068 gnutls_openpgp_key_get_pk_algorithm from 'int' to
1069 'gnutls_pk_algorithm_t', which is an enum type (and thus API/ABI
1070 compatible with 'int').
1072 ** When a GnuTLS server receive a SSLv2 Client Hello for an unknown TLS
1073 ** version, try to negotiate the highest version support by the GnuTLS server,
1074 ** instead of the lowest.
1075 Reported by <Pasi.Eronen@nokia.com>.
1077 ** Replace old constructs with use of gnulib modules.
1078 For example, we can now assume unistd.h, sys/stat.h, sys/socket.h in
1079 the code.  If the headers doesn't exist on the target system, gnulib
1080 will make sure its replacement header files are used instead.
1082 ** Fix SOVERSION computation for *.def files.
1083 This fixes build errors similar to "No rule to make target
1084 `libgnutls-`expr', needed by `all-am'." when building for Windows.
1086 ** gnutls_check-version uses strverscmp from gnulib.
1088 ** Update of gnulib files.
1090 ** API and ABI modifications:
1091 gnutls_transport_set_errno: ADD
1092 gnutls_transport_set_global_errno: ADD
1094 * Version 1.5.3 (released 2006-10-26)
1096 ** Add new self-test of RSA-MD5 signature chains.
1097 Note that we already, since GnuTLS 1.2.9, reject RSA-MD5 signatures
1098 when verifying X.509 chains.  The code is in tests/rsa-md5-collision/
1099 and is based on the work by Marc Stevens et al, see
1100 <http://www.win.tue.nl/hashclash/TargetCollidingCertificates/>.
1102 ** Re-factor self tests.
1104 ** The include copy of Libtasn1 is updated to version 0.3.7.
1106 ** The included copy of OpenCDK is updated to version 0.5.11.
1108 ** Fix the filename of the *.def file on Windows after library version bump.
1110 ** Separated the gnulib directory into one for LGPL modules and one for GPL.
1111 This allows the GPL'd part of GnuTLS to take advantage of the GPL'd
1112 gnulib modules.  Earlier we could only use the LGPL'ed module from
1113 gnulib, because two gnulib directories in the same project didn't
1114 work.
1116 ** API and ABI modifications:
1117 No changes since last version.
1119 * Version 1.5.2 (released 2006-10-03)
1121 ** Decrement the shared library version back to 13 (as in the 1.4.x branch).
1122 Note that if you installed 1.5.0 or 1.5.1, they will have a higher
1123 shared library version than this version, so you'll have to remove
1124 them and possibly relink your applications.  The reason for this is
1125 that no API/ABI changes have been made since the 1.4.x branch, and
1126 that incrementing the shared library version was a mistake.  Reported
1127 by Andreas Metzler <ametzler@downhill.at.eu.org>.
1129 ** Fix off-by-one error when computing length to malloc.
1130 The code is used by gnutls_openpgp_add_keyring_file and
1131 gnutls_openpgp_add_keyring_mem.  Reported by "Adam Langley"
1132 <agl@imperialviolet.org>.
1134 ** Add version script for the GnuTLS C++ library.
1135 Reported by Andreas Metzler <ametzler@downhill.at.eu.org>.
1137 ** Fix the C++ compiler detection logic.
1138 Reported by Andreas Metzler <ametzler@downhill.at.eu.org>.
1140 ** Update of gnulib files.
1142 ** API and ABI modifications:
1143 No changes since last version.
1145 * Version 1.5.1 (released 2006-09-21)
1147 ** Fix PKCS#1 verification to avoid a variant of Bleichenbacher's
1148 ** Crypto 06 rump session attack.
1149 In particular, we check that the digestAlgorithm.parameters field is
1150 missing or empty, to avoid that it can contain "garbage" that may be
1151 used to alter the numeric properties of the signature.  See
1152 <http://www.imc.org/ietf-openpgp/mail-archive/msg14307.html> (which is
1153 not exactly the same as the problem we fix here).  Reported by Yutaka
1154 OIWA <y.oiwa@aist.go.jp>.
1156 See GNUTLS-SA-2006-4 on http://www.gnutls.org/security.html for more
1157 up to date information.
1159 ** Add self test to test for above flaw.
1161 ** Fix gnutls-cli-debug regarding resume support detection.
1162 Earlier, if the session-id from the server had a length of 0, it would
1163 indicate the the server supports resumption, which isn't the case.
1164 Reported by Kataja Kai <kai.kataja@op.fi>.
1166 ** Fix building of examples on FreeBSD by including netinet/in.h.
1167 Reported by Roman Bogorodskiy <novel@FreeBSD.org>.
1169 ** Fix certtool bug that caused the private key to not be loaded when
1170 generating a certificate with --load-request, which in turn triggered
1171 another unrelated bug in gnutls_x509_crt_sign2 (also fixed).  Reported
1172 by Sascha Ziemann <sascha.ziemann@secunet.com>.
1174 ** gnutls-cli and gnutls-serv works on Windows.
1175 The problem was the select() call that doesn't work on file
1176 descriptors (stdin) on Windows.  We borrowed some code from plibc to
1177 solve this.  It appears to be somewhat unreliable though.
1179 ** Autoconf 2.60 is now used.
1181 ** API and ABI modifications:
1182 No changes since last version.
1184 * Version 1.5.0 (released 2006-08-13)
1186 ** Change SRP and Cert-Type extensions to match IANA registry.
1188 ** Fixed bug in OpenPGP authentication handshake.
1190 ** Improvements for building under MinGW.
1191 Provides internal inet_ntop and inet_pton functions and arpa/inet.h
1192 header.  Calls WSAStartup and WSACleanup in gnutls_global_init and
1193 gnutls_global_deinit, respectively.  Loads getaddrinfo and getnameinfo
1194 at run-time from ws2_32.dll, and falls back on a simple replacement if
1195 it is not available.  Builds the library with -mms-bitfields
1196 -Wl,--enable-runtime-pseudo-reloc.  Links with --output-def, to
1197 create *.def files, which are installed.
1199 ** The examples now (conditionally) include config.h and link to gnulib.
1200 No other source changes were necessary, so the examples should
1201 continue to be possible to use stand-alone without any autoconf or
1202 gnulib stuff.
1204 ** Added C++ header "gnutlsxx.h" and library "libgnutlsxx".
1205 You may unconditionally disable it with --disable-cxx.  See
1206 includes/gnutls/gnutlsxx.h and lib/gnutlsxx.cpp for the
1207 implementation.
1209 ** Made command line tool '--version' behave according to GNU Standards.
1210 This enables 'make distcheck' to succeed.
1212 ** OpenCDK updated to 0.5.9 to fix some problems with OpenPGP support.
1214 ** Make --without-included-libtasn1 work.
1215 Reported by Daniel Black <dragonheart@gentoo.org>.
1217 ** Fix a crash (strcmp() on a NULL value) in the certificate verification logic.
1218 See http://www.gnu.org/software/gnutls/security.html regardging
1219 GNUTLS-SA-2006-2 for more up to date information.  Reported by
1220 satyakumar <satyam_kkd@hyd.hellosoft.com>.
1222 ** API and ABI modifications:
1223 No changes since last version.
1225 * Version 1.4.5 (released 2006-11-06)
1227 ** When a GnuTLS server receive a SSLv2 Client Hello for an unknown TLS
1228 ** version, try to negotiate the highest version support by the GnuTLS server,
1229 ** instead of the lowest.
1230 Reported by <Pasi.Eronen@nokia.com>.
1232 ** Fix typo in doc/examples/ex-serv-pgp.c.
1233 Reported by Adam Langley" <agl@imperialviolet.org>.
1235 ** API and ABI modifications:
1236 No changes since last version.
1238 * Version 1.4.4 (released 2006-09-12)
1240 ** Relax the test that caught signatures that exploit the variant of
1241 ** Bleichenbacher's Crypto 06 rump session attack on our
1242 ** verification logic flaw.
1243 In particular, we now permit the digestAlgorithm.parameters field to
1244 be present but empty, whereas in 1.4.3 we actually checked that the
1245 field was absent.
1247 ** Revert the removal of debug information for the GNUTLS-SA-2006-3 problem.
1248 The messages are only printed in debug mode, which is not recommended
1249 for normal use, and thus logging this situation cannot be abused as an
1250 oracle in typical recommended situations.
1252 ** API and ABI modifications:
1253 No changes since last version.
1255 * Version 1.4.3 (released 2006-09-08)
1257 ** Fix PKCS#1 verification to avoid a variant of Bleichenbacher's
1258 ** Crypto 06 rump session attack.
1259 In particular, we check that the digestAlgorithm.parameters field is
1260 empty, to avoid that it can contain "garbage" that may be used to
1261 alter the numeric properties of the signature.  See
1262 <http://www.imc.org/ietf-openpgp/mail-archive/msg14307.html> (which is
1263 not exactly the same as the problem we fix here).  Reported by Yutaka
1264 OIWA <y.oiwa@aist.go.jp>.
1266 See GNUTLS-SA-2006-4 on http://www.gnutls.org/security.html for more
1267 up to date information.
1269 ** Fix PKCS#1 decryption to avoid Bleichenbacher's Crypto 98 attack.
1270 See <http://www.bell-labs.com/user/bleichen/papers/pkcs.ps.gz>.
1271 Reported by Werner Koch <wk@gnupg.org>.
1273 See GNUTLS-SA-2006-3 on http://www.gnutls.org/security.html for more
1274 up to date information.
1276 ** Fix crash in gnutls_x509_crt_sign2 if passed a NULL issuer_key.
1278 ** API and ABI modifications:
1279 No changes since last version.
1281 * Version 1.4.2 (released 2006-08-12)
1283 ** Fix a crash (strcmp() on a NULL value) in the certificate verification logic.
1284 This can happen if you call gnutls_certificate_verify_peers2 and have
1285 a certain mix of local CA certificates and the peer send special
1286 certificates, that together trigger certain behaviour.  It is not
1287 known at this point whether the crash can be triggered without the
1288 special local CA certificate, and thus turn this into a remote crash
1289 of clients that verify server certificates when they talk to a server
1290 with the special server certificate.  See GNUTLS-SA-2006-2 on
1291 http://www.gnu.org/software/gnutls/security.html for more up to date
1292 information.  Reported by satyakumar <satyam_kkd@hyd.hellosoft.com>.
1294 ** Change SRP and Cert-Type extensions to match IANA registry.
1296 ** OpenCDK updated to 0.5.9 to fix some problems with OpenPGP support.
1298 ** Make --without-included-libtasn1 work.
1299 Reported by Daniel Black <dragonheart@gentoo.org>.
1301 ** API and ABI modifications:
1302 No changes since last version.
1304 * Version 1.4.1 (released 2006-06-14)
1306 ** Replaced inactive ifdefs to enable openpgp support in test programs.
1308 ** Fixed bug in OpenPGP authentication handshake.
1310 ** Fixed typographical in man pages.
1312 ** Build fixes of the manual.
1314 ** Added Swedish translation.
1316 ** API and ABI modifications:
1317 No changes since last version.
1319 * Version 1.4.0 (released 2006-05-15)
1321 ** Remove GnuTLS 0.8.x compatibility functions.
1323 ** The libgcrypt RNG is initialized in gnutls_global_init().
1325 ** TLS/IA API changes from Emile van Bergen.
1326 A dummy credential structure is not needed now, if you wish to use the
1327 low-level TLS/IA API, simply call gnutls_ia_enable to enable TLS/IA on
1328 a session.
1330 ** The self-tests are now run under valgrind, if it is installed.
1332 ** Libtasn1 is updated to 0.3.4, and that version is now required.
1334 ** The command line tools now use getaddrinfo and support IPv6.
1336 ** API and ABI modifications:
1337 _gnutls_x509_get_raw_crt_activation_time,
1338 _gnutls_x509_get_raw_crt_expiration_time: Removed.
1339 gnutls_ia_require_inner_phase: Removed, replaced by gnutls_ia_enable.
1340 gnutls_ia_enable: Added.
1342 * Version 1.3.5 (released 2006-03-08)
1344 ** Error messages are now translated using GNU Gettext.
1346 ** The function gnutls_x509_crt_to_xml now return an internal error.
1347 This means that the code to convert X.509 certificates to XML format
1348 does not work any more.  The reason is that the function called
1349 libtasn1 internal functions.  It seems unclean for libtasn1 to export
1350 the APIs needed here.  Instead it would be better to implement XML
1351 support inside libtasn1 properly.  If you need this functionality
1352 strongly, please consider looking into implementing this suggested
1353 approach instead.  As a workaround, you may also modify lib/x509/xml.c
1354 (change '#if 1' to '#if 0') and build using --with-included-libtasn1.
1356 ** Libraries are now built with libtool's -no-undefined.
1357 This helps producing libraries for Windows using mingw32.
1359 ** Doc fixes to explain that gnutls_record_send can block.
1361 ** Libtasn1 0.3.1 or later is now required.
1362 The include copy has been updated too.
1364 ** gnutls-cli can now recognize services and port numbers with the -p option.
1366 ** API and ABI modifications:
1367 No changes since last version.
1369 * Version 1.3.4 (released 2006-02-09)
1371 ** Fix read of out bounds bug in DER parser.
1372 Reported by Evgeny Legerov <admin@gleg.net>, and debugging help from
1373 Protover SSL.  Libtasn1 0.2.18 is now required, which contains the
1374 previous bug fix.  The included libtasn1 version in GnuTLS has been
1375 updated.
1377 ** Fixed bug in non-blocking gnutls_bye(). gnutls_record_send() will no 
1378 longer invalidate a session if the underlying send fails, but it will 
1379 prevent future writes. That is to allow reading the already received data.
1380 Patches and bug reports by Yoann Vandoorselaere <yoann@prelude-ids.org>
1382 ** Corrected bugs in gnutls_certificate_set_x509_crl() and
1383 gnutls_certificate_set_x509_trust(), that caused memory corruption if 
1384 more than one certificates were added. Report and patch by Max Kellermann.
1386 ** Fix build problems of OpenCDK on AIX.
1387 Thanks to "Heiden, John" <JHeiden@UTNet.UToledo.Edu>.
1389 ** API and ABI modifications:
1390 No changes since last version.
1392 * Version 1.3.3 (released 2006-01-12)
1394 ** New API to access the TLS master secret.
1395 When possible, you should use the TLS PRF functions instead.
1396 Suggested by Jouni Malinen <jkmaline@cc.hut.fi>.
1398 ** Improved handling when multiple libraries use GnuTLS at the same time.
1399 Now gnutls_global_init() can be called multiple times, and
1400 gnutls_global_deinit() will only deallocate the structure when it has
1401 been called as many times as gnutls_global_init() was called.
1403 ** Added a self test of TLS resume functionality.
1405 ** Fix crash in TLS resume code, caused by TLS/IA changes.
1407 ** Documentation fixes about thread unsafety, prompted by
1408 ** discussion with bryanh@giraffe-data.com (Bryan Henderson).
1409 In particular, gnutls_global_init() and gnutls_global_deinit() are not
1410 thread safe.  Careful callers may want to protect the call using a
1411 mutex.  The problem could also be ignored, which would cause a memory
1412 leak under rare conditions when two threads invoke the function
1413 roughly at the same time.
1415 ** Add 'const' keywords in various places, from Frediano ZIGLIO.
1417 ** The code was indented again, including the external header files.
1419 ** API and ABI modifications:
1420 New functions to retrieve the master secret value:
1421   gnutls_session_get_master_secret
1423 Add a 'const' keyword to existing API:
1424   gnutls_x509_crq_get_challenge_password
1426 * Version 1.3.2 (released 2005-12-15)
1428 ** GnuTLS now support TLS Inner application (TLS/IA).
1429 This is per draft-funk-tls-inner-application-extension-01.  This
1430 functionality is added to libgnutls-extra, so it is licensed under the
1431 GNU General Public License.
1433 ** New APIs to access the TLS Pseudo-Random-Function (PRF).
1434 The PRF is used by some protocols building on TLS, such as EAP-PEAP
1435 and EAP-TTLS.  One function to access the raw PRF and one to access
1436 the PRF seeded with the client/server random fields are provided.
1437 Suggested by Jouni Malinen <jkmaline@cc.hut.fi>.
1439 ** New APIs to acceess the client and server random fields in a session.
1440 These fields can be useful by protocols using TLS.  Note that these
1441 fields are typically used as input to the TLS PRF, and if this is your
1442 intended use, you should use the TLS PRF API that use the
1443 client/server random field directly.  Suggested by Jouni Malinen
1444 <jkmaline@cc.hut.fi>.
1446 ** Internal type cleanups.
1447 The uint8, uint16, uint32 types have been replaced by uint8_t,
1448 uint16_t, uint32_t.  Gnulib is used to guarantee the presence of
1449 correct types on platforms that lack them.  The uint type have been
1450 replaced by unsigned.
1452 ** API and ABI modifications:
1453 New functions to invoke the TLS Pseudo-Random-Function (PRF):
1454   gnutls_prf
1455   gnutls_prf_raw
1457 New functions to retrieve the session's client and server random values:
1458   gnutls_session_get_server_random
1459   gnutls_session_get_client_random
1461 New function, to perform TLS/IA handshake:
1462   gnutls_ia_handshake
1464 New function to decide whether to do a TLS/IA handshake:
1465   gnutls_ia_handshake_p
1467 New functions to allocate a TLS/IA credential:
1468   gnutls_ia_allocate_client_credentials
1469   gnutls_ia_free_client_credentials
1470   gnutls_ia_allocate_server_credentials
1471   gnutls_ia_free_server_credentials
1473 New functions to handle the AVP callback:
1474   gnutls_ia_set_client_avp_function
1475   gnutls_ia_set_client_avp_ptr
1476   gnutls_ia_get_client_avp_ptr
1477   gnutls_ia_set_server_avp_function
1478   gnutls_ia_set_server_avp_ptr
1479   gnutls_ia_get_server_avp_ptr
1481 New functions, to toggle TLS/IA application phases:
1482   gnutls_ia_require_inner_phase
1484 New function to mix session keys with inner secret:
1485   gnutls_ia_permute_inner_secret
1487 Low-level API (used internally by gnutls_ia_handshake):
1488   gnutls_ia_endphase_send
1489   gnutls_ia_send
1490   gnutls_ia_recv
1492 New functions that can be used after successful TLS/IA negotiation:
1493   gnutls_ia_generate_challenge
1494   gnutls_ia_extract_inner_secret
1496 Enum type with TLS/IA modes:
1497   gnutls_ia_mode_t
1499 Enum type with TLS/IA packet types:
1500   gnutls_ia_apptype_t
1502 Enum values for TLS/IA alerts:
1503   GNUTLS_A_INNER_APPLICATION_FAILURE
1504   GNUTLS_A_INNER_APPLICATION_VERIFICATION
1506 New error codes, to signal when an application phase has finished:
1507   GNUTLS_E_WARNING_IA_IPHF_RECEIVED
1508   GNUTLS_E_WARNING_IA_FPHF_RECEIVED
1510 New error code to signal TLS/IA verify failure:
1511   GNUTLS_E_IA_VERIFY_FAILED
1513 * Version 1.3.1 (released 2005-12-08)
1515 ** Support for DHE-PSK cipher suites has been added.
1516 This method offers perfect forward secrecy.
1518 ** Fix gnutls-cli STARTTLS hang when SIGINT is sent too quickly, thanks to
1519 Otto Maddox <ottomaddox@fastmail.fm> and Nozomu Ando <nand@mac.com>.
1521 ** Corrected a bug in certtool for 64 bit machines. Reported
1522 by Max Kellermann <max@duempel.org>.
1524 ** New function to set a X.509 private key and certificate pairs, and/or
1525 CRLs, from an PKCS#12 file, suggested by Emile van Bergen
1526 <emile@e-advies.nl>.
1528 The integrity of the PKCS#12 file is protected through a password
1529 based MAC; public-key based signatures for integrity protection are
1530 not supported.  PKCS#12 bags may be encrypted using password derived
1531 symmetric keys, public-key based encryption is not supported.  The
1532 PKCS#8 keys may be encrypted using passwords.  The API use the same
1533 password for all operations.  We believe that any more flexibility
1534 create too much complexity that would hurt overall security, but may
1535 add more PKCS#12 related APIs if real-world experience indicate
1536 otherwise.
1538 ** gnutls_x509_privkey_import_pkcs8 now accept unencrypted PEM PKCS#8 keys,
1539 reported by Emile van Bergen <emile@e-advies.nl>.
1540 This will enable "certtool -k -8" to parse those keys.
1542 ** Certtool now generate keys in unencrypted PKCS#8 format for empty passwords.
1543 Use "certtool -p -8" and press press enter at the prompt.  Earlier,
1544 certtool would have encrypted the key using an empty password.
1546 ** Certtool now accept --password for --key-info and encrypted PKCS#8 keys.
1547 Earlier it would have prompted the user for it, even if --password was
1548 supplied.
1550 ** Added self test of PKCS#8 parsing.
1551 Unencrypted and encrypted (pbeWithSHAAnd3-KeyTripleDES-CBC and
1552 pbeWithSHAAnd40BitRC2-CBC) formats are tested.  The test is in
1553 tests/pkcs8.
1555 ** API and ABI modifications:
1556 New function to set X.509 credentials from a PKCS#12 file:
1557   gnutls_certificate_set_x509_simple_pkcs12_file
1559 New gnutls_kx_algorithm_t enum type:
1560   GNUTLS_KX_DHE_PSK
1562 New API to return session data (basically same as gnutls_session_get_data):
1563   gnutls_session_get_data2
1565 New API to set PSK Diffie-Hellman parameters:
1566   gnutls_psk_set_server_dh_params
1568 * Version 1.3.0 (2005-11-15)
1570 ** Support for TLS Pre-Shared Key (TLS-PSK) ciphersuites have been added.
1571 This add several new APIs, see below.  Read the updated manual for
1572 more information.  A new self test "pskself" has been added, that will
1573 test this functionality.
1575 ** The session resumption data are now system independent.
1577 ** The code has been re-indented to conform to the GNU coding style.
1579 ** Removed the RIPEMD ciphersuites.
1581 ** Added a discussion of the internals of gnutls in manual.
1583 ** Fixes for Tru64 UNIX 4.0D that lack MAP_FAILED, from Albert Chin.
1585 ** Remove trailing comma in enums, for IBM C v6, from Albert Chin.
1587 ** Make sure config.h is included first in a few files, from Albert Chin.
1589 ** Don't use C++ comments ("//") as they are invalid, from Albert Chin.
1591 ** Don't install SRP programs and man pages if --disable-srp-authentication,
1592 from Albert Chin.
1594 ** API and ABI modifications:
1595 New gnutls_kx_algorithm_t key exchange type: GNUTLS_KX_PSK
1597 New gnutls_credentials_type_t credential type:
1598   GNUTLS_CRD_PSK
1600 New credential types:
1601   gnutls_psk_server_credentials_t
1602   gnutls_psk_client_credentials_t
1604 New functions to allocate PSK credentials:
1605   gnutls_psk_allocate_client_credentials
1606   gnutls_psk_free_client_credentials
1607   gnutls_psk_free_server_credentials
1608   gnutls_psk_allocate_server_credentials
1610 New enum type for PSK key flags:
1611   gnutls_psk_key_flags
1613 New function prototypes for credential callback:
1614   gnutls_psk_client_credentials_function
1615   gnutls_psk_server_credentials_function
1617 New function to set PSK username and key:
1618   gnutls_psk_set_client_credentials
1620 New function to set PSK passwd file:
1621   gnutls_psk_set_server_credentials_file
1623 New function to extract PSK user in server:
1624   gnutls_psk_server_get_username
1626 New functions to set PSK callback:
1627   gnutls_psk_set_server_credentials_function
1628   gnutls_psk_set_client_credentials_function
1630 Use size_t instead of int for output size parameter:
1631   gnutls_srp_base64_encode
1632   gnutls_srp_base64_decode
1634 * Version 1.2.11 (2006-05-11)
1635 - The function gnutls_x509_crt_to_xml is not supported any more, and
1636   return an internal error.  The reason is that the function called
1637   internal libtasn1 functions which are no longer exported from
1638   libtasn1.
1639 - Updated libtasn1 requirement to 0.3.4 and refreshed internal mintiasn1.
1640 - Updated gnulib compatibility files.
1641 - Fixed _gnutls_x509_get_raw_crt_expiration_time and
1642   _gnutls_x509_get_raw_crt_activation_time to return (time_t)-1 on errors.
1643 - API and ABI modifications:
1644   No changes since last version.
1646 * Version 1.2.10 (2006-02-09)
1647 - Fix read out bounds bug in DER parser.  Reported by Evgeny Legerov
1648   <admin@gleg.net>, and debugging help from Protover SSL.
1649 - Libtasn1 0.2.18 is now required (contains the previous bug fix).
1650   The included version has been updated too.
1651 - Fix gnutls-cli STARTTLS hang when SIGINT is sent too quickly, thanks to
1652   Otto Maddox <ottomaddox@fastmail.fm> and Nozomu Ando <nand@mac.com>.
1653 - Corrected a bug in certtool for 64 bit machines. Reported
1654   by Max Kellermann <max@duempel.org>.
1655 - Corrected bugs in gnutls_certificate_set_x509_crl() and
1656   gnutls_certificate_set_x509_trust(), that caused memory corruption if
1657   more than one certificates were added. Report and patch by Max Kellermann.
1658 - Fixed bug in non-blocking gnutls_bye(). gnutls_record_send() will no 
1659   longer invalidate a session if the underlying send fails, but it will 
1660   prevent future writes. That is to allow reading the already received data.
1661   Patches and bug reports by Yoann Vandoorselaere <yoann@prelude-ids.org>
1663 * Version 1.2.9 (2005-11-07)
1664 - Documentation was updated and improved.
1665 - RSA-MD2 is now supported for verifying digital signatures.
1666 - Due to cryptographic advances, verifying untrusted X.509
1667   certificates signed with RSA-MD2 or RSA-MD5 will now fail with a
1668   GNUTLS_CERT_INSECURE_ALGORITHM verification output.  For
1669   applications that must remain interoperable, you can use the
1670   GNUTLS_VERIFY_ALLOW_SIGN_RSA_MD2 or GNUTLS_VERIFY_ALLOW_SIGN_RSA_MD5
1671   flags when verifying certificates.  Naturally, this is not
1672   recommended default behaviour for applications.  To enable the
1673   broken algorithms, call gnutls_certificate_set_verify_flags with the
1674   proper flag, to change the verification mode used by
1675   gnutls_certificate_verify_peers2.
1676 - Make it possible to send empty data through gnutls_record_send,
1677   to align with the send(2) API.
1678 - Some changes in the certificate receiving part of handshake to prevent
1679   some possible errors with non-blocking servers.
1680 - Added numeric version symbols to permit simple CPP-based feature
1681   tests, suggested by Daniel Stenberg <daniel@haxx.se>.
1682 - The (experimental) low-level crypto alternative to libgcrypt used
1683   earlier (Nettle) has been replaced with crypto code from gnulib.
1684   This leads to easier re-use of these components in other projects,
1685   leading to more review and simpler maintenance.  The new configure
1686   parameter --with-builtin-crypto replace the old --with-nettle, and
1687   must be used if you wish to enable this functionality.  See README
1688   under "Experimental" for more information.  Internally, GnuTLS has
1689   been updated to use the new "Generic Crypto" API in gl/gc.h.  The
1690   API is similar to the old crypto/gc.h, because the gnulib code were
1691   based on GnuTLS's gc.h.
1692 - Fix compiler warning in the "anonself" self test.
1693 - API and ABI modifications:
1694 gnutls_x509_crt_list_verify: Added 'const' to prototype in <gnutls/x509.h>.
1695                              This doesn't reflect a change in behaviour,
1696                              so we don't break backwards compatibility.
1697 GNUTLS_MAC_MD2: New gnutls_mac_algorithm_t value.
1698 GNUTLS_DIG_MD2: New gnutls_digest_algorithm_t value.
1699 GNUTLS_VERIFY_ALLOW_SIGN_RSA_MD2,
1700 GNUTLS_VERIFY_ALLOW_SIGN_RSA_MD5: New gnutls_certificate_verify_flags values.
1701                                   Use when calling
1702                                   gnutls_x509_crt_list_verify,
1703                                   gnutls_x509_crt_verify, or
1704                                   gnutls_certificate_set_verify_flags.
1705 GNUTLS_CERT_INSECURE_ALGORITHM: New gnutls_certificate_status_t value,
1706                                 used when broken signature algorithms
1707                                 is used (currently RSA-MD2/MD5).
1708 LIBGNUTLS_VERSION_MAJOR,
1709 LIBGNUTLS_VERSION_MINOR,
1710 LIBGNUTLS_VERSION_PATCH,
1711 LIBGNUTLS_VERSION_NUMBER: New CPP symbols, indicating the GnuTLS
1712                           version number, can be used for feature existence
1713                           tests.
1715 * Version 1.2.8 (2005-10-07)
1716 - Libgcrypt 1.2.2 is required to fix a bug for forking GnuTLS servers.
1717 - Don't install the auxilliary libexamples library used by the
1718   examples in doc/examples/ on "make install", report and tiny patch
1719   from Thomas Klausner <tk@giga.or.at>.
1720 - If you pass a X.509 CA or PGP trust database to the command line
1721   tool, it will now abort the connection if the server certificate
1722   validation fails.  Use the parameter --insecure to continue even
1723   after certificate validation failures.  Inspired from discussion
1724   with Alexander Kotelnikov <sacha@myxomop.com>.
1725 - The test for socklen_t has been moved to gnulib.
1726 - Link failures for duplicate or missing "program_name" symbol has been fixed,
1727   patch from Martin Lambers <marlam@marlam.de>.
1728 - The command line tool and the examples no longer uses mmap or bzero,
1729   to make them more portable, patch from Martin Lambers
1730   <marlam@marlam.de>.
1731 - Made the PKCS #12 API handle null passwords. Based on patch by
1732   Anton Altaparmakov <aia21@cam.ac.uk>.
1733 - The GTK-DOC manual should build with current released tools.
1734   (But a copy of the output is included, so the tools are not required.)
1735 - The inet_ntop function is now used through gnulib.
1736 - API and ABI modifications:
1737   No changes since last version.
1739 * Version 1.2.7 (2005-09-09)
1740 - The GNUTLS and GNUTLS-EXTRA libraries are now built with versioned symbols.
1741 - Certtool now complains when reading out-of-range X.509 serial
1742   numbers, suggested by Fran <e_agf@yahoo.es>.
1743 - Certtool now uses the readline library (when available) when reading
1744   X.509 serial numbers.
1745 - Fixed build problems in getpass on uClibc and Mingw32 platforms.
1746 - Fixed compile warning regarding socklen_t on Mingw32, reported by
1747   Martin Lambers <marlam@marlam.de>.
1748 - Fixed examples in doc/examples/, suggested by Fran <e_agf@yahoo.es>.
1749 - Gnulib is now used for the core library, enabling future code cleanups.
1750 - The gnutls-cli tool now use gnutls_certificate_verify_peers2,
1751   suggested by Daniel Stenberg <daniel@haxx.se>.
1752 - Doc fixes for gnutls_transport_set_push and gnutls_transport_set_pull.
1753 - Minilibtasn1 is now 0.2.17 (removed optional use of C99 macros).
1754 - Disable zlib support if zlib.h is not present.
1755 - A number of internal cleanups.
1756 - API and ABI modifications:
1757   No changes since last version.
1759 * Version 1.2.6 (2005-07-16)
1760 - MiniLZO updated to version 2.01 and moved to separate directory.
1761 - Collision between system LZO header files and MiniLZO header file
1762   fixed, reported by Matthias Urlichs <smurf@smurf.noris.de>.
1763 - Will now test for liblzo functionality in liblzo2 too, reported by
1764   Thomas Klausner <tk@giga.or.at>.
1765 - Minilibtasn1 is now 0.2.14 (no code changes).
1766 - Some code changes to avoid GTK-DOC warnings.
1767 - API and ABI modifications:
1768   No changes since last version.
1770 * Version 1.2.5 (2005-07-03)
1771 - More builddir != srcdir fixes, reported by Mike Castle
1772   <dalgoda@ix.netcom.com>.
1773 - Fixed off-by-one bug in the size parameter of gnutls_x509_crt_get*_dn,
1774   reported by Adam Langley <alangley@gmail.com>.
1775 - Corrected some stuff in minilzo detection. Pointed out by 
1776   Sergey Lipnevich.
1777 - MiniLZO updated to version 2.00.
1778 - gnutls_x509_crt_list_import now accept a DER formatted CRL.
1779 - API and ABI modifications:
1780   No changes since last version.
1782 * Version 1.2.4 (2005-05-28)
1783 - Corrected some bugs that could affect 64 bit systems.
1784 - Some corrections in the header files to include the prototype
1785   of memmem properly (affected 64 bit systems). Report and patch
1786   by Yoann Vandoorselaere <yoann@prelude-ids.org>.
1787 - Introduced the --fix-key option to certtool, which can be used to
1788   regenerate the (optional) parameters in a private key. It should
1789   be used together with --key-info.
1790 - Corrected a bug in certificate chain verification that could lead
1791   to marking a trusted chain as non trusted, if the last certificate in
1792   the chain was a self signed one.
1793 - Gnulib portability files were updated.
1794 - License were updated to reflect new FSF address.
1795 - API and ABI modifications:
1796   No changes since last version.
1798 * Version 1.2.3 (2005-04-28)
1799 - Corrected bug in record packet parsing that could lead
1800   to a denial of service attack.
1801 - Corrected bug in RSA key export. Previously exported keys
1802   can be fixed using certtool. Use certtool -k <infile >outfile
1803 - API and ABI modifications:
1804     gnutls_x509_privkey_fix(): Add.
1806 * Version 1.2.2 (2005-04-25)
1807 - gnutls_error_to_alert() now considers
1808   GNUTLS_E_UNEXPECTED_HANDSHAKE_PACKET.
1809 - Fixed error in session resuming that could cause a crash in a session.
1810 - Fixed pkcs12 friendly name and local key identifier decoding.
1811 - Internal cleanups, removed duplicate typedef/struct definitions,
1812   and made source code include external include file, to check
1813   function prototypes during compile time.
1814 - API and ABI modifications:
1815   No changes since last version.  At least not intentional, but due
1816   to the include header changes, there may be inadvertant changes,
1817   please let us know if you find any.
1819 * Version 1.2.1 (2005-04-04)
1820 - gnutls_bye() will no longer fail when RDWR is used and application
1821   data are available for reading.
1822 - Added more strict checks for the SRP parameters (g,n), when they
1823   are not in the included list.
1824 - Added warning to certtool when MD5 is being used for digital
1825   signatures.
1826 - Optimizations ("-O2 -finline-functions") are not enabled by default,
1827   instead the standard autoconf defaults are used.  Use `./configure
1828   CFLAGS="-O2 -finline-functions"' to get the old optimizations.
1829 - Added the option --get-dh-params to certtool, in order to get the
1830   parameters included in the library primes and generators.
1831 - Improved the semantics of GNUTLS_VERIFY_ALLOW_X509_V1_CA_CRT, to
1832   allow only trusted Version 1 CAs and introduced
1833   GNUTLS_VERIFY_ALLOW_ANY_X509_V1_CA_CRT which has the old semantics.
1834 - Nettle self tests now build properly, reported by Pierre
1835   <pierre42d@9online.fr>.
1836 - Eliminated some memory leaks in DHE and RSA-EXPORT cipher suites.
1837   Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
1838 - If the library has been compiled with features disabled, a warning is 
1839   issued during the compilation of any program.
1840 - API and ABI modifications:
1841     gnutls_x509_crt_list_import(): Add
1842     gnutls_x509_crq_get_attribute_by_oid(): Add.
1843     gnutls_x509_crq_set_attribute_by_oid(): Add
1844     gnutls_x509_crt_set_extension_by_oid(): Add.
1845     GNUTLS_VERIFY_ALLOW_X509_V1_CA_CRT: Modify semantics.
1846     GNUTLS_VERIFY_ALLOW_ANY_X509_V1_CA_CRT: Add, old behaviour.
1848 * Version 1.2.0 (2005-01-27)
1849 - Added the definitions and OIDs for the RIPEMD-160 hash algorithm.
1850 - Introduced gnutls_x509_crt_sign2(), gnutls_x509_crq_sign2() and 
1851   gnutls_x509_crl_sign2().
1852 - Fixed license header in source code files.
1854 * Version 1.1.23 (2005-01-18)
1855 - It is now possible to generate PKCS#12 structures without private
1856   keys using "certtool --to-p12", suggested by Fabian Fagerholm
1857   <fabbe@paniq.net>.
1858 - Certtool now prints information for the RSA and DSA parameters of
1859   certificates and private keys.
1860 - Corrected the write of CRL distribution points.
1861 - The certificate chain verification function now checks certificates
1862   in the reverse order to minimize the spent resources.
1863 - Corrected several bugs found by Marcin Garski <mgarski@post.pl>
1864 - The functions gnutls_x509_crl_get_issuer_dn, gnutls_x509_crq_get_dn,
1865   gnutls_x509_crt_get_issuer_dn, gnutls_x509_crt_get_dn, and
1866   gnutls_x509_rdn_get now set *sizeof_buf to the buffer length that is
1867   required, instead of the string length.  That is, the value has been
1868   incremented by 1 to account for the terminating zero. Reported by
1869   Martin Lambers <marlam@web.de>.
1870 - Debug output shouldn't crash on platforms that doesn't handle NULL
1871   printf %s values.  Reported by Michael.Ringe@aachen.utimaco.de.
1872 - Sync included copy of libtasn1 with version 0.2.13.
1873 - Client X.509 authenticated connections via gnutls-cli should now work again.
1875 * Version 1.1.22 (2004-11-04)
1876 - Replace GNU LD version script with Libtool -export-symbols-regex,
1877   from Joe Orton <joe@manyfish.co.uk>.
1878 - Documentation improvements.
1879 - Code indented using 'indent -i4 -kr'.
1880 - The API manual is included in Devhelp format.  (Was in last release too,
1881   but the NEWS entry was forgotten.)
1882 - The OpenSSL compatibility code now use the internal crypto interface.
1883 - Added simple self test of OpenSSL compatibility library.
1884 - Internally, libtool convenience libraries are used.
1885 - Cleanups to configure.ac.
1887 * Version 1.1.21 (2004-10-27)
1888 - Print DN of certificates with unknown characters in them, but in hexform
1889   only.
1890 - Added second precision to the X.509 parsing and generation functions.
1891 - Corrected bug in _gnutls_x509_get_dn_oid(), and returns the
1892   actual OID.
1893 - Add parameter --la-file to libgnutls-config and libgnutls-extra-config,
1894   tiny patch contributed by Joe Orton <joe@manyfish.co.uk>.
1895 - Add pkg-config meta files, suggested by Stéphane LOEUILLET
1896   <stephane.loeuillet@tiscali.fr>.
1897 - Fix memory initializaion bug in gnutls_certificate_set_x509_trust,
1898   tiny patch by Aleix Conchillo Flaque <aleix@member.fsf.org>.
1899 - Add self test of PKCS#12 functionality in "certtool", based on test
1900   vectors from Joe Orton <joe@manyfish.co.uk>.
1901 - Fix library order in libgnutls*-config --libs output, to permit
1902   static linking, reported by Yoann Vandoorselaere
1903   <yoann@prelude-ids.org>.
1905 * Version 1.1.20 (2004-10-12)
1906 - Fix compile problem in gl/getpass.c on some systems.
1908 * Version 1.1.19 (2004-10-07)
1909 - Fix memory leak in gnutls_certificate_verify_peers and
1910   gnutls_certificate_free_credentials, report and patch by Simon
1911   Posnjak <simon.posnjak@cetrtapot.si>.
1912 - Fix crash in `certtool --to-p12 --load-privkey foo', i.e. exporting
1913   a key and no certificate to PKCS#12.
1914 - Fix objdir != srcdir builds, reported by "Gerrit P. Haase"
1915   <gp@familiehaase.de>.
1916 - Fixes faulty getpass implementation in libextra/opencdk/, reported
1917   by Yoann Vandoorselaere <yoann@prelude-ids.org>.
1918 - Uses memmem instead of strnstr in lib/.
1919 - Using more GNULib portability files, although not yet inside lib/.
1920 - Added gnutls_certificate_verify_peers to gnutls/compat.h.
1921   Nikos deprecated gnutls_certificate_verify_peers in favor of
1922   gnutls_certificate_verify_peers2 earlier in the 1.1 branch.
1923 - Improvements to the manual.
1924 - Add new example "ex-rfc2818" for certificate verification, from Nikos.
1925 - Known bug: the library require snprintf.  This has not yet been
1926   fixed, but will be handled via GNULib later on.
1928 * Version 1.1.18 (2004-08-24)
1929 - Corrected handling of certificate with dates after year 2038.
1930 - Corrected DER decoder which could incorrectly treat input as BER and fail.
1931 - Correct certtool --smime-to-p7 end of line character handling.
1932 - Added example client and server for anonymous authentication.
1933 - Added self test that tests anonymous TLS client and server.
1934 - Added self tests of Nettle and generic crypto layer.
1935 - Added API reference manual in HTML format in doc/reference/ using GTK-DOC.
1936   Online version at <http://www.gnu.org/software/gnutls/reference/>.
1937 - Assume C89 or better; removed checks for size_t, ptrdiff_t and time_t.
1938 - Man pages for API functions are included.
1940 * Version 1.1.17 (2004-08-18)
1941 - Bug fix of padding string in RSA PKCS#1 v1.5 type 2 encryption,
1942   reported by Robey Pointer <robey@danger.com>.
1943 - Generic crypto interface for secret key ciphers, hashes and randomness added.
1944   See section "Experimental" within section "COMPILATION ISSUES" in README.
1945 - Removed length limit on passwords read by 'certtool'.
1946 - Documentation fixes.
1948 * Version 1.1.16 (2004-08-15)
1949 - Fix missing gnulib linker parameter when building certtool.
1950 - Add gnulib module 'progname', needed by module 'error'.
1951 - Improve building with srcdir != objdir.
1953 * Version 1.1.15 (2004-08-15)
1954 - Certtool has simplistic --smime-to-p7 to translate RFC 2633 messages into
1955   PKCS #7 format.
1956 - Ported to Mac OS X / Darwin.
1957 - Ported to FreeBSD.
1959 * Version 1.1.14 (2004-08-09)
1960 - Documentation converted to Texinfo format.
1961 - Bug fix of test suite.
1962 - Configure now print build information, used by Autobuild.
1964 * Version 1.1.13 (2004-08-05)
1965 - Added simple self test suite.
1967 * Version 1.1.12 (2004-08-02)
1968 - Updated the SRP authentication to conform to the
1969   latest (yet unreleased) draft. Unfortunately this breaks
1970   compatibility with previous versions.
1971 - Changed the makefiles to be more portable.
1972 - SRP ciphersuites were moved to the gnutls library.
1973 - Added some default limits in the verification of certificate
1974   chains, to avoid denial of service attacks. Also added 
1975   gnutls_certificate_set_verify_limits() to override them.
1976   Issue pointed out by Patrik Hornik <patrik@hornik.sk>.
1977 - Added gnutls_certificate_verify_peers2().
1979 * Version 1.1.11 (2004-07-16)
1980 - Added the '_t' suffix to all exported symbols.
1981 - Fixed bug in RSA encryption, report and patch by Martijn Koster 
1982   <mak@greenhills.co.uk>.
1983 - Corrected a bug in certificate verification. Pointed out by
1984   Yoann Vandoorselaere <yoann@prelude-ids.org>
1985 - Added the GNUTLS_VERIFY_DO_NOT_ALLOW_SAME flags to the
1986   verification functions.
1987 - The ephemeral DH and RSA parameters are no longer stored in the
1988   session resume DB.
1989 - Do not free the SRP (prime and generator) parameters obtained from the 
1990   callback if they are the static ones defined in extra.h
1991 - Eliminated some memory leaks. Reported by Yoann Vandoorselaere.
1993 * Version 1.1.10 (2004-06-12)
1994 - Added gnutls_sign_algorithm_get_name() and gnutls_pk_algorithm_get_name()
1995 - Corrected bug in TLS renegotiation.
1996 - Corrected bug in OpenPGP key loading using a callback.
1997 - gnutls-srpcrypt was renamed to srptool
1998 - Allow handshake requests by the client.
1999 - Automatically disable certificate types that do not have corresponding
2000   certificates.
2001 - Added gnutls_auth_client_get_type() and gnutls_auth_server_get_type()
2002 - Opencdk library is being included if not found.
2003 - certtool can now add ip address SAN extension.
2004 - certtool has now support for more X.520 DN attribute types.
2005 - Better handling of EOF in gnutls_record_recv().
2006 - _gnutls_deinit() is no longer used. Sessions are not
2007   automatically removed any more, on abnormal termination.
2008 - Corrected session resuming in SRP ciphersuites.
2009 - Updated to conform to the latest srp draft (draft-ietf-tls-srp-07)
2010 - Added new functions to allow access to the ephemeral
2011   Diffie Hellman parameters.
2012 - Added the functions gnutls_x509_crt_get_pk_rsa_raw() and
2013   gnutls_x509_crt_get_pk_dsa_raw() to retrieve parameters from certificates.
2014 - Added the functions gnutls_dh_get_group(), gnutls_dh_get_pubkey() and
2015   gnutls_rsa_export_get_pubkey() to retrieve parameters of the DH or
2016   RSA-EXPORT key exchange.
2017 - Some fixes in the session resuming code.
2018 - Added gnutls_openpgp_keyring_check_id().
2020 * Version 1.1.9 (2004-04-14)
2021 - Added support for authority key identifier and the extended key usage
2022   X.509 extension fields. The certtoool was updated to support them.
2023 - The RC2 cipher is no more included. The one in libgcrypt is now used.
2024 - Added batch support to certtool. Now it can use templates.
2026 * Version 1.1.8 (2004-04-07)
2027 - Implemented all the tests for the SRP group parameters in
2028   client side. This may lead to incompatibility with very
2029   old gnutls servers.
2030 - Corrected bug in RSA parameters handling which could cause
2031   unexpected crashes.
2032 - Optimized the copying of rsa_params.
2034 * Version 1.1.7 (2004-03-29)
2035 - Added gnutls_certificate_set_params_function() and 
2036   gnutls_anon_set_params_function() that set the RSA or DH
2037   parameters using a callback.
2038 - Added functions gnutls_rsa_params_cpy(), gnutls_dh_params_cpy()
2039   and gnutls_x509_privkey_cpy().
2040 - Corrected a compilation issue when opencdk was installed in a
2041   non standard directory.
2042 - Deprecated: gnutls_srp_server_set_select_function(), 
2043   gnutls_certificate_client_set_select_function(), gnutls_srp_server_set_select_function().
2045 * Version 1.1.6 (2004-02-24)
2046 - Several bug fixes, by Arne Thomassen.
2047 - Fixed a bug where 'server name' extension was always sent.
2049 * Version 1.1.5 (2004-01-06)
2050 - Added the gnutls_sign_algorithm type.
2052 * Version 1.1.4 (2004-01-04)
2053 - Improved gnutls-cli's SRP behaviour in SRP ciphersuites.
2054   If they are of highest priority then the abbreviated handshake
2055   is used.
2056 - Removed all references of missing files.
2057 - Changed handshake behaviour to send the lowest TLS version
2058   when an unsupported version was advertized. The current behaviour
2059   is to send the maximum version we support.
2060 - Corrected problem printing the DC attributes in a DN.
2062 * Version 1.1.3 (2003-12-30)
2063 - Implemented TLS 1.1 (and also obsoleted the TLS 1.0 CBC protection
2064   hack).
2066 * Version 1.1.2 (2003-12-28)
2067 - Added CRL verification functionality to certtool.
2068 - Corrected the CRL distribution point extension handling.
2070 * Version 1.1.1 (2003-12-26)
2071 - Added PKCS #7 support to certtool utility.
2072 - Added support for reading and generating CRL distribution
2073   points extensions in certificates.
2074 - Added support for generating CRLs in the library and the
2075   certtool utility.
2076 - Added support for the Subject Key ID PKIX extension.
2078 * Version 1.1.0 (2003-12-21)
2079 - The error codes GNUTLS_E_NO_TEMPORARY_DH_PARAMS and GNUTLS_E_NO_TEMPORARY_RSA_PARAMS
2080   are no longer returned by the handshake function. Ciphersuites that
2081   require temporary parameters are removed when such parameters do not exist.
2082 - Added the callbacks gnutls_certificate_client_retrieve_function() and
2083   gnutls_certificate_server_retrieve_function(), to allow a client or a server
2084   to specify certificates for the handshake without storing them to the
2085   credentials structure.
2086 - Added support for generating and exporting DSA private keys.
2087 - Added gnutls_x509_crt_set_key_usage() and certtool can now set the
2088   certificate's key usage.
2089 - Added gnutls_openpgp_key_get_key_usage().
2091 * Version 1.0.25 (2005-04-27)
2092 - Corrected bug in record packet parsing that could lead
2093   to a denial of service attack.
2094 - Corrected bug in RSA key export.
2096 * Version 1.0.24 (2005-01-18)
2097 - Corrected several bugs found by Marcin Garski <mgarski@post.pl>
2099 * Version 1.0.23 (2004-11-13)
2100 - Replace GNU LD version script with Libtool -export-symbols-regex,
2101   from Joe Orton <joe@manyfish.co.uk>.
2102 - Copy libtasn1 has been updated to version 0.2.11.
2103 - Corrected the write of CRL distribution points.
2104 - It is now possible to generate PKCS#12 structures without private
2105   keys using "certtool --to-p12", suggested by Fabian Fagerholm
2106   <fabbe@paniq.net>.
2108 * Version 1.0.22 (2004-10-28)
2109 - Print DN of certificates with unknown characters in them, but in hexform
2110   only.
2111 - Corrected bug in _gnutls_x509_get_dn_oid(), and returns the
2112   actual OID.
2113 - Added second precision to the X.509 parsing functions.
2114 - Add parameter --la-file to libgnutls-config and libgnutls-extra-config,
2115   tiny patch contributed by Joe Orton <joe@manyfish.co.uk>.
2116 - Add pkg-config meta files, suggested by Stéphane LOEUILLET
2117   <stephane.loeuillet@tiscali.fr>.
2118 - Fix memory initializaion bug in gnutls_certificate_set_x509_trust,
2119   tiny patch by Aleix Conchillo Flaque <aleix@member.fsf.org>.
2120 - Fix certtool --password for PKCS #12, back ported from 1.1.x branch.
2121 - Fix library order in libgnutls*-config --libs output, to permit
2122   static linking, reported by Yoann Vandoorselaere
2123   <yoann@prelude-ids.org>.
2125 * Version 1.0.21 (2004-10-07)
2126 - Fix memory leak in gnutls_certificate_verify_peers and
2127   gnutls_certificate_free_credentials, report and patch by Simon
2128   Posnjak <simon.posnjak@cetrtapot.si>.
2129 - Fix crash in `certtool --to-p12 --load-privkey foo', i.e. exporting
2130   a key and no certificate to PKCS#12.
2131 - Fix objdir != srcdir builds, reported by "Gerrit P. Haase"
2132   <gp@familiehaase.de>.
2133 - Avoid redefining getpass if system already has it, reported by
2134   Yoann Vandoorselaere <yoann@prelude-ids.org>.
2135 - Add new example "ex-rfc2818" for certificate verification, from Nikos.
2136 - Known bug: the library require snprintf.
2138 * Version 1.0.20 (2004-08-18)
2139 - Bug fix of padding string in RSA PKCS#1 v1.5 type 2 encryption,
2140   reported by Robey Pointer <robey@danger.com>.
2142 * Version 1.0.19 (2004-08-09)
2143 - Bug fix of test suite.
2145 * Version 1.0.18 (2004-08-05)
2146 - Added simple self test suite.
2148 * Version 1.0.17 (2004-08-02)
2149 - Updated the SRP authentication to conform to the
2150   latest (yet unreleased) draft. Unfortunately this breaks
2151   compatibility with previous versions.
2152 - Changed the makefiles to be more portable.
2153 - Added some default limits in the verification of certificate
2154   chains, to avoid denial of service attacks. Also added 
2155   gnutls_certificate_set_verify_limits() to override them.
2156   Issue pointed out by Patrik Hornik <patrik@hornik.sk>.
2157 - Added gnutls_certificate_verify_peers2().
2159 * Version 1.0.16 (2004-07-10)
2160 - Do not free the SRP (prime and generator) parameters obtained from the 
2161   callback if they are the static ones defined in extra.h.
2162 - Eliminated some memory leaks. Reported by Yoann Vandoorselaere.
2163 - Some fixes in the makefiles.
2165 * Version 1.0.15 (2004-06-29)
2166 - Fixed bug in RSA encryption, report and patch by Martijn Koster 
2167   <mak@greenhills.co.uk>.
2168 - Corrected a bug in certificate verification. Pointed out by
2169   Yoann Vandoorselaere <yoann@prelude-ids.org>.
2171 * Version 1.0.14 (2004-06-12)
2172 - Automatically disable certificate types that do not have corresponding
2173   certificates.
2174 - Updates in the documentation.
2175 - certtool can now add ip address SAN extension.
2176 - certtool has now support for more X.520 DN attribute types.
2177 - Opencdk library is being included if not found.
2178 - Added gnutls_openpgp_keyring_check_id().
2179 - Corrected a serious bug in the included libtasn1 library.
2180 - Corrected session resuming in SRP ciphersuites.
2181 - Updated to conform to the latest srp draft (draft-ietf-tls-srp-07)
2182 - Added the functions gnutls_x509_crt_get_pk_rsa_raw() and
2183   gnutls_x509_crt_get_pk_dsa_raw() to retrieve parameters from certificates.
2184 - Some fixes in the session resuming code.
2186 * Version 1.0.13 (2004-04-29)
2187 - Some complilation fixes.
2188 - Added the --xml parameter to the certtool utility.
2190 * Version 1.0.12 (2004-04-23)
2191 - Corrected bug in OpenPGP key loading using a callback.
2192 - Renamed gnutls-srpcrypt to srptool
2193 - Allow handshake requests by the client.
2194 * Things backported from the development branch:
2195 - Added support for authority key identifier and the extended key usage
2196   X.509 extension fields. The certtoool was updated to support them.
2197 - Added batch support to certtool. Now it can use templates.
2198 - The RC2 cipher is no more included. The one in libgcrypt is now used.
2200 * Version 1.0.11 (2004-04-17)
2201 - Added gnutls_sign_algorithm_get_name() and gnutls_pk_algorithm_get_name()
2202 - Corrected bug in TLS renegotiation.
2204 * Version 1.0.10 (2004-04-03)
2205 - Corrected bug in RSA parameters handling which could cause
2206   unexpected crashes.
2207 - Corrected bug in SSL 3.0 authentication.
2209 * Version 1.0.9 (2004-03-29)
2210 - Added gnutls_certificate_set_params_function() and 
2211   gnutls_anon_set_params_function() that set the RSA or DH
2212   parameters using a callback.
2213 - Added functions gnutls_rsa_params_cpy(), gnutls_dh_params_cpy()
2214   and gnutls_x509_privkey_cpy().
2215 - Corrected a compilation issue when opencdk was installed in a
2216   non standard directory.
2217 - Documented the changes need in multi-threaded application due
2218   to the new libgcrypt.
2220 * Version 1.0.8 (2004-02-28)
2221 - Corrected bug in mutual certificate authentication in SSL 3.0.
2223 * Version 1.0.7 (2004-02-25)
2224 - Implemented TLS 1.1 (and also obsoleted the TLS 1.0 CBC protection
2225   hack).
2226 - Some updates in the documentation.
2228 * Version 1.0.6 (2004-02-12)
2229 * Backported things from the development branch (while maintaining
2230   backwards compatibility):
2231 - Improved gnutls-cli's SRP behaviour in SRP ciphersuites.
2232   If they are of highest priority then the abbreviated handshake
2233   is used.
2234 - The error codes GNUTLS_E_NO_TEMPORARY_DH_PARAMS and GNUTLS_E_NO_TEMPORARY_RSA_PARAMS
2235   are no longer returned by the handshake function. Ciphersuites that
2236   require temporary parameters are removed when such parameters do not exist.
2237 - Added the callbacks gnutls_certificate_client_retrieve_function() and
2238   gnutls_certificate_server_retrieve_function(), to allow a client or a server
2239   to specify certificates for the handshake without storing them to the
2240   credentials structure.
2241 - Added support for generating and exporting DSA private keys.
2243 * Version 1.0.5 (2004-02-11)
2244 - Fixed a bug where 'server name' extension was always sent.
2245 * Backported things from the development branch:
2246 - Added CRL verification functionality to certtool.
2247 - Corrected the CRL distribution point extension handling.
2248 - Added PKCS #7 support to certtool utility.
2249 - Added support for reading and generating CRL distribution
2250   points extensions in certificates.
2251 - Added support for generating CRLs in the library and the
2252   certtool utility.
2253 - Added support for the Subject Key ID PKIX extension.
2254 - Added the gnutls_sign_algorithm type.
2256 * Version 1.0.4 (2004-01-04)
2257 - Changed handshake behaviour to send the lowest TLS version
2258   when an unsupported version was advertized. The current behaviour
2259   is to send the maximum version we support.
2260 - certtool no longer asks the password in unencrypted private
2261   keys.
2262 - The source is now compiled to use the reentrant libc functions.
2264 * Version 1.0.3 (2003-12-21)
2265 - Corrected bug in gnutls_bye() which made it return an error code
2266   of INVALID_REQUEST instead of success.
2267 - Corrected a bug in the GNUTLS_KEY key usage definitions.
2269 * Version 1.0.2 (2003-12-18)
2270 - Corrected a bug in the RSA key generation. This was
2271   generating unusable RSA keys.
2273 * Version 1.0.1 (2003-12-10)
2274 - Some minor fixes in the makefiles. They now include CFLAGS
2275   from libgcrypt or opencdk if installed in a non standard directory.
2276 - Fixed the SRP detection test in gnutls-cli-debug.
2277 - Added gnutls_rsa_params_export_pkcs1() and gnutls_rsa_params_import_pkcs1().
2279 * Version 1.0.0 (2003-12-04)
2280 - Exported the static SRP group parameters.
2281 - Some fixes in the certificate authenticated SRP ciphersuites.
2282 - Improved the support for draft-ietf-tls-srp-05. The two-phase
2283   handshake is now fully supported without any interaction with
2284   the application layer (except for a callback).
2286 * Version 0.9.99 (2003-11-28)
2287 - Some fixes in the gnutls.h header for the gnutls_server_name_set()
2288   and gnutls_server_name_get() prototypes.
2289 - Exported the gnutls_x509_privkey_sign_data(), gnutls_x509_privkey_verify_data() 
2290   and gnutls_x509_crt_verify_data().
2291 - Some fixes in the openpgp authentication.
2292 - Removed the Twofish cipher.
2294 * Version 0.9.98 (2003-11-16)
2295 - The openssl compatibility layer was moved to gnutls-openssl
2296   library instead of being included in the gnutls-extra library.
2297 - Added the RIPEMD ciphersuites defined in draft-ietf-tls-openpgp-keys-04.
2298 - Building with openpgp support is now mandatory.
2299 - gnutls4 compatibility header is no longer included by default in
2300   gnutls.h.
2301 - gnutls8 function usage yelds a deprecation warning in gcc3.
2302 - gnutls_x509_*_set_dn_by_oid() and gnutls_x509_*_get_*_dn_by_oid()
2303   functions have a raw_flag parameter added.
2304 - Added gnutls_x509_*_get_dn_oid() and gnutls_x509_crt_get_extension_oid()
2305   functions which return the available OIDs.
2307 * Version 0.9.97 (2003-11-11)
2308 - The certtool utility can now generate PKCS #12 structures
2309   without specifying a certificate.
2310 - Added capability to read CRLs to certtool.
2311 - Corrected some functions which return GNUTLS_E_SHORT_MEMORY_BUFFER
2312   to properly set the required buffer size.
2313 - Corrected a bug in libgcrypt detection.
2315 * Version 0.9.96 (2003-11-09)
2316 - Some changes to allow compilation with mingw32.
2317 - Several code cleanups.
2319 * Version 0.9.95 (2003-11-02)
2320 - Improved the verification functions. Added new verification
2321   output flags and removed the unused and redundant ones.
2322 - Improved the OpenPGP key support.
2323 - The prime utility was removed, and its functionality was moved
2324   to certtool.
2326 * Version 0.9.94 (2003-10-30)
2327 - Added manpages for the included programs.
2328 - Documented and improved the certtool utility. 
2329 - Added PKCS #12 support to certtool utility.
2331 * Version 0.9.93 (2003-10-26)
2332 - Corrected some compilation issues.
2333 - Improved the certtool command line utility.
2335 * Version 0.9.92 (2003-10-25)
2336 - The RFC2818 hostname verification is now case insensitive.
2337 - Added support for generating X.509 certificates.
2338 - Added the certtool, a tool for generating X.509 certificates
2340 * Version 0.9.91 (2003-10-17)
2341 - Fixed a compilation issue in the openpgp authentication part.
2343 * Version 0.9.90 (2003-10-08)
2344 - Updated the openpgp key API (depends on the unreleased new
2345   opencdk).
2347 * Version 0.9.8 (2003-10-02)
2348 - Updated the SRP implementation to follow the latest draft
2349   (draft-ietf-tls-srp-05).
2350 - Improved the gnutls-cli behaviour in error handling,
2351   and added a check for the peer's hostname.
2352 - Use versioned symbols in the library (where available).
2353 - RIJNDAEL ciphersuites were renamed to AES.
2355 * Version 0.9.7 (2003-08-25)
2356 - The tex files are now included in the distribution.
2357 - The library can now decrypt PKCS #12 files encrypted with
2358   the RC2-40 cipher.
2359 - The missing rfc2818_hostname object is now included.
2360 - Several corrections and bug fixes in the library by 
2361   Arne Thomassen <arne@arne-thomassen.de>.
2362 - CR is now allowed in the base64 decoder.
2364 * Version 0.9.6 (2003-06-28)
2365 - Added gnutls_x509_privkey_get_key_id() and gnutls_x509_crt_get_key_id()
2366   functions which return a unique (per public key) ID. These can
2367   be used to check if the private key corresponds to a given certificate.
2368 - Corrections in the TLS layer openpgp certificate packet parser.
2369 - Corrected a bug in the record layer buffering, which affected
2370   the case where external pull function was used. Report and patch
2371   by Sergey Poznyakoff <gray@Mirddin.farlep.net>.
2372 - Corrected a bug in gnutls-srpcrypt where a non allocated variable
2373   was freed.
2374 - SRP programs are now built by default.
2375 - Added API to read and write to PKCS #12 structures. Prototypes
2376   in gnutls/pkcs12.h.
2377 - The gnutls_transport_ptr type was changed to a pointer type (void*).
2379 * Version 0.9.5 (2003-04-06)
2380 - Several improvements in the PKCS #7 handling
2381 - Eliminated several hard coded constants in MPI parameters.
2383 * Version 0.9.4 (2003-03-28)
2384 - Corrected a parsing error in the Certificate request message.
2385 - Corrected behaviour when a certificate request message is received.
2386   Now a certificate packet is always sent, and in SSL 3.0 cipher suites
2387   a no_certificate alert is sent instead.
2388 - Added functionality to generate PKCS #7 structures (with certificates).
2390 * Version 0.9.3 (2003-03-24)
2391 - Support for MD2 was dropped. 
2392 - Improved the error logging functions, by adding a level, and
2393   by allowing debugging messages just by increasing the level.
2394 - The diffie Hellman ciphersuites are now of higher priority than
2395   the plain RSA.
2396 - The RSA premaster secret version check can no longer be disabled.
2397 - Implemented the counter measure discussed in the paper "Attacking
2398   RSA-based Sessions in SSL/TLS", against the attack described in the
2399   same paper.
2400 - Added the functions: gnutls_handshake_get_last_in(), 
2401   gnutls_handshake_get_last_out().
2402 - The gnutls_certificate_set_rsa_params() was renamed to 
2403   gnutls_certificate_set_rsa_export_params().
2404 - Added the new functions: gnutls_certificate_set_x509_key()
2405   gnutls_certificate_set_x509_trust(), gnutls_certificate_set_x509_crl(),
2406   gnutls_x509_crt_export(), gnutls_x509_crl_export().
2407 - Added support for encoding and decoding PKCS #8 2.0 encrypted 
2408   RSA private keys.
2410 * Version 0.9.2 (2003-03-15)
2411 - Some corrections in the memory mapping code (file is unmapped after 
2412   it is read).
2413 - Added support for PKCS#10 certificate requests generation.
2415 * Version 0.9.1 (2003-03-12)
2416 - Corrected a bug in 64 bit architectures, which affected the
2417   serial number calculation in the record layer.
2418 - Added gnutls_certificate_free_keys() which deletes all the
2419   private keys and certificates from the credentials structure.
2420 - Corrected a broken buffer check in _gnutls_io_read_buffered(),
2421   which caused some unexpected packet length errors. Report and patch
2422   by Ian Peters <itp@ximian.com>.
2423 - Added ability to generate RSA keys.
2424 - Increased the maximum parameter size in order to read some large keys
2425   by some CAs. Patch by Ian Peters <itp@ximian.com>.
2426 - Added an strnstr() function and the requirement in some functions to
2427   use null terminated PEM structures is no more.
2428 - Use mmap() if available to read files.
2429 - Fixed a memory leak in SRP code reported by Rupert Kittinger 
2430   <r.kittinger@efkon.com>.
2432 * Version 0.9.0 (2003-03-03)
2433 - This version is not binary compatible with the previous ones.
2434 - The library notifies the application on empty and illegal SRP usernames, 
2435   so that proper notification (via an alert) is sent to the peer.
2436 - Added ability to send some messages back to the application using
2437   the gnutls_global_set_log_function().
2438 - gnutls_dh_params_generate() and gnutls_rsa_params_generate() now use 
2439   gnutls_malloc() to allocate the output parameters.
2440 - Added support for MD2 algorithm in certificate signature verification.
2441 - The RSA and DH parameter generation interface was changed. Added
2442   ability to import and export from and to PKCS3 structures. This 
2443   was needed to read parameters generated using the openssl dhparam tool.
2444 - Several changes in the temporary (DH/RSA) parameter codebase. No DH 
2445   parameters are now included in the library. Also the credentials structure 
2446   can now hold only one temporary parameter of a kind.
2447 - Added a new Certificate, CRL, Private key and PKCS7 structures handling 
2448   API, defined in gnutls/x509.h
2449 - Added gnutls_certificate_set_verify_flags() function to allow setting the 
2450   verification flags in the credentials structure. They will be used in the
2451   *verify_peers functions.
2452 - Added protection against the new TLS 1.0 record layer timing attack.
2453 - Added support for Certificate revocation lists. Functions defined
2454   in gnutls/x509.h
2455 - The only functions that were removed are:
2456   gnutls_x509_certificate_to_xml()
2457   gnutls_x509_extract_dn_string()
2458 - Ported to libtasn1 0.2.x
2460 * Version 0.8.1 (2003-01-22)
2461 - Improved the SRP support, to prevent attackers guessing the
2462   available usernames by brute force.
2463 - Improved the SRP detection in gnutls-cli-debug
2464 - Some fixes which now allow compilation.
2466 * Version 0.8.0 (2003-01-20)
2467 - Added gnutls_x509_extract_dn_string() which returns a 
2468   distinguished name in a single string.
2469 - Added gnutls_openpgp_extract_key_name_string() which returns
2470   an openpgp user ID in a single string.
2471 - Added gnutls_x509_extract_certificate_ca_status() which returns
2472   the CA status of the given certificate.
2473 - Added SRP-6 support. Follows draft-ietf-tls-srp-04.
2474 - If libtasn1 is not present in the system, it is included in 
2475   the main gnutls library.
2476 - If liblzo is present in the system, then the included minilzo
2477   will not be used, and libgnutls-extra will depend on liblzo.
2478 - GNUTLS_E_PARSING_ERROR error code was replaced by GNUTLS_E_BASE64_DECODING_ERROR, 
2479   and GNUTLS_E_SRP_PWD_PARSING_ERROR. GNUTLS_E_ASCII_ARMOR_ERROR was also 
2480   replaced by GNUTLS_E_BASE64_DECODING_ERROR.
2482 * Version 0.6.0 (2002-12-08)
2483 - Added "gnutls/compat4.h" header. This is included in gnutls.h
2484   to emulate the old 0.4.x API.
2485 - Example programs are now stored in doc/examples/
2486 - Several improvements and updates in the documentation.
2487 - Added the certificate authenticated SRP cipher suites.
2488 - gnutls_x509_extract_certificate_dn_string() was updated to return
2489   an RFC2253 conforming string.
2490 - Added the SRP related functions:
2491    gnutls_srp_verifier()
2492    gnutls_srp_base64_encode()
2493    gnutls_srp_base64_decode()
2494 - Added the function gnutls_srp_set_server_credentials_function()
2495   to allow retrieving SRP parameters from an external backend - other
2496   than password files.
2497 - Added the function gnutls_openpgp_set_recv_key_function()
2498   which can be used to set a callback, to get OpenPGP keys.
2499 - Exported the functions:
2500    gnutls_malloc()
2501    gnutls_free()
2502   which should be used by callback functions.
2503 - Changed the semantics of gnutls_pem_base64_encode_alloc()
2504   and gnutls_pem_base64_decode_alloc(). In the default case
2505   were the gnutls library is used with malloc/realloc/free,
2506   these are binary compatible.
2508 * Version 0.5.11 (2002-11-05)
2509 - Some fixes in 'gnutls-cli' client program to prevent some segmentation 
2510   faults at exit.
2511 - Example programs found in the documentation can now be generated by
2512   running "make examples" in doc/tex directory.
2513 - Added more descriptive error strings, to gnutls_strerror().
2514 - Documented error codes, and the function reference list is now sorted.
2515 - Optimized buffering code.
2516 - gnutls_x509_extract_certificate_dn_string() was rewritten.
2517 - Added GNUTLS_E_SHORT_MEMORY_BUFFER error code, which is returned in the
2518   case where the memory buffer provided is not long enough.
2519 - Depends on the new OpenCDK 0.3.2.
2521 * Version 0.5.10 (2002-10-13)
2522 - Updated documentation.
2523 - Added server name extension. This allows clients to specify the
2524   name of the server they connect to. Useful to HTTPS.
2525 - Several corrections in the code base, mostly in signed/unsigned,
2526   checkings.
2528 * Version 0.5.9 (2002-10-10)
2529 - Corrected some code which worked fine in gcc 3.2, but not with any
2530   other compiler.
2531 - Updated 'gnutls-cli' with the '--starttls' option, to allow testing
2532   starttls implementations.
2533 - Added gnutls_x509_extract_key_pk_algorithm() function which extracts
2534   the private key type, of a DER encoded key.
2535 - Added gnutls_x509_extract_certificate_dn_string() which returns the 
2536   certificate's distinguished name in a single string.
2537 - Added gnutls_set_default_priority() and gnutls_set_default_export_priority()
2538   functions, to avoid calling all the *_priority() functions if the defaults
2539   are acceptable.
2540 - Added int gnutls_x509_check_certificates_hostname() which check whether
2541   the given hostname matches the owner of the given X.509 certificate.
2543 * Version 0.5.8 (2002-09-25)
2544 - Updated documentation.
2545 - Added gnutls_record_get_direction() which replaces the obsolete
2546   gnutls_handshake_get_direction().
2547 - Added function to convert error codes to alert descriptions
2548 - Added LZO compression
2550 * Version 0.5.7 (2002-09-11)
2551 - Some fixes in the memory allocation functions (realloc).
2552 - Improved the string functions used in XML certificate generation.
2553 - Removed dependency on libgdbm.
2554 - Corrected bug in gnutls_dh_params_set() which affected
2555   gnutls_dh_params_deinit().
2556 - Corrected bug in session resuming code in server side.
2558 * Version 0.5.6 (2002-09-06)
2559 - Corrected bugs in SRP implementation, which prevented gnutls 
2560   to interoperate with other implementations. (interoperability testing
2561   was done by David Taylor)
2562 - Corrected bug in cert_type extension.
2563 - Corrected extension type checks which used an 8 bit extension size,
2564   instead of 16 bits.
2565 - Added versioning in the XML output of certificate functions.
2566 - Removed the X.509 test suite.
2568 * Version 0.5.5 (2002-09-03)
2569 - Updated the SRP implementation to the latest draft. The blowfish
2570   crypt implementation was removed, since the new draft does not allow
2571   other hash algorithms except for the srpsha. 
2572 - Renamed all the constructed types in order to have more consistent
2573   names. 
2574 - Improved the certificate and key read functions. Now they can read 
2575   the certificate and the private key from the same file.
2576 - Updated and corrected documentation.
2578 * Version 0.5.4 (2002-08-27)
2579 - Fixes in TLS 1.0 PRF and SSL3 random functions.
2580 - gnutls_handshake_set_exportable_detection() was obsoleted.
2581 - Added gnutls_openpgp_extract_key_id() which returns the key ID.
2582 - Corrected bug in DHE key exchange
2583 - Added support for temporary RSA keys which are needed for the
2584   export cipher suites.
2585 - Added the TLS_RSA_EXPORT_ARCFOUR_40_MD5 ciphersuite.
2587 * Version 0.5.3 (2002-08-23)
2588 - No changes. Replaces the tarball of 0.5.2 which accidentally contained
2589   code from the unstable branch.
2591 * Version 0.5.2 (2002-08-22)
2592 - Added an error code that is returned in clients which connect
2593   to export only servers. This must be enabled using the
2594   gnutls_handshake_set_exportable_detection() function.
2595 - Updated openssl compatibility layer.
2596 - Added gnutls_handshake_get_direction() function which returns
2597   the state of the handshake when interrupted.
2599 * Version 0.5.1 (2002-07-17)
2600 - Corrected the m4 macros which used <gnutls.h> instead of
2601   <gnutls/gnutls.h>
2602 - Documentation fixes
2603 - Added gnutls_transport_set_ptr2() function, which accepts two
2604   different pointers, to be used while receiving, and 
2605   while sending data.
2606 - Semantic changes in gnutls_record_set_max_size(). The requested
2607   size is now immediately enforced at the output buffers.
2608 - gnutls_global_init_extra() now fails if the library versions do
2609   not match.
2610 - Fixes in client and server example programs. Null encryption can
2611   be used in these programs, to assist in debuging.
2612 - Fixes in zlib compression code.
2614 * Version 0.5.0 (2002-07-06)
2615 - Added X.509 certificate tests in tests/ directory
2616 - Removed stubs for SRP and Anonymous authentication. They served
2617   no purpose since they are always included, unless it was requested
2618   not to do so.
2619 - Added gnutls_handshake_set_private_extensions() function. This
2620   function can be used to enable private (gnutls specific) cipher suites
2621   and compression algorithms.
2622 - Added check for C99 macro support by the compiler.
2623 - Added functions gnutls_b64_encode_fmt2() and gnutls_b64_decode_fmt2()
2624 - Added the new libtasn1 library.
2625 - Removed the gdbm backend. Applications are now responsible for the
2626   session resuming backend. The gnutls-serv application contains an
2627   simple example on how to use gdbm for resuming.
2628 - Headers for the gnutls library are now installed in $(includedir)/gnutls
2629 - Added an OpenSSL compatible interface (with some limitations).
2630 - Added functions to convert DER encoded certificates to XML format.
2632 * Version 0.4.4 (2002-06-24)
2633 - Corrected bug in PKCS-1 RSA encryption which prevented gnutls to encrypt
2634   using keys of some specific size.
2636 * Version 0.4.3 (2002-05-23)
2637 - The gnutls-extra library now compiles fine, if the opencdk library is
2638   not present.
2639 - Several bug fixes.
2640 - Added gnutls_global_set_mem_func() function, to set the memory allocation
2641   functions, if other than the defaults are to be used.
2642 - The default memory allocation functions are now the ones in libc.
2644 * Version 0.4.2 (2002-05-21)
2645 - Separated ASN.1 structures parser documentation and TLS library
2646   documentation.
2647 - Added gnutls_handshake_set_rsa_pms() function, which disables the
2648   version check in RSA premaster secret.
2649 - Added gnutls_session_is_resumed() function, which reports if a session
2650   is a resumed one.
2651 - Added gnutls_state_set_ptr() and gnutls_state_get_ptr() functions, to
2652   assist in callback functions.
2653 - Replaced the included 1024 bit prime for Diffie Hellman, with a new
2654   random one.
2655 - Relicensed the library under the GNU Lesser General Public License
2656 - Added gnutls-extra library which contains the GPL covered code of gnutls.
2658 * Version 0.4.1 (2002-04-07)
2659 - Now uses alloca() for temporary variables
2660 - Optimized RSA signing
2661 - Added functions to return the peer's certificate activation and
2662   expiration time.
2663 - Corrected time function's behaviour (the time value returned no longer
2664   relate to local timezone).
2666 * Version 0.4.0 (2002-04-01)
2667 - Added support for RFC2630 (PKCS7) X.509 certificate sets
2668 - Added new functions: gnutls_x509_extract_certificate_pk_algorithm(),
2669   gnutls_openpgp_extract_key_pk_algorithm().
2670 - Several optimizations in the Handshake protocol
2671 - Several optimizations in RSA algorithm
2672 - Unified the return values because of small buffers.
2674 * Version 0.3.92 (2002-03-23)
2675 - Updated documentation
2676 - Combined error codes of ASN.1 parser and gnutls
2677 - Removed GNUTLS_CERT_TRUSTED from the CertificateStatus enumeration
2678 - Added protection against CBC chosen plaintext attack (disabled by default)
2679 - Improved and optimized compression support
2681 * Version 0.3.91 (2002-03-03)
2682 - Added gnutls-cli-debug program
2683 - Corrections in session resumption
2684 - Rehandshake can now handle negotiation of different authentication
2685   type.
2686 - gnutls-cli, gnutls-serv, gnutls-srpcrypt and gnutls-cli-debug are 
2687   now being installed.
2689 * Version 0.3.90 (2002-02-24)
2690 - Handshake messages are not kept in memory any more. Now we use 
2691   less memory during a handshake
2692 - Added support for certificates with DSA parameters
2693 - Added DHE_DSS cipher suites
2694 - Key exchange methods changed so they do not depend on the 
2695   certificate type. Added certificate type negotiation TLS extension.
2696 - Added openpgp key support (EXPERIMENTAL)
2697 - Improved Diffie Hellman key exchange support.
2698 - Bug fixes in the RSA key exchange.
2699 - Added check for the requested TLS extensions
2700 - TLS extensions now use a 16 bit type field.
2701 - Added a minimal string library to assist in ASN.1 parsing
2702 - Changes in ASN.1 parser to work with the new bison
2703 - Added gnutls_x509_extract_subject_alt_name(), which deprecates 
2704   gnutls_x509_extract_subject_dns_name()
2705 - gnutls_x509_set_trust_(file/mem) can now be called multiple times
2706 - gnutls_srp_server_set_cred_file() can now be called multiple times
2708 * Version 0.3.5 (2002-01-25)
2709 - Corrected the RSA key exchange method, to avoid attacks against
2710   PKCS-1 formating.
2712 * Version 0.3.4 (2002-01-20)
2713 - Corrected bugs in DHE_RSA key exchange method
2715 * Version 0.3.3 (2002-01-19)
2716 - Added gnutls_x509pki_verify_certificate()
2717 - Added gnutls_x509pki_set_trust_mem() and gnutls_x509pki_set_key_mem()
2718 - Bug fixes in srpcrypt (based on patch by Marc Huber)
2719 - Bug fixes in the Handshake protocol (based on patch by Guillaume Morin)
2720 - Corrected library versioning
2722 * Version 0.3.2 (2002-01-05)
2723 - Corrected bug which did not allow a client to accept multiple CA names
2724 - Added gnutls_fingerprint()
2725 - Added gnutls_x509pki_extract_certificate_serial()
2726 - Added gnutls_b64_encode_fmt() and gnutls_b64_decode_fmt()
2727 - Corrected behaviour in version advertizing
2728 - Updated documentation
2729 - Prefixed all types in gnutls.h with 'GNUTLS_' to avoid namespace collisions
2731 * Version 0.3.1 (2001-12-21)
2732 - Corrections in the configuration files
2733 - Fixes a bug in anonymous authentication
2735 * Version 0.3.0 (2001-12-17)
2736 - Corrected bug in new integer formatting (now we use the old format again)
2737 - Several corrections and usual cleanups
2739 * Version 0.2.91 (2001-12-10)
2740 - Fixes in MPI handling (fixes possible bug with signed integers)
2741 - Removed name indication extension
2742 - Added gnutls_transport_get_ptr() and gnutls_db_get_ptr()
2743 - Optimizations in server certificate callback.
2744 - Fixes in anonymous authentication
2745 - Corrections in client ciphersuite selection
2747 * Version 0.2.90 (2001-12-07)
2748 - gnutls_handshake(), gnutls_read() etc. functions no longer require
2749   the 'SOCKET cd' argument. This argument is set using the function
2750   gnutls_set_transport_ptr().
2751 - introduced gnutls_x509pki_get_peer_certificate_list(). This function returns
2752   a list containing peer's certificate and issuers DER encoded.
2753 - Updated X.509 certificate handling API
2754 - Added callback to select the server certificate
2755 - More consistent function naming (changes in several function names)
2756 - Buffer overflow checking in ASN.1 structures parser
2757 - Updated documentation
2759 * Version 0.2.11 (2001-11-16)
2760 - Changed the meaning of GNUTLS_E_REHANDSHAKE value. If this value
2761   is returned, then the caller should perform a handshake or send
2762   an alert to the peer.
2763 - Made receive buffer dynamic. Normally if no large chunks are received
2764   it occupies less space.
2765 - Added max_record_size extension
2766 - Bugfixes in session handling
2767 - Improved non blocking IO support in the Handshake Protocol
2768 - Usual bugfixes and cleanups
2769 - Documentation updated (includes ASN.1 documentation)
2771 * Version 0.2.10 (2001-11-05)
2772 - Corrected bugs and improved non blocking IO
2773 - Added hooks to use external database to store sessions
2774 - Usual cleanups
2776 * Version 0.2.9 (2001-10-27)
2777 - AUTH_INFO types and structures were moved to library internals
2778 - AUTH_FAILED is no longer returned in SRP authentication
2779   (any fatal error in SRP means auth failed)
2780 - Introduced GNUTLS_E_INTERRUPTED
2781 - Added support for non blocking IO
2782 - gnutls_recv() and gnutls_send() are now obsolete
2783 - Changed semantics of gnutls_rehandshake()
2785 * Version 0.2.4 (2001-10-12)
2786 - Better handling of X.509 certificate extensions
2787 - Added DHE_RSA ciphersuites
2788 - Updated the Name Indication (dnsname) extension
2789 - Improvements in Diffie Hellman primes handling
2791 * Version 0.2.3 (2001-09-19)
2792 - Memory optimizations in gnutls_recv()
2793 - Fixed several memory leaks
2794 - Added ability to specify callback for x509 client certificate selection
2795 - Better documentation
2797 * Version 0.2.2 (2001-08-21)
2798 - Several bugfixes (library and documentation)
2800 * Version 0.2.1 (2001-08-07)
2801 - SRP fixes
2803 * Version 0.2.0 (2001-08-07)
2804 - Partial support for X.509v3 Certificate extensions.
2805 - Added Internal memory handlers
2806 - Removed gnutls_x509_set_cn()
2807 - Added X.509 client authentication
2808 - Several bug fixes and protocol fixes
2810 * Version 0.1.9 (2001-07-30)
2811 - Corrected bug(s) in ChangeCipherSpec packet (fixes renegotiate)
2812 - SRP is updated to conform to the newest draft.
2813 - Added support for DNSNAME extension.
2814 - Reentracy fixes in ASN.1 Parsing.
2815 - Optimizations in hash/hmac functions
2816 - (Error) message handling has changed
2817 - Better Protocol Version handling
2818 - Added X.509 Certificate Verification
2819 - gnutls_read() semantics are now closer to read(2) - added EOF
2820 - Documented some part of gnutls in doc/tex/ using Latex
2822 * Version 0.1.4 (2001-06-22)
2823 - Corrected (srp) base64 encoding.
2824 - Changed bcrypt algorithm to include username.
2825 - Added RSA Ciphersuites (no certificate checking).
2826 - Fixes in SSL 2.0 client hello parsing.
2827 - Added ASN.1 and DER parsers.
2828 - Bugfixes in session resuming
2829 - Updated Ciphersuite selection algorithm
2830 - Added internal representation of X.509 structures.
2831 - Added global state
2833 * Version 0.1.3 (2001-06-01)
2834 - Updated API (and the way it is documented - we use inline documentation)
2835 - Added function to access alert messages.
2836 - Added support for renegotiating parameters.
2837 - Better and Faster Resume Database handling.
2838 - Several bugfixes
2840 * Version 0.1.2 (2001-05-14)
2841 - Updated API
2842 - Fixes in extension handling
2844 * Version 0.1.1 (2001-05-13)
2845 - Added compatibility with Stanford's libsrp library
2847 * Version 0.1.0 (2001-05-09)
2848 - Added SSL 2.0 client hello support
2849 - GNUTLS is a gnu library
2850 - Added support for TLS extensions.
2851 - Added support for SRP
2853 * Version 0.0.7 (2001-01-11)
2854 - Added server side session resuming (using gdbm)
2855 - Added twofish algorithm
2857 * Version 0.0.6 (2000-12-20)
2858 - Added client side session resuming
2859 - Better documentation (check doc/API)
2860 - Better socket handling (gnutls can be used with select())
2861 - Some primitive support for non blocking IO and socket options has been added.
2863 * Version 0.0.5 (2000-12-07)
2864 - Added Compression (using ZLIB)
2865 - Added SSL 3.0 support
2867 ----------------------------------------------------------------------
2868 Copying and distribution of this file, with or without modification,
2869 are permitted in any medium without royalty provided the copyright
2870 notice and this notice are preserved.