Bump versions.
[gnutls.git] / NEWS
blob44a962292410bd39d7619917e3467cb8f3d5905c
1 GNU TLS NEWS -- History of user-visible changes.                -*- outline -*-
2 Copyright (C) 2004, 2005, 2006, 2007, 2008 Simon Josefsson
3 Copyright (C) 2000, 2001, 2002, 2003, 2004 Nikos Mavrogiannopoulos
4 See the end for copying conditions.
6 * Version 2.3.4.netconf.2 (unreleased)
8 * Version 2.3.4.netconf.1 (released 2008-05-15)
10 ** Handle psk_identity_hint field in client.
12 ** Change PSK key derivation logic.
14 ** gnutls-cli: Fix so that PSK authentication works.
15 Back-ported from trunk.
17 ** API and ABI modifications:
18 No changes since last version.
20 * Version 2.3.4.netconf.0 (released 2008-04-13)
22 ** Support Netconf PSK key derivation.
23 The function gnutls_psk_netconf_derive_key supports the PSK key
24 derivation as specified in draft-ietf-netconf-tls-01.txt.  New self
25 test netconf-psk.c.
27 ** New PSK example client and server.
28 See doc/examples/ex-client-psk.c and doc/examples/ex-serv-psk.c.
30 ** API and ABI modifications:
31 gnutls_psk_netconf_derive_key: ADDED
33 * Version 2.3.4 (released 2008-03-19)
35 ** Finish renaming of gnutls_certificate_export_x509_cas etc.
36 They weren't renamed in the public header file.
38 ** Added functions to register a cipher/mac/digest. This allows to 
39 override the included ones.
41 ** Fix a bunch of compiler warnings.
43 ** API and ABI modifications:
44 gnutls_crypto_cipher_st: ADDED
45 gnutls_crypto_mac_st: ADDED
46 gnutls_crypto_digest_st: ADDED
47 gnutls_crypto_cipher_register: ADDED
48 gnutls_crypto_mac_register: ADDED
49 gnutls_crypto_digest_register: ADDED
50 GNUTLS_E_CRYPTO_ALREADY_REGISTERED: ADDED
52 * Version 2.3.3 (released 2008-03-10)
54 ** Fix build failure in libextra/gnutls_extra.c that needed opencdk.h.
55 Reported by Roman Bogorodskiy <novel@FreeBSD.org>.
57 ** No longer compiled using -D_REENTRANT -D_THREAD_SAFE.
58 We could not find any modern justification for enabling these flags by
59 default.  If you know of some platform that needs one of the flags to
60 work properly, please let us know.  (Actually introduced in v2.3.0 but
61 not documented until now.)
63 ** Importing many CA certificates are now considerably faster.
64 This affect gnutls_certificate_set_x509_trust_mem,
65 gnutls_certificate_set_x509_trust, and
66 gnutls_certificate_set_x509_trust_file.  The complexity was reduced
67 from O(2*n^2) to O(n).  When adding 206 files containing 408
68 certificates, using gnutls_certificate_set_x509_trust_file, the time
69 dropped from 40 seconds to 0.3 seconds.  Thanks to Edgar Fuß for code
70 to trigger the problem.  See also
71 <http://blog.josefsson.org/2008/02/27/real-world-performance-tuning-with-callgrind/>.
73 ** Clarify documentation for gnutls_x509_crt_set_subject_alternative_name
74 ** to be explicit that it takes zero terminated data.
76 ** gnutls-cli --print-cert now print PKCS#3 format Diffie-Hellman parameters.
78 ** Documentation fixes for the GTK-DOC manual.
80 ** Fix compilation error related to __FUNCTION__ on some systems.
81 Reported by Tim Mooney, see
82 <https://savannah.gnu.org/support/?106267>.
84 ** Updated translations.
86 ** Update gnulib files.
88 ** API and ABI modifications:
89 gnutls_hex2bin: MODIFIED, uses size_t instead of int for string length,
90                 and char* instead of void* for output buffer.
92 * Version 2.3.2 (released 2008-02-26)
94 ** Fix srcdir!=objdir failure in openpgpself test.
96 ** Improved API documentation output from GTK-DOC.
98 ** Added gnutls_x509_dn_export(). Patch by Joe Orton.
100 ** Renamed gnutls_certificate_export_x509_cas and friends.
101 See <http://lists.gnu.org/archive/html/gnutls-devel/2008-02/msg00043.html>.
103 ** Internal header files cleanup.
105 ** API and ABI modifications:
106 gnutls_certificate_export_x509_cas: RENAMED to gnutls_certificate_get_x509_cas
107 gnutls_certificate_export_x509_crls: RENAMED to gnutls_certificate_get_x509_crls
108 gnutls_certificate_export_openpgp_keyring: RENAMED to gnutls_certificate_get_openpgp_keyring
109 gnutls_x509_dn_export: ADDED
111 * Version 2.3.1 (released 2008-02-21)
113 ** OpenPGP support merged into libgnutls and is now licensed under LGPL.
114 The included copy of OpenCDK has been stripped down and re-licensed
115 under the LGPL.
117 ** Cipher priority string handling now handle strings that starts with NULL.
118 Thanks to Laurence Withers <l@lwithers.me.uk>.
120 ** gnutls-cli: When -d is used, also prints RNG information from libgcrypt.
122 ** Corrected memory leaks in session resuming and DHE ciphersuites. Reported
123 by Daniel Stenberg.
125 ** Increased the default certificate verification chain limits and allowed
126 for checks without limitation.
128 ** Corrected the behaviour of gnutls_x509_crt_get_subject_alt_name()
129 and gnutls_x509_crt_get_subject_alt_name() to not null terminate binary
130 strings and return the proper size.
132 ** Add section 'On Record Padding' to the manual.
133 This collects all problems related to record padding with
134 Nokia/Sony-Ericsson phones that we know about.
136 ** Several improvements in the OpenPGP authentication.
137 Now subkeys can be used for authentication, according to
138 draft-mavrogiannopoulos-rfc5081bis-00.txt.
140 ** certtool can print information on OpenPGP certificates and keys.
142 ** Added gnutls_x509_dn_import/init/deinit() to access raw DER DN.
143 Patch by Joe Orton.
145 ** Added gnutls_certificate_export_x509_cas and other functions to
146 export elements from the certificate credentials structure.  Based on
147 suggestion from Joe Orton.
149 ** Doc fixes.
150 Clarify that srp_base64 is not the same as normal base64.
152 ** Fix non-portable use of brace expansion in makefiles.
154 ** API and ABI modifications:
155 gnutls_certificate_export_x509_cas: ADDED
156 gnutls_certificate_export_x509_crls: ADDED
157 gnutls_certificate_export_openpgp_keyring: ADDED
158 gnutls_openpgp_keyid_t: ADDED, instead of hard-coded 'unsigned char[8]'.
159 gnutls_openpgp_crt_get_key_id: ADDED, obsoletes gnutls_openpgp_crt_get_id.
160 gnutls_openpgp_crt_get_revoked_status: ADDED
161 gnutls_openpgp_crt_get_subkey_count: ADDED
162 gnutls_openpgp_crt_get_subkey_idx: ADDED
163 gnutls_openpgp_crt_get_subkey_revoked_status: ADDED
164 gnutls_openpgp_crt_get_subkey_pk_algorithm: ADDED
165 gnutls_openpgp_crt_get_subkey_creation_time: ADDED
166 gnutls_openpgp_crt_get_subkey_expiration_time: ADDED
167 gnutls_openpgp_crt_get_subkey_id: ADDED
168 gnutls_openpgp_crt_get_subkey_usage: ADDED
169 gnutls_openpgp_privkey_get_fingerprint: ADDED
170 gnutls_openpgp_privkey_get_key_id: ADDED
171 gnutls_openpgp_privkey_get_subkey_count: ADDED
172 gnutls_openpgp_privkey_get_subkey_idx: ADDED
173 gnutls_openpgp_privkey_get_subkey_revoked_status: ADDED
174 gnutls_openpgp_privkey_get_revoked_status: ADDED
175 gnutls_openpgp_privkey_get_subkey_pk_algorithm: ADDED
176 gnutls_openpgp_privkey_get_subkey_expiration_time: ADDED
177 gnutls_openpgp_privkey_get_subkey_id: ADDED
178 gnutls_openpgp_privkey_get_subkey_creation_time: ADDED
179 gnutls_openpgp_crt_get_subkey_pk_dsa_raw: ADDED
180 gnutls_openpgp_crt_get_subkey_pk_rsa_raw: ADDED
181 gnutls_openpgp_crt_get_pk_dsa_raw: ADDED
182 gnutls_openpgp_crt_get_pk_rsa_raw: ADDED
183 gnutls_openpgp_privkey_export_subkey_dsa_raw: ADDED
184 gnutls_openpgp_privkey_export_subkey_rsa_raw: ADDED
185 gnutls_openpgp_privkey_export_dsa_raw: ADDED
186 gnutls_openpgp_privkey_export_rsa_raw: ADDED
187 gnutls_openpgp_privkey_export: ADDED
188 gnutls_certificate_set_openpgp_key_file2: ADDED
189 gnutls_certificate_set_openpgp_key_mem2: ADDED
190 gnutls_x509_dn_init: ADDED
191 gnutls_x509_dn_import: ADDED
192 gnutls_x509_dn_deinit: ADDED
193 GNUTLS_E_OPENPGP_SUBKEY_ERROR: ADDED
194 gnutls_hex2bin: ADDED
195 GNUTLS_CRT_PRINT_FULL: ADDED, same as old GNUTLS_X509_CRT_FULL.
196 GNUTLS_CRT_PRINT_ONELINE: ADDED, same as old GNUTLS_X509_CRT_ONELINE.
197 GNUTLS_CRT_PRINT_UNSIGNED_FULL: ADDED, same as
198                                 old GNUTLS_X509_CRT_UNSIGNED_FULL.
200 * Version 2.3.0 (released 2008-01-08)
202 ** LZO compression is now disabled by default.
203 The reason is that LZO compression is not standardized in TLS.  If you
204 wish to experiment with it, you will have to supply --with-lzo when
205 invoking ./configure.  The internal copy of minilzo is no longer
206 included with GnuTLS, so you will need to install liblzo or liblzo2 on
207 your system to have --with-lzo to be effective.
209 ** More than one server name field is now sent to the server properly.
210 Thanks to mark.phillips@virgin.net.
212 ** Fixes the post_client_hello_function(). The extensions are now parsed
213 in a callback friendly way.
215 ** Fix for certificate selection in servers with certificate callbacks.
217 ** Updated translations.
219 ** Update gnulib files.
221 ** API and ABI modifications:
222 No changes since last version.
224 * Version 2.2.2 (released 2008-02-21)
226 ** Cipher priority string handling now handle strings that starts with NULL.
227 Thanks to Laurence Withers <l@lwithers.me.uk>.
229 ** Corrected memory leaks in session resuming and DHE ciphersuites. Reported
230 by Daniel Stenberg.
232 ** Increased the default certificate verification chain limits and allowed
233 for checks without limitation.
235 ** Corrected the behaviour of gnutls_x509_crt_get_subject_alt_name()
236 and gnutls_x509_crt_get_subject_alt_name() to not null terminate binary
237 strings and return the proper size.
239 ** API and ABI modifications:
240 No changes since last version.
242 * Version 2.2.1 (released 2008-01-17)
244 ** Prevent linking libextra against previously installed libgnutls.
245 Tiny patch from "Alon Bar-Lev" <alon.barlev@gmail.com>, see
246 <http://bugs.gentoo.org/show_bug.cgi?id=202269>.
248 ** Fixes the post_client_hello_function(). The extensions are now parsed
249 in a callback friendly way.
251 ** Fix for certificate selection in servers with certificate callbacks.
253 ** API and ABI modifications:
254 No changes since last version.
256 * Version 2.2.0 (released 2007-12-14)
258 ** Update internal copy of libtasn1 to version 1.2.
260 ** Certtool --verify-chain now handle inputs larger than 64kb.
261 This fixes the self-test "rsa-md5-collision" under MinGW+Wine with
262 recent versions of libgcrypt.  The problem was that Wine with the
263 libgcrypt RNG generates huge amounts of debugging output.
265 ** Translation updates.
266 Added Dutch translation.  Updated Polish and Swedish translation.
268 ** Major changes compared to the v2.0 branch:
270 *** SRP support aligned with newly published RFC 5054.
272 *** OpenPGP support aligned with newly published RFC 5081.
274 *** Support for DSA2 keys.
276 *** Support for Camellia cipher.
278 *** Support for Opaque PRF Input extension.
280 *** PKCS#8 parser now handle DSA keys.
282 *** Change from GPLv2 to GPLv3 for command-line tools, libgnutls-extra, etc.
283 Notice that liblzo2 2.02 is licensed under GPLv2 only.  Earlier
284 versions, such as 2.01 which is included with GnuTLS, is available
285 under GPLv2 or later.  If this incompatibility causes problems, we
286 recommend you to disable LZO using --without-lzo.  LZO compression is
287 not a standard TLS compression algorithm, so the impact should be
288 minimal.
290 *** Functions for disabling record protocol padding.
291 Works around bugs on Nokia/Ericsson phones.
293 *** New functions gnutls_priority_set() for setting cipher priorities easily.
294 Priorities like "COMPAT" also enables other work arounds, such as
295 disabling padding.
297 *** Other minor improvements and bug fixes.
299 ** Backwards incompatible API/ABI changes in GnuTLS 2.2
300 To adapt to changes in the TLS extension specifications for OpenPGP
301 and SRP, the GnuTLS API had to be modified.  This means breaking the
302 API and ABI backwards compatibility.  That is something we try to
303 avoid unless it is necessary.  We decided to also remove the already
304 deprecated stub functions for X.509 to XML conversion and TLS
305 authorization (see below) when we had the opportunity.
307 Generally, most applications does not need to be modified.  Just
308 re-compile them against the latest GnuTLS release, and it should work
309 fine.
311 Applications that use the OpenPGP or SRP features needs to be
312 modified.  Below is a list of the modified APIs and discussion of what
313 the minimal things you need to modify in your application to make it
314 work with GnuTLS 2.2.
316 Note that GnuTLS 2.2 also introduces new APIs -- such as
317 gnutls_set_priority() that is superior to
318 gnutls_set_default_priority() -- that you may want to start using.
319 However, using those new APIs is not required to use GnuTLS 2.2 since
320 the old functions continue are still supported.  This text only
321 discuss what you minimally have to modify.
323 *** XML related changes
324 The function `gnutls_x509_crt_to_xml' has been removed.  It has been
325 deprecated and only returned an error code since GnuTLS version
326 1.2.11.  Nobody has complained, so users doesn't seem to miss the
327 functionality.  We don't know of any other library to convert X.509
328 certificates into XML format, but we decided (long ago) that GnuTLS
329 isn't the right place for this kind of functionality.  If you want
330 help to find some other library to use here, please explain and
331 discuss your use case on help-gnutls@gnu.org.
333 *** TLS Authorization related changes
334 Everything related to TLS authorizations have been removed, they were
335 only stub functions that returned an error code:
337  GNUTLS_SUPPLEMENTAL_AUTHZ_DATA
338  gnutls_authz_data_format_type_t
339  gnutls_authz_recv_callback_func
340  gnutls_authz_send_callback_func
341  gnutls_authz_enable
342  gnutls_authz_send_x509_attr_cert
343  gnutls_authz_send_saml_assertion
344  gnutls_authz_send_x509_attr_cert_url
345  gnutls_authz_send_saml_assertion_url
347 *** SRP related changes
348 The callback gnutls_srp_client_credentials_function has a new
349 prototype, and its semantic has changed.  You need to rewrite the
350 callback, see the updated function documentation and SRP example code
351 (doc/examples/ex-client-srp.c and doc/examples/ex-serv-srp.c) for more
352 information.
354 The alert codes GNUTLS_A_MISSING_SRP_USERNAME and
355 GNUTLS_A_UNKNOWN_SRP_USERNAME are no longer used by the SRP
356 specification, instead the GNUTLS_A_UNKNOWN_PSK_IDENTITY alert is
357 used.  There are #define's to map the old names to the new.  You may
358 run into problems if you have a switch-case with cases for both SRP
359 alerts, since they are now mapped to the same value.  The solution is
360 to drop the SRP alerts from such switch cases, as they are now
361 deprecated in favor of GNUTLS_A_UNKNOWN_PSK_IDENTITY.
363 *** OpenPGP related changes
364 The function `gnutls_certificate_set_openpgp_keyserver' have been
365 removed.  There is no replacement functionality inside GnuTLS.  If you
366 need keyserver functionality, consider using the GnuPG tools.
368 All functions, types, and error codes related to OpenPGP trustdb
369 format have been removed.  The trustdb format is a non-standard
370 GnuPG-specific format, and we recommend you to use key rings instead.
371 The following have been removed:
373  gnutls_certificate_set_openpgp_trustdb
374  gnutls_openpgp_trustdb_init
375  gnutls_openpgp_trustdb_deinit
376  gnutls_openpgp_trustdb_import
377  gnutls_openpgp_key_verify_trustdb
378  gnutls_openpgp_trustdb_t
379  GNUTLS_E_OPENPGP_TRUSTDB_VERSION_UNSUPPORTED
381 The following functions has an added parameter of the (new) type
382 `gnutls_openpgp_crt_fmt_t'.  The type specify the format of the data
383 (binary or base64).  The functions are:
384  gnutls_certificate_set_openpgp_key_file
385  gnutls_certificate_set_openpgp_key_mem
386  gnutls_certificate_set_openpgp_keyring_mem
387  gnutls_certificate_set_openpgp_keyring_file
389 To improve terminology and align with the X.509 interface, some
390 functions have been renamed.  Compatibility mappings exists.  The old
391 and new names of the affected functions and types are:
393         Old name                                New name
394  gnutls_openpgp_key_t                    gnutls_openpgp_crt_t
395  gnutls_openpgp_key_fmt_t                gnutls_openpgp_crt_fmt_t
396  gnutls_openpgp_key_status_t             gnutls_openpgp_crt_status_t
397  GNUTLS_OPENPGP_KEY                      GNUTLS_OPENPGP_CERT
398  GNUTLS_OPENPGP_KEY_FINGERPRINT          GNUTLS_OPENPGP_CERT_FINGERPRINT
399  gnutls_openpgp_key_init                 gnutls_openpgp_crt_init
400  gnutls_openpgp_key_deinit               gnutls_openpgp_crt_deinit
401  gnutls_openpgp_key_import               gnutls_openpgp_crt_import
402  gnutls_openpgp_key_export               gnutls_openpgp_crt_export
403  gnutls_openpgp_key_get_key_usage        gnutls_openpgp_crt_get_key_usage
404  gnutls_openpgp_key_get_fingerprint      gnutls_openpgp_crt_get_fingerprint
405  gnutls_openpgp_key_get_pk_algorithm     gnutls_openpgp_crt_get_pk_algorithm
406  gnutls_openpgp_key_get_name             gnutls_openpgp_crt_get_name
407  gnutls_openpgp_key_get_version          gnutls_openpgp_crt_get_version
408  gnutls_openpgp_key_get_creation_time    gnutls_openpgp_crt_get_creation_time
409  gnutls_openpgp_key_get_expiration_time  gnutls_openpgp_crt_get_expiration_time
410  gnutls_openpgp_key_get_id               gnutls_openpgp_crt_get_id
411  gnutls_openpgp_key_check_hostname       gnutls_openpgp_crt_check_hostname
412  gnutls_openpgp_send_key                 gnutls_openpgp_send_cert
414 ** API and ABI modifications:
415 No changes since last version.
417 * Version 2.1.8 (released 2007-12-10)
419 ** The GPL version has been changed from version 2 to version 3.
420 This affects the self-tests, command-line tools, the libgnutls-extra
421 library, the relevant guile parts, and the build environment.
423 ** Added gnutls_x509_crt_get_subject_alt_name2().
425 ** Corrected a segfault when setting an empty gnutls_priority_t
426 at gnutls_priority_set().
428 ** Use gettext 0.17 which updates m4/lib-*.m4 macros.
429 Fixes a problem with spurious -L/usr/lib additions.
431 ** API and ABI modifications:
432 gnutls_x509_crt_get_subject_alt_name2: ADD.
434 * Version 2.1.7 (released 2007-11-29)
436 ** PKCS #8 parser can now encode/decode DSA keys.
438 ** Updated gnutls_set_default_priority2() now renamed to
439 gnutls_priority_set() and gnutls_priority_set_direct() which
440 accept a string to indicate preferences of ciphersuite parameters.
442 ** gnutls-cli and gnutls-serv now have a --priority option to set
443 the priority string.
445 ** The gnutls_*_convert_priority() functions were deprecated by
446 the gnutls_priority_set() and gnutls_priority_set_direct().
448 ** Internal copy of OpenCDK upgraded to version 0.6.6.
450 ** API and ABI modifications:
451 gnutls_priority_init: ADD.
452 gnutls_priority_deinit: ADD.
453 gnutls_priority_set: ADD.
454 gnutls_priority_set_direct: ADD.
455 gnutls_set_default_priority2: RENAMED to gnutls_priority_set_direct()
456 gnutls_mac_convert_priority: REMOVED
457 gnutls_compression_convert_priority: REMOVED
458 gnutls_protocol_convert_priority: REMOVED
459 gnutls_kx_convert_priority: REMOVED
460 gnutls_cipher_convert_priority: REMOVED
461 gnutls_certificate_type_convert_priority: REMOVED
462 gnutls_set_default_priority: UNDEPRECATED
463 gnutls_set_default_priority_export: UNDEPRECATED
465 ** Undocumented API and ABI modifications earlier in the 2.1.x series:
466 GNUTLS_CIPHER_UNKNOWN: ADD.
467 GNUTLS_CIPHER_CAMELLIA_128_CBC: ADD.
468 GNUTLS_CIPHER_CAMELLIA_256_CBC: ADD.
469 GNUTLS_KX_UNKNOWN: ADD.
470 GNUTLS_COMP_UNKNOWN: ADD.
471 GNUTLS_CRT_UNKNOWN: ADD.
472 gnutls_mac_get_id: ADD.
473 gnutls_compression_get_id: ADD.
474 gnutls_cipher_get_id: ADD.
475 gnutls_kx_get_id: ADD.
476 gnutls_protocol_get_id: ADD.
477 gnutls_certificate_type_get_id: ADD.
478 gnutls_handshake_post_client_hello_func: ADD.
479 gnutls_certificate_send_x509_rdn_sequence: ADD prototype to gnutls.h.in.
481 * Version 2.1.6 (released 2007-11-15)
483 ** Corrected bug in decompression of expanded compression data.
485 ** Added the --to-p8 option to certtool to convert private keys
486 to PKCS #8 keys.
488 ** Introduced the GNUTLS_E_BASE64_UNEXPECTED_HEADER_ERROR error code.
490 ** gnutls_certificate_set_x509_key_* can now read PKCS #8 unencrypted
491 private keys.
493 ** Fixed GNUTLS_E_UNKNOWN_ALGORITHM vs GNUTLS_E_UNKNOWN_HASH_ALGORITHM.
494 During the 2.1.x series the GNUTLS_E_UNKNOWN_HASH_ALGORITHM error code
495 was renamed to GNUTLS_E_UNKNOWN_ALGORITHM, unfortunately without being
496 documented.  This caused some problems (e.g., debian #450854).  To
497 avoid backwards compatibility problems, this release revert this
498 change, so that GNUTLS_E_UNKNOWN_HASH_ALGORITHM works just like it has
499 done in GnuTLS 2.0.x and earlier, and add a new error code
500 GNUTLS_E_UNKNOWN_ALGORITHM.
502 ** Fixes several gtk-doc warnings.
504 ** API and ABI modifications:
505 GNUTLS_E_UNKNOWN_ALGORITHM: CHANGED.
506 GNUTLS_E_UNKNOWN_HASH_ALGORITHM: CHANGED.
507 GNUTLS_E_BASE64_UNEXPECTED_HEADER_ERROR: ADD.
509 * Version 2.1.5 (released 2007-11-01)
511 ** Fix PKCS#3 parameter export problem.
513 ** Improve certtool queries, they now print the default value.
515 ** Fix ABI version.
517 ** Update gnulib files.
519 ** API and ABI modifications:
520 No changes since last version.
522 * Version 2.1.4 (released 2007-10-27)
524 ** Added the --v1 option to certtool, to allow generating X.509
525 version 1 certificates. 
527 ** certtool: Add option --disable-quick-random to enable the old behaviour
528 of using /dev/random to generate keys.
530 ** Added priority functions that accept strings.
532 ** Added gnutls_set_default_priority2() which accepts a flag to indicate
533 priorities preferences.
535 ** Added gnutls_record_disable_padding() to allow servers talking to 
536 buggy clients that complain if the TLS 1.0 record protocol padding is
537 used.
539 ** Introduced gnutls_session_enable_compatibility_mode() to allow enabling
540 all supported compatibility options (like disabling padding).
542 ** The gnutls_certificate_set_openpgp_* functions were modified to include
543 the format. This makes the interface consistent with the x509 functions.
545 ** Internal copy of OpenCDK upgraded to version 0.6.5.
547 ** Update gnulib files.
549 ** API and ABI modifications:
550 gnutls_certificate_set_openpgp_key_mem: MODIFIED
551 gnutls_certificate_set_openpgp_key_file: MODIFIED
552 gnutls_certificate_set_openpgp_keyring_mem: MODIFIED
553 gnutls_certificate_set_openpgp_keyring_file: MODIFIED
554 gnutls_set_default_priority: DEPRECATED
555 gnutls_set_default_priority_export: DEPRECATED
556 gnutls_set_default_priority2: ADDED
557 gnutls_session_enable_compatibility_mode: ADDED
558 gnutls_record_disable_padding: ADDED
559 gnutls_mac_convert_priority: ADDED
560 gnutls_compression_convert_priority: ADDED
561 gnutls_protocol_convert_priority: ADDED
562 gnutls_kx_convert_priority: ADDED
563 gnutls_cipher_convert_priority: ADDED
564 gnutls_certificate_type_convert_priority: ADDED
565 gnutls_openpgp_key_t: RENAMED to gnutls_openpgp_crt_t
566 gnutls_openpgp_key_status_t: RENAMED to gnutls_openpgp_crt_status_t
567 gnutls_openpgp_send_key: RENAMED to gnutls_openpgp_send_cert
568 gnutls_openpgp_key_init: RENAMED to gnutls_openpgp_crt_init
569 gnutls_openpgp_key_import: RENAMED to gnutls_openpgp_crt_import
570 gnutls_openpgp_key_export: RENAMED to gnutls_openpgp_crt_export
571 gnutls_openpgp_key_check_hostname: RENAMED to gnutls_openpgp_crt_check_hostname
572 gnutls_openpgp_key_get_creation_time: RENAMED to gnutls_openpgp_crt_get_creation_time
573 gnutls_openpgp_key_get_expiration_time: RENAMED to gnutls_openpgp_crt_get_expiration_time
574 gnutls_openpgp_key_get_fingerprint: RENAMED to gnutls_openpgp_crt_get_fingerprint
575 gnutls_openpgp_key_get_version: RENAMED to gnutls_openpgp_crt_get_version
576 gnutls_openpgp_key_get_pk_algorithm: RENAMED to gnutls_openpgp_crt_get_pk_algorithm
577 gnutls_openpgp_key_get_name: RENAMED to gnutls_openpgp_crt_get_name
578 gnutls_openpgp_key_deinit: RENAMED to gnutls_openpgp_crt_deinit
579 gnutls_openpgp_key_get_id: RENAMED to gnutls_openpgp_crt_get_id
580 gnutls_openpgp_key_get_key_usage: RENAMED to gnutls_openpgp_crt_get_key_usage
581 gnutls_openpgp_key_verify_ring: RENAMED to gnutls_openpgp_crt_verify_ring
582 gnutls_openpgp_key_verify_self: RENAMED to gnutls_openpgp_crt_verify_self
584 * Version 2.1.3 (released 2007-10-17)
586 ** TLS authorization support removed.
587 This technique may be patented in the future, and it is not of crucial
588 importance for the Internet community.  After deliberation we have
589 concluded that the best thing we can do in this situation is to
590 encourage society not to adopt this technique.  We have decided to
591 lead the way with our own actions.
593 ** Re-enabled the 256 bit ciphers in the default priorities.
595 ** Corrected bugs in openpgp key verification using a keyring (both in
596 gnutls and opencdk)
598 ** API and ABI modifications:
599 gnutls_certificate_set_openpgp_keyserver: REMOVED
600 gnutls_authz_data_format_type_t,
601 gnutls_authz_recv_callback_func,
602 gnutls_authz_send_callback_func,
603 gnutls_authz_enable,
604 gnutls_authz_send_x509_attr_cert,
605 gnutls_authz_send_saml_assertion,
606 gnutls_authz_send_x509_attr_cert_url,
607 gnutls_authz_send_saml_assertion_url: REMOVED.
608 GNUTLS_SUPPLEMENTAL_USER_MAPPING_DATA: ADDED.  To avoid that the
609     gnutls_supplemental_data_format_type_t enum type becomes empty.
611 * Version 2.1.2 (released 2007-10-14)
613 ** Removed all the trustdb code from openpgp authentication.
614 We now use only the well-specified keyrings.
616 ** The 256 bit ciphers are not enabled in the default priorities.
618 ** Added support for DSA2 using libgcrypt 1.3.0.
620 ** certtool: Fixed data corruption when using --outder.
622 ** Removed all the xml related stubs and functions.
624 ** Added capability to set a callback after the client hello is received
625 by the server in order to adjust parameters before the handshake.
627 ** SRP was corrected to adhere to the latest draft (published soon as RFC)
629 ** Corrected bug which did not allow a server to run without supporting
630 certificates.
632 ** Updated the DN parser which now prints wrongly decoded values as hex
633 strings.
635 ** certtool: Add option --quick-random.
636 For generating low security test credentials.
638 ** API and ABI modifications:
639 gnutls_x509_crt_to_xml: REMOVED
640 gnutls_openpgp_key_to_xml: REMOVED
641 gnutls_openpgp_key_verify_trustdb: REMOVED
642 gnutls_openpgp_trustdb_init: REMOVED
643 gnutls_openpgp_trustdb_deinit: REMOVED
644 gnutls_openpgp_trustdb_import: REMOVED
645 gnutls_certificate_set_openpgp_trustdb: REMOVED
646 gnutls_srp_client_credentials_function: CHANGED
647 gnutls_handshake_set_post_client_hello_function: ADDED
648 gnutls_mac_get_key_size: ADDED
649 GNUTLS_E_OPENPGP_TRUSTDB_VERSION_UNSUPPORTED: DEPRECATED.
650 GNUTLS_A_MISSING_SRP_USERNAME: DEPRECATED
651 GNUTLS_A_UNKNOWN_SRP_USERNAME: DEPRECATED
653 * Version 2.1.1 (released 2007-09-24)
655 ** Added support for Camellia cipher, thanks to Yoshisato YANAGISAWA.
656 Camellia is only enabled in GnuTLS if the installed libgcrypt has been
657 compiled with Camellia support.  See the libgcrypt documentation on
658 how to enable it.  Unconditionally disable it using the configure
659 option --disable-camellia.  Fixes #1.
661 ** Properly document in the NEWS file the API change in the last release.
663 ** API and ABI modifications:
664 No changes since last version.
666 * Version 2.1.0 (released 2007-09-20)
668 ** Support for draft-rescorla-tls-opaque-prf-input-00.txt.
669 The support is disabled by default.  Since no value has been allocated
670 by the IANA for this extension yet, you will need to provide one
671 yourself by invoking './configure --enable-opaque-prf-input=42'.
672 Fixes #2.
674 ** Example code: Fix compilation flaw under MinGW.
676 ** API and ABI modifications:
677 gnutls_oprfi_callback_func: ADD, new typedef function prototype.
678 gnutls_oprfi_enable_client: ADD, new function.
679 gnutls_oprfi_enable_server: ADD, new function.
681 * Version 2.0.4 (released 2007-11-16)
683 ** Corrected bug in decompression of expanded compression data.           
685 ** API and ABI modifications:
686 No changes since last version.
688 * Version 2.0.3 (released 2007-11-10)
690 ** This version backports several fixes from the 2.1.x branch.
692 ** Fixed PKCS #3 parameter export.
694 ** Added gnutls_record_disable_padding() to allow servers talking to
695 buggy clients that complain if the TLS 1.0 record protocol padding is
696 used.
698 ** Introduced gnutls_session_enable_compatibility_mode() to allow enabling
699 all supported compatibility options (like disabling padding).
701 ** Corrected bug which did not allow a server to run without supporting
702 certificates.
704 ** API and ABI modifications:
705 gnutls_session_enable_compatibility_mode: ADDED
706 gnutls_record_disable_padding: ADDED
708 * Version 2.0.2 (released 2007-10-17)
710 ** TLS authorization support removed.
711 This technique may be patented in the future, and it is not of crucial
712 importance for the Internet community.  After deliberation we have
713 concluded that the best thing we can do in this situation is to
714 encourage society not to adopt this technique.  We have decided to
715 lead the way with our own actions.
717 ** certtool: Fixed data corruption when using --outder.
719 ** Fix configure-time Guile detection.
721 ** API and ABI modifications:
722 GNUTLS_SUPPLEMENTAL_USER_MAPPING_DATA: ADDED.  To avoid that the
723     gnutls_supplemental_data_format_type_t enum type becomes empty.
725 * Version 2.0.1 (released 2007-09-20)
727 ** New directory doc/credentials/ with test credentials.
728 This collects the test credentials from the web page and from src/.
729 The script gnutls-http-serv has also been moved to that directory.
731 ** Update SRP extension type and cipher suite with official IANA values.
732 This breaks backwards compatibility with SRP in older versions of
733 GnuTLS, but this is intentional to speed up the adoption of the
734 official values.  The old values we used were incorrect.
736 ** Guile: Fix `x509-certificate-dn-oid'
738 ** API and ABI modifications:
739 No changes since last version.
741 * Version 2.0.0 (released 2007-09-04)
743 ** Included copy of Libtasn1 upgraded to version 1.1.
745 ** Disable building of some examples if anonymous ciphers are disabled.
747 ** Don't build examples for disabled features.
749 ** API and ABI modifications:
750 No changes since last version.
752 * Version 1.7.19 (released 2007-08-27)
754 ** Fix gnutls_error_is_fatal so that positive "errors" are non-critical.
755 This solves connection problems in mutt, see
756 <http://bugs.debian.org/439640>.
758 ** Update gnulib files.
759 In particular, the getpass module -- with its dependencies on getline,
760 getdelim, fseeko etc -- where moved from the lgl/ (used by the core
761 library) directory to the gl/ directory (only used by the command line
762 tools).  The reason is that getpass is now only used by the
763 command-line tools, and reducing the number of gnulib modules linked
764 to the core library helps portability and reduces size.
766 ** Fix warnings.
768 ** Disable building of PGP examples if PGP is disabled.
770 ** Included copy of OpenCDK upgraded to version 0.6.4.
772 ** API and ABI modifications:
773 No changes since last version.
775 * Version 1.7.18 (released 2007-08-16)
777 ** Install images for the info manual.
778 This has a side effect of renaming the images.  See
779 <http://thread.gmane.org/gmane.comp.tex.texinfo.bugs/3533> for
780 discussions on the approach chosen.
782 ** Fix pointer mix to variables of different size.
783 Patch extracted from
784 <http://cvs.fedora.redhat.com/viewcvs/devel/gnutls/gnutls-1.6.3-incompat-pointers.patch?rev=1.1&view=auto>.
786 ** Fix warnings during build.
787 Thanks to Andreas Metzler <ametzler@downhill.at.eu.org>.
789 ** API and ABI modifications:
790 No changes since last version.
792 * Version 1.7.17 (released 2007-08-15)
794 ** New functions to perform external signing.
795 Set the signing callback function (of the gnutls_sign_func prototype)
796 using the gnutls_sign_callback_set function.  In the callback, you may
797 find the new functions gnutls_x509_privkey_sign_hash and
798 gnutls_openpgp_privkey_sign_hash useful.  A new function
799 gnutls_sign_callback_get is also added, to retrieve the function
800 pointer.  Thanks to "Alon Bar-Lev" <alon.barlev@gmail.com> for
801 comments and testing.
803 ** New self test of client and server authenticated X.509 TLS sessions.
804 See tests/x509self.c and tests/x509signself.c.  The latter also tests
805 the new external signing callback interface.
807 ** New errors GNUTLS_E_APPLICATION_ERROR_MIN..GNUTLS_E_APPLICATION_ERROR_MAX.
808 These two actually describe the outer limits of a range of error codes
809 reserved to the application.  All of the errors are treated as fatal
810 by the library (it has to since it doesn't know the semantics of the
811 error codes).  This can be useful in callbacks, to signal some
812 application-specific error condition, which will usually eventually
813 cause some gnutls API to return the same error code as the callback,
814 which then can be inspected by the application.  Note that error codes
815 are negative.
817 ** gnutls_set_default_priority now disable TLS 1.2 by default.
818 The RFC is not released yet, and we're approaching a major release so
819 let's not enable it just yet.
821 ** Fix namespace so that gnutls_*_t is used consistently.
822 Before, many places in the GnuTLS code used the old deprecated type
823 names without the '_t' suffix.
825 ** Build fixes for Guile code.
826 Patch from Ludovic Courtes <ludovic.courtes@laas.fr>.
828 ** More documentation fixes.
829 In particular, the section headings were modified for casing.  By
830 Ludovic Courtes <ludovic.courtes@laas.fr>.
832 ** Updated Polish and Swedish translations.
833 Thanks to Jakub Bogusz <qboosh@pld-linux.org> and Daniel Nylander
834 <po@danielnylander.se>.
836 ** API and ABI modifications:
837 gnutls_sign_func: ADD, new type for sign callback.
838 gnutls_sign_callback_set: ADD, new function to set sign callback.
839 gnutls_sign_callback_get: ADD, new function to retrieve sign callback.
840 gnutls_x509_privkey_sign_hash,
841 gnutls_openpgp_privkey_sign_hash: ADD, new functions useful in sign callback.
842 GNUTLS_E_APPLICATION_ERROR_MIN,
843 GNUTLS_E_APPLICATION_ERROR_MAX: ADD, new CPP #defines for error codes.
845 * Version 1.7.16 (released 2007-08-07)
847 ** Fix sanity checks and return values in certificate selection.
848 In some cases, GnuTLS omitted to report suitable error codes when no
849 suitable certificate was found.
851 ** Fix gnutls-cli starttls EOF on Mac OS X.
852 Thanks to Hal Eden <n.mavrogiannopoulos@gmail.com>.
854 ** Documentation fixes.
855 In particular, the section headings were modified for casing.  By
856 Ludovic Courtes <ludovic.courtes@laas.fr>.
858 ** Update gnulib files.
860 ** API and ABI modifications:
861 No changes since last version.
863 * Version 1.7.15 (released 2007-07-02)
865 ** Fix self-tests key-id under mingw32.
867 ** Test that the Guile header files are recent enough to work.
868 Before we just tested that the command line tool 'guile' was recent
869 enough, which may not be sufficient if you still have an old
870 libguile.h header installed.
872 ** Guile bindings are now installed under $prefix by default.
873 Use --without-guile-site-dir to install it under $pkgdatadir/site/
874 where $pkgdatadir is as returned by "guile-config info pkgdatadir".
875 Use --with-guile-site-dir=/your/own/path to specify the path manually.
876 The default, --with-guile-site-dir, will install the Guile bindings
877 under $datadir/guile/site.  There is a new section 'Guile
878 Preparations' in the manual that discuss these issues.
880 ** Fix run-time library path ordering in linking the Guile bindings.
882 ** Improved manual on downloading, installing, getting help, bug reports etc.
883 Suggested by Ludovic Courtès <ludovic.courtes@laas.fr>.
885 ** Add Malay message translations.
886 Thanks to Sharuzzaman Ahmat Raslan <sharuzzaman@myrealbox.com>.
888 ** API and ABI modifications:
889 No changes since last version.
891 * Version 1.7.14 (released 2007-06-26)
893 ** Don't enable Guile bindings unless we have Guile 1.8 or later.
894 Patch from Ludovic Courtès <ludovic.courtes@laas.fr>.
896 ** Fix memory leak during DSA signature verification.
897 Patch from Ludovic Courtès <ludovic.courtes@laas.fr>.
899 ** Fix crash in gnutls-cli when TLS handshake fails.
900 Reported by Marc Haber <mh+debian-bugs@zugschlus.de> and Andreas
901 Metzler <ametzler@downhill.at.eu.org> via Debian BTS #429183, see
902 <http://bugs.debian.org/429183>.
904 ** Minor OpenPGP fixes in stream_to_datum.
905 Patch from Timo Schulz <twoaday@freakmail.de> and Ludovic Courtès
906 <ludovic.courtes@laas.fr>.
908 ** Fix off-by-one in TLS 1.2 handshake.
909 Patch from Ludovic Courtès <ludovic.courtes@laas.fr>.
911 ** Minor Guile binding self-test cleanup.
912 Patch from Ludovic Courtès <ludovic.courtes@laas.fr>.
914 ** Update gnulib files.
916 ** API and ABI modifications:
917 No changes since last version.
919 * Version 1.7.13 (released 2007-06-11)
921 ** OpenCDK copy updated to version 0.6.3.
923 ** Build fixes for GnuTLS Guile bindings.
924 Patch from Ludovic Courtès <ludovic.courtes@laas.fr>.
926 ** Build fix for GTK-DOC manual.
928 ** Update gnulib files.
930 ** API and ABI modifications:
931 No changes since last version.
933 * Version 1.7.12 (released 2007-06-08)
935 ** Guile bindings for GnuTLS have been included.
936 Contributed by Ludovic Courtès <ludovic.courtes@laas.fr>.  There is a
937 new chapter 'Guile Bindings' in the manual.
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 mem leaks.
949 Reported by Dennis Vshivkov <walrus@amur.ru>, see
950 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=333050>.  Added
951 self-test tests/parse_ca.c to test regressions.
953 ** Fix build failures related to missing images in manual.
954 Reported by Andreas Metzler <ametzler@downhill.at.eu.org>.
956 ** Update gnulib files.
958 ** API and ABI modifications:
959 No changes since last version.
961 * Version 1.7.11 (released 2007-05-26)
963 ** Include opencdk.h in the release.
964 Reported by Roman Bogorodskiy <novel@FreeBSD.org>.
966 ** API and ABI modifications:
967 No changes since last version.
969 * Version 1.7.10 (released 2007-05-25)
971 ** New API functions to extract DER encoded X.509 Subject/Issuer DN.
972 Suggested by Nate Nielsen <nielsen-list@memberwebs.com>.
974 ** Update of gnulib files.
976 ** GnuTLS is now developed in GIT instead of CVS.
977 See <http://repo.or.cz/w/gnutls.git> for a public repository.
979 ** API and ABI modifications:
980 gnutls_x509_crt_get_raw_issuer_dn: ADD.
981 gnutls_x509_crt_get_raw_dn: ADD.
983 * Version 1.7.9 (released 2007-05-12)
985 ** X.509 certificates are preferred over OpenPGP keys.
986 This is a change in the semantics of gnutls_set_default_priority.
988 ** The included copy of OpenCDK has been updated to 0.6.1.
989 There has been some API changes in OpenCDK, and the GnuTLS layer have
990 been modified as well.  Note that while there are API/ABI incompatible
991 changes in OpenCDK, this does not influence GnuTLS's API/ABI because
992 its API/ABI have not changed.  From this version on, GnuTLS requires
993 OpenCDK 0.6.0 or later.
995 ** Fix build failure caused by missing doc/gnutls-logo.pdf.
997 ** Change certtool's default serial number from 0 to a time-based value.
999 ** Fix X.509 signing with RSA-PKCS#1 to set a NULL parameters fields.
1000 Before, we remove the parameters field, which resulted in a slightly
1001 different DER encoding which in turn caused signature verification
1002 failures of GnuTLS-generated RSA certificates in some other
1003 implementations (e.g., GnuPG 2.x's gpgsm).  Depending on which RFCs
1004 you read, this may or may not be correct, but our new behaviour appear
1005 to be consistent with other widely used implementations.
1007 ** Fix mem leaks in gnutls_x509_crt_print.
1009 ** API and ABI modifications:
1010 No changes since last version.
1012 * Version 1.7.8 (released 2007-04-16)
1014 ** Added examples for the authorization extension.
1015 See doc/examples/ex-client-authz.c and doc/examples/ex-serv-authz.c.
1017 ** The examples only use gnutls_set_default_priority().
1018 The exception is when DH_ANON is needed.
1020 ** Improve gnutls_set_default_priority() priorities.
1021 The new approach is for it to try and negotiate all secure and
1022 standard mechanisms available.  Currently, DH_ANON ciphersuites and
1023 LZO compressions are not enabled by default, because they are,
1024 respectively, insecure and non-standardized.  Note that TLS 1.2 will
1025 not be enabled by default in non-experimental release until it has
1026 been approved by the IETF.
1028 ** gnutls-cli and gnutls-serv now uses the library's default priorities.
1029 This means that to get DH_ANON and LZO compression, you'll need to
1030 specify that manually using '--kx anon' or '--comp lzo'.
1032 ** Minor fixes to the human display format of X.509 certificates.
1034 ** New APIs to extract Distinguished Name's from X.509 certificates.
1035 Based on patch from Howard Chu <hyc@symas.com>.
1037 ** Improved library searching for opencdk.
1038 It will now add the appropriate -R or -Wl,-rpath flags as necessary.
1039 The deprecated opencdk.m4 is no longer used.
1041 ** New APIs to list supported algorithms in the library.
1042 The APIs are gnutls_cipher_list, gnutls_mac_list,
1043 gnutls_compression_list, gnutls_protocol_list,
1044 gnutls_certificate_type_list, gnutls_kx_list, and
1045 gnutls_cipher_suite_info.  Suggested by Howard Chu <hyc@symas.com>.
1047 ** The gnutls_x509_crt_get_key_id API now handle non-RSA/DSA keys.
1049 ** New configure option --disable-tls-authorization to disable tls-authz.
1051 ** Fix prototype for `gnutls_psk_set_client_credentials'.
1052 The last parameter was renamed from 'flags' to 'format' and the type
1053 changed from 'unsigned int' to 'gnutls_psk_key_flags' (an enum type),
1054 which shouldn't cause any ABI changes.  Reported by ludo@chbouib.org
1055 (Ludovic Courtès).
1057 ** Fix allocation in gnutls_certificate_set_openpgp_key.
1058 Tiny patch from ludo@chbouib.org (Ludovic Courtès).
1060 ** API and ABI modifications:
1061 gnutls_x509_dn_t: ADD.
1062 gnutls_x509_ava_st: ADD.
1063 gnutls_x509_crt_get_subject,
1064 gnutls_x509_crt_get_issuer: ADD.
1065 gnutls_x509_dn_get_rdn_ava: ADD.
1066 gnutls_cipher_list: ADD.
1067 gnutls_mac_list: ADD.
1068 gnutls_compression_list: ADD.
1069 gnutls_protocol_list: ADD.
1070 gnutls_certificate_type_list: ADD.
1071 gnutls_kx_list: ADD.
1072 gnutls_cipher_suite_info: ADD.
1074 * Version 1.7.7 (released 2007-02-22)
1076 ** Support for supplemental handshake messages and authorization data.
1077 Supplemental data is described in RFC 4680 and the authorization
1078 extensions in draft-housley-tls-authz-extns-07.
1080 ** Support for authorization data in gnutls-cli and gnutls-serv.
1081 New parameters --authz-x509-attr-cert and --authz-saml-assertion.
1083 ** Fix for gnutls_x509_crt_check_hostname.
1084 Before it would have reported that the certificate matched a hostname
1085 when it did not have any dNSName or any CN field.  Report and tiny
1086 patch from "Richard W.M. Jones" <rjones@redhat.com>.
1088 ** New self test for RFC 2818 comparison in gnutls_x509_crt_check_hostname.
1089 Tests regressions of the bug, and several other features.
1091 ** GnuTLS now matches URI's with IP Addresses against iPAddress SAN's.
1092 Before there were no support for iPAddress SAN's during comparison.
1094 ** New API to print information about CRL's.
1095 The function is gnutls_x509_crl_print.
1097 ** New API to extract signature value from CRL's.
1098 The function is gnutls_x509_crl_get_signature.
1100 ** Support for directoryName Subject Alternative Name's.
1101 The gnutls_x509_crt_get_subject_alt_name function returns the DN as a
1102 string in the provided buffer.
1104 ** Internal improvements to certtool.
1105 It uses gnutls_x509_crl_print to print CRL information.  It uses some
1106 more gnulib modules to simplify error handling.
1108 ** API and ABI modifications:
1109 GNUTLS_HANDSHAKE_SUPPLEMENTAL: ADD, new gnutls_handshake_description_t element.
1110 gnutls_supplemental_data_format_type_t: ADD.
1111 gnutls_authz_data_format_type_t: ADD.
1112 gnutls_supplemental_get_name: ADD.
1113 gnutls_authz_recv_callback_func,
1114 gnutls_authz_send_callback_func: ADD, callback prototypes.
1115 gnutls_authz_enable: ADD.
1116 gnutls_authz_send_x509_attr_cert,
1117 gnutls_authz_send_saml_assertion,
1118 gnutls_authz_send_x509_attr_cert_url,
1119 gnutls_authz_send_saml_assertion_url: ADD.
1120 GNUTLS_SAN_DN: ADD, new gnutls_x509_subject_alt_name_t element.
1121 gnutls_x509_crl_print: ADD.
1122 gnutls_x509_crl_get_signature: ADD.
1124 * Version 1.7.6 (released 2007-02-12)
1126 ** Support for 'otherName' Subject Alternative Names.
1127 The existing API gnutls_x509_crt_get_subject_alt_name may now return
1128 the new type GNUTLS_SAN_OTHERNAME together with the otherName value.
1129 To find out the otherName OID (necessary for proper parsing of the
1130 value), use the new API gnutls_x509_crt_get_subject_alt_othername_oid.
1131 For known OIDs, gnutls_x509_crt_get_subject_alt_othername_oid will
1132 return "virtual" SAN values, e.g., GNUTLS_SAN_OTHERNAME_XMPP to
1133 simplify OID matching.  Suggested by Matthias Wimmer <m@tthias.eu>.
1135 ** Certtool can print otherName SAN values for certificates.
1136 For known otherName OIDs (currently only id-on-xmppAddr as defined by
1137 RFC 3920), it will also print the name.
1139 ** Fix TLS 1.2 RSA signing in servers.
1140 Before it used the old-style MD5+SHA1 signature, but the TLS
1141 signatures should be normal PKCS#1 signatures.  FYI, we use and
1142 require that DigestInfo parameters are present and NULL for TLS 1.2.
1144 ** Add APIs to access X.509 extensions sequentially.
1145 The existing APIs gnutls_x509_crt_get_extension_oid() and
1146 gnutls_x509_crt_get_extension_by_oid() does not permit callers to
1147 inspect the extensions in the order defined by the certificate.
1149 ** Add API to extract signature value from X.509 certificates.
1150 The function is gnutls_x509_crt_get_signature.
1152 ** Fix crash when generating proxy certificates in batch mode.
1153 If you don't specify a proxy policy in batch mode, it will use
1154 id-ppl-inheritALL.
1156 ** Add API to print information about X.509 certificates.
1157 The function is gnutls_x509_crt_print.
1159 ** Certtool uses the new API gnutls_x509_crt_print to print certificate info.
1160 One consequence of this is that the output syntax has changed
1161 slightly.  Some more fields are printed.
1163 ** Doc fixes.
1165 ** API and ABI modifications:
1166 gnutls_x509_crt_print: ADD
1167 gnutls_certificate_print_formats_t: ADD, new enum.
1168 gnutls_x509_crt_get_signature: ADD.
1169 gnutls_x509_crt_get_extension_data: ADD.
1170 gnutls_x509_crt_get_extension_info: ADD.
1171 gnutls_x509_crt_get_subject_alt_othername_oid: ADD.
1172 GNUTLS_SAN_OTHERNAME: ADD, new gnutls_x509_subject_alt_name_t element.
1173 GNUTLS_SAN_OTHERNAME_XMPP: ADD, new gnutls_x509_subject_alt_name_t element.
1175 * Version 1.7.5 (released 2007-02-06)
1177 ** Servers won't negotiate SRP RSA/DSS cipher suites if no SRP credential
1178 ** is set.
1180 ** Default behaviour for the gnutls-cli and gnutls-serv tools improved.
1182 ** Fix --list output for gnutls-cli and gnutls-serv.
1183 Mention TLS1.2, SHA512 etc.
1185 ** Manual contains new section on setting up a test HTTP server.
1186 A server set up following those descriptions are available online via
1187 <http://www.gnutls.org/server.html>.
1189 ** Update of gnulib files.
1191 ** API and ABI modifications:
1192 No changes since last version.
1194 * Version 1.7.4 (released 2007-02-05)
1196 ** Support for RSA signing using SHA-256/384/512.
1197 A new self test "sha2" tries to build a long X.509 certificate chain
1198 testing all new hashes.
1200 ** The gnutls-serv tool now use static DH parameters if none are supplied.
1202 ** Discuss proxy certificates in the manual.
1204 ** Improve bibliographical citations in the manual.
1206 ** Update of gnulib files.
1208 ** Fix certtool template handling of pathLenConstraints.
1209 It now defaults to -1 instead of 0, which causes the field to be
1210 missing unless the template specify it.
1212 ** API and ABI modifications:
1213 GNUTLS_MAC_SHA256,
1214 GNUTLS_MAC_SHA384,
1215 GNUTLS_MAC_SHA512: New gnutls_mac_algorithm_t values.
1216 GNUTLS_DIG_SHA256,
1217 GNUTLS_DIG_SHA384,
1218 GNUTLS_DIG_SHA512: New gnutls_digest_algorithm_t values.
1219 GNUTLS_SIGN_RSA_SHA256,
1220 GNUTLS_SIGN_RSA_SHA384,
1221 GNUTLS_SIGN_RSA_SHA512: New gnutls_sign_algorithm_t values.
1223 * Version 1.7.3 (released 2007-02-01)
1225 ** New option to certtool: --generate-proxy.
1226 This will generate a Proxy Certificate from an end entity certificate.
1227 Proxy Certificates are documented in RFC 3820.  You will need to
1228 specify the proxy certificate's private key with --load-privkey, the
1229 user certificate with --load-certificate and the private key used to
1230 sign the new proxy certificate with --load-ca-privkey.  Certtool will
1231 query for proxy path length and the policy language OID.  Currently
1232 only OIDs that have an empty policy are supported (which includes the
1233 two OIDs defined by RFC 3820).
1235 ** Certtool --certificate-info now prints information for Proxy Certificates.
1236 Before the proxy extension was just printed as DER encoded data.
1238 ** New APIs to set proxy subject names and get/set proxy cert extension.
1240 ** Fix parsing of pathLenConstraints in BasicConstraints with missing cA.
1242 ** Added self-test to test for regressions of pathLenConstraint bug.
1243 Incidentally, this also test (some) other regressions or changes in
1244 the output from certtool --certificate-info.
1246 ** When certtool generates CA certificates, pressing enter on the path
1247 ** length constraint query will now remove the field.
1248 Before it set the path length constraint to 0, which is a rather poor
1249 default.
1251 ** Certtool now print times in UTC when printing certificate/CRL info.
1253 ** Add better fix to work around C++ compiler bug on Mac OS X.
1254 Reported and tiny patch provided by Matthias Scheler <tron@NetBSD.org>.
1256 ** Fix import of ASCII armored OpenPGP keys.
1257 Patch by ludovic.courtes@laas.fr (Ludovic Courtès).
1259 ** Update of gnulib files.
1261 ** API and ABI modifications:
1262 gnutls_x509_crt_set_proxy_dn: ADD.
1263 gnutls_x509_crt_set_proxy: ADD.
1264 gnutls_x509_crt_get_proxy: ADD.
1266 * Version 1.7.2 (released 2007-01-14)
1268 ** Certtool now print the value of the pathLenConstraints field for certs.
1270 ** Certtool now query for path length constraints when generating CA certs.
1271 For batch uses, the certtool configuration name is "path_len".
1272 Suggested by Sascha Ziemann <sascha.ziemann@secunet.com>.
1274 ** Add new API to get/set pathLenConstraint in the Basic Constraints.
1275 The new functions gnutls_x509_crt_get_basic_constraints and
1276 gnutls_x509_crt_set_basic_constraints provide a superset of the
1277 functionality in the old gnutls_x509_crt_get_ca_status and
1278 gnutls_x509_crt_set_ca_status (respectively), but the old functions
1279 will continue to be supported.
1281 ** Add new API in OpenCDK to extract public/secret OpenPGP key to S-expr.
1282 The functions are cdk_pubkey_to_sexp and cdk_seckey_to_sexp.  A proper
1283 OpenCDK release with this patch will be made soon, which should bump
1284 the OpenCDK version number.  Patch by Mario Lenz <mario.lenz@gmx.net>.
1286 ** Certtool --to-p12 can now store more than one certificate in the blob.
1287 Before it could only store one certificate, but now it will read and
1288 store as many certificate there are from the --load-certificate file.
1289 Suggested by Sascha Ziemann <sascha.ziemann@secunet.com>.
1291 ** Clean up separation of gnutls and gnutls-extra for OpenPGP.
1292 In particular, the OpenPGP function variables are no longer part of
1293 the exported libgnutls interface, and no header files from
1294 libgnutls-extra (GPL) are needed by libgnutls (LGPL).  The variables
1295 were never intended for non-internal purposes, and thus this does not
1296 imply a change in the external API/ABI.
1298 ** Print URL to gaa when missing, and fix srcdir!=builddir for GAA files.
1299 Reported by ludovic.courtes@laas.fr (Ludovic Courtès).
1301 ** GnuTLS no longer uses -mms-bitfields --enable-runtime-pseudo-reloc.
1302 Before these parameters were set to make GnuTLS build under mingw32,
1303 however, they appear to no longer be necessary.
1305 ** A minor fix to the C++ library to make it build.
1306 Reported by Pavlov Konstantin <thresh@altlinux.ru>.
1308 ** Update of gnulib files.
1310 ** API and ABI modifications:
1311 gnutls_x509_crt_get_basic_constraints: ADD.
1312 gnutls_x509_crt_set_basic_constraints: ADD.
1313 cdk_pubkey_to_sexp: ADD (in opencdk).
1314 cdk_seckey_to_sexp: ADD (in opencdk).
1316 * Version 1.7.1 (released 2006-12-28)
1318 ** TLS 1.2 server side fix.
1319 The Certificate Request sent did not contain the list of supported
1320 hashes field, thus violating the protocol.  It will now contain an
1321 empty list.  Reported by ludovic.courtes@laas.fr (Ludovic Courtès).
1323 ** TLS 1.2 DSA signature verification fix.
1324 Reported by ludovic.courtes@laas.fr (Ludovic Courtès).
1326 ** Fix the list of trusted CAs that server's send to clients.
1327 Before, the list contained issuer DN's instead of subject DN's of the
1328 trusted CAs.  Reported by Max Kellermann <max@duempel.org>.
1330 ** Fix gnutls_certificate_set_x509_crl to initialize the CRL before using it.
1331 Also added a self-test in tests/certificate_set_x509_crl.c to test the
1332 function.  Reported by Max Kellermann <max@duempel.org>.
1334 ** Encode UID fields in DN's as DirectoryString.
1335 Before GnuTLS encoded and parsed UID fields as IA5String.  This was
1336 incorrect, it should have used DirectoryString.  Now it will use
1337 DirectoryString for the UID field, but for backwards compatibility it
1338 will also accept IA5String UID's.  Reported by Max Kellermann
1339 <max@duempel.org>.
1341 ** Improve out-of-sourcedir builds from CVS.
1342 Reported by ludovic.courtes@laas.fr (Ludovic Courtès).
1344 ** Bootstrap tools changed.
1345 We now require autoconf 2.61, automake 1.10, and gettext 0.16, when
1346 building GnuTLS from CVS.  Libtool 1.5.22 is used.
1348 ** Fixed a syntax error in lib/gnutls.asn.
1349 Reported by Paul Millar <p.millar@physics.gla.ac.uk>.
1351 ** Added German translation of GnuTLS messages.
1353 ** Update of gnulib files.
1355 ** API and ABI modifications:
1356 No changes since last version.
1358 * Version 1.7.0 (released 2006-11-29)
1360 ** The default protocol priority try TLS 1.1 and TLS 1.2 too.
1361 The details is that the protocol priority set by
1362 `gnutls_set_default_priority' has been changed from TLS 1.0 and SSL
1363 3.0 to TLS 1.2, TLS 1.1, TLS 1.0 and SSL 3.0.
1365 ** Preliminary support for TLS 1.2.
1366 The client has been successfully tested against
1367 https://www.mikestoolbox.org:4433/.
1369 ** Anonself test now print a lot of debugging info, including TLS version.
1371 ** Doc fixes in OpenCDK, to avoid some gtk-doc warnings.
1373 ** Update of gnulib files.
1375 ** API and ABI modifications:
1376 GNUTLS_TLS1_2: New gnutls_protocol_t enum member.
1378 *** Pulled up from stable 1.6.x branch:
1380 ** Fix ./configure failure with non-GCC compilers.
1381 This fixes the following error message:
1382 configure: error: conditional "HAVE_LD_OUTPUT_DEF" was never defined.
1383 Reported by "Michael C. Vergallen" <mvergall@telenet.be>.
1385 * Version 1.6.3 (released 2007-05-26)
1387 ** New API functions to extract DER encoded X.509 Subject/Issuer DN.
1388 Suggested by Nate Nielsen <nielsen-list@memberwebs.com>.  Backported
1389 from the 1.7.x branch, see
1390 <http://lists.gnu.org/archive/html/help-gnutls/2007-05/msg00029.html>.
1392 ** Have PKCS8 parser return better error codes.
1393 Reported by Nate Nielsen <nielsen-list@memberwebs.com>, see
1394 <http://lists.gnupg.org/pipermail/gnutls-dev/2007-May/001653.html> and
1395 <http://lists.gnupg.org/pipermail/gnutls-dev/2007-May/001654.html>.
1397 ** Fix mem leak for sessions with client authentication via certificates.
1398 Reported by Andrew W. Nosenko <andrew.w.nosenko@gmail.com>, see
1399 <http://lists.gnupg.org/pipermail/gnutls-dev/2007-April/001539.html>.
1401 ** Fix building of 'tlsia' self test.
1402 Earlier some gcc are known to build tlsia linking to
1403 $prefix/lib/libgnutls-extra.so rather than the libgnutls-extra.so in
1404 the build directory, even though command line parameters look OK.
1405 Changing order of some parameters fixes it.
1407 ** API and ABI modifications:
1408 gnutls_x509_crt_get_raw_issuer_dn: ADD.
1409 gnutls_x509_crt_get_raw_dn: ADD.
1411 * Version 1.6.2 (released 2007-04-18)
1413 ** Fix X.509 signing with RSA-PKCS#1 to set a NULL parameters fields.
1414 Before, we remove the parameters field, which resulted in a slightly
1415 different DER encoding which in turn caused signature verification
1416 failures of GnuTLS-generated RSA certificates in some other
1417 implementations (e.g., GnuPG 2.x's gpgsm).  Depending on which RFCs
1418 you read, this may or may not be correct, but our new behaviour appear
1419 to be consistent with other widely used implementations.
1421 ** Regenerate the PKIX ASN.1 syntax tree.
1422 For some reason, after changing the ASN.1 type of ldap-UID in the last
1423 release, the generated C file built from the ASN.1 schema was not
1424 refreshed.  This can cause problems when reading/writing UID
1425 components inside X.500 Distinguished Names.  Reported by devel
1426 <dev001@pas-world.com>.
1428 ** Updated translations.
1430 ** API and ABI modifications:
1431 No changes since last version.
1433 * Version 1.6.1 (released 2006-12-28)
1435 ** Fix the list of trusted CAs that server's send to clients.
1436 Before, the list contained issuer DN's instead of subject DN's of the
1437 trusted CAs.  Reported by Max Kellermann <max@duempel.org>.
1439 ** Fix gnutls_certificate_set_x509_crl to initialize the CRL before using it.
1440 Reported by Max Kellermann <max@duempel.org>.
1442 ** Encode UID fields in DN's as DirectoryString.
1443 Before GnuTLS encoded and parsed UID fields as IA5String.  This was
1444 incorrect, it should have used DirectoryString.  Now it will use
1445 DirectoryString for the UID field, but for backwards compatibility it
1446 will also accept IA5String UID's.  Reported by Max Kellermann
1447 <max@duempel.org>.
1449 ** Fix ./configure failure with non-GCC compilers.
1450 This fixes the following error message:
1451 configure: error: conditional "HAVE_LD_OUTPUT_DEF" was never defined.
1452 Reported by "Michael C. Vergallen" <mvergall@telenet.be>.
1454 ** API and ABI modifications:
1455 No changes since last version.
1457 * Version 1.6.0 (released 2006-11-17)
1459 ** No changes since 1.5.5.
1460 The major changes compared to the 1.4.x branch are:
1462 *** A GnuTLS C++ library is part of the official distribution.
1463 Currently there are no examples or documentation, but hopefully this
1464 will change.  See gnutlsxx.h for the API.
1466 *** Windows is a supported platform.
1467 There are, however, two know bugs.  One is related to select() in
1468 command line tools (not, nota bene, in the library), the other is a
1469 problem with libgcrypt that causes delays.  Help is needed to resolve
1470 those issues, so we feel we can't delay the release because of this.
1472 *** New APIs for custom push/pull function error reporting.
1473 The new APIs are gnutls_transport_set_errno and
1474 gnutls_transport_set_global_errno.  See the release notes for version
1475 1.5.4 for more information.
1477 *** Self tests are run under valgrind, if available.  See --disable-valgrind.
1479 * Version 1.5.5 (released 2006-11-16)
1481 ** Correctly bump shared library version after adding new APIs.
1482 This was forgotten in the last release.
1484 ** Fix unsigned vs signed problem in ex-x509-info.c example.
1485 Reported by Tim Kosse <tim.kosse@filezilla-project.org>.
1487 ** Fix the rsa-md5-collision self test to work for MinGW+Wine.
1489 ** Update of gnulib files.
1491 ** API and ABI modifications:
1492 No changes since last version.
1494 * Version 1.5.4 (released 2006-11-07)
1496 ** New API functions to set errno in push/pull functions.
1497 Under Windows, setting the errno variable in a push/pull replacement
1498 may end up setting the wrong errno variable, and GnuTLS send/recv
1499 functions become confused about the real errno returned from a failed
1500 push/pull function.  Therefor, we have added two APIs to set the errno
1501 variable used by GnuTLS.  The APIs can also help to keep things
1502 thread-safe, by avoiding potentially global variables.  Typically,
1503 instead of setting errno in your push/pull function, you will call one
1504 of these functions.  It is recommended to use
1505 gnutls_transport_set_errno, but if you don't have the session variable
1506 easily accessible in the push/pull replacement function, you can use
1507 gnutls_transport_set_global_errno.  Suggested by Tim Kosse
1508 <tim.kosse@filezilla-project.org>.
1510 void gnutls_transport_set_errno (gnutls_session_t session, int err);
1511 void gnutls_transport_set_global_errno (int err);
1513 ** When calling `recv' or `send' Windows errors are handled properly.
1514 The Windows recv/send functions doesn't use errno, and GnuTLS now use
1515 WSAGetLastError to access the error condition instead.
1517 ** Several OpenPGP API fixes.
1518 All suggested by ludovic.courtes@laas.fr (Ludovic Courtès).  The most
1519 important fix is to change the return value of
1520 gnutls_openpgp_privkey_get_pk_algorithm and
1521 gnutls_openpgp_key_get_pk_algorithm from 'int' to
1522 'gnutls_pk_algorithm_t', which is an enum type (and thus API/ABI
1523 compatible with 'int').
1525 ** When a GnuTLS server receive a SSLv2 Client Hello for an unknown TLS
1526 ** version, try to negotiate the highest version support by the GnuTLS server,
1527 ** instead of the lowest.
1528 Reported by <Pasi.Eronen@nokia.com>.
1530 ** Replace old constructs with use of gnulib modules.
1531 For example, we can now assume unistd.h, sys/stat.h, sys/socket.h in
1532 the code.  If the headers doesn't exist on the target system, gnulib
1533 will make sure its replacement header files are used instead.
1535 ** Fix SOVERSION computation for *.def files.
1536 This fixes build errors similar to "No rule to make target
1537 `libgnutls-`expr', needed by `all-am'." when building for Windows.
1539 ** gnutls_check-version uses strverscmp from gnulib.
1541 ** Update of gnulib files.
1543 ** API and ABI modifications:
1544 gnutls_transport_set_errno: ADD
1545 gnutls_transport_set_global_errno: ADD
1547 * Version 1.5.3 (released 2006-10-26)
1549 ** Add new self-test of RSA-MD5 signature chains.
1550 Note that we already, since GnuTLS 1.2.9, reject RSA-MD5 signatures
1551 when verifying X.509 chains.  The code is in tests/rsa-md5-collision/
1552 and is based on the work by Marc Stevens et al, see
1553 <http://www.win.tue.nl/hashclash/TargetCollidingCertificates/>.
1555 ** Re-factor self tests.
1557 ** The include copy of Libtasn1 is updated to version 0.3.7.
1559 ** The included copy of OpenCDK is updated to version 0.5.11.
1561 ** Fix the filename of the *.def file on Windows after library version bump.
1563 ** Separated the gnulib directory into one for LGPL modules and one for GPL.
1564 This allows the GPL'd part of GnuTLS to take advantage of the GPL'd
1565 gnulib modules.  Earlier we could only use the LGPL'ed module from
1566 gnulib, because two gnulib directories in the same project didn't
1567 work.
1569 ** API and ABI modifications:
1570 No changes since last version.
1572 * Version 1.5.2 (released 2006-10-03)
1574 ** Decrement the shared library version back to 13 (as in the 1.4.x branch).
1575 Note that if you installed 1.5.0 or 1.5.1, they will have a higher
1576 shared library version than this version, so you'll have to remove
1577 them and possibly relink your applications.  The reason for this is
1578 that no API/ABI changes have been made since the 1.4.x branch, and
1579 that incrementing the shared library version was a mistake.  Reported
1580 by Andreas Metzler <ametzler@downhill.at.eu.org>.
1582 ** Fix off-by-one error when computing length to malloc.
1583 The code is used by gnutls_openpgp_add_keyring_file and
1584 gnutls_openpgp_add_keyring_mem.  Reported by "Adam Langley"
1585 <agl@imperialviolet.org>.
1587 ** Add version script for the GnuTLS C++ library.
1588 Reported by Andreas Metzler <ametzler@downhill.at.eu.org>.
1590 ** Fix the C++ compiler detection logic.
1591 Reported by Andreas Metzler <ametzler@downhill.at.eu.org>.
1593 ** Update of gnulib files.
1595 ** API and ABI modifications:
1596 No changes since last version.
1598 * Version 1.5.1 (released 2006-09-21)
1600 ** Fix PKCS#1 verification to avoid a variant of Bleichenbacher's
1601 ** Crypto 06 rump session attack.
1602 In particular, we check that the digestAlgorithm.parameters field is
1603 missing or empty, to avoid that it can contain "garbage" that may be
1604 used to alter the numeric properties of the signature.  See
1605 <http://www.imc.org/ietf-openpgp/mail-archive/msg14307.html> (which is
1606 not exactly the same as the problem we fix here).  Reported by Yutaka
1607 OIWA <y.oiwa@aist.go.jp>.
1609 See GNUTLS-SA-2006-4 on http://www.gnutls.org/security.html for more
1610 up to date information.
1612 ** Add self test to test for above flaw.
1614 ** Fix gnutls-cli-debug regarding resume support detection.
1615 Earlier, if the session-id from the server had a length of 0, it would
1616 indicate the the server supports resumption, which isn't the case.
1617 Reported by Kataja Kai <kai.kataja@op.fi>.
1619 ** Fix building of examples on FreeBSD by including netinet/in.h.
1620 Reported by Roman Bogorodskiy <novel@FreeBSD.org>.
1622 ** Fix certtool bug that caused the private key to not be loaded when
1623 generating a certificate with --load-request, which in turn triggered
1624 another unrelated bug in gnutls_x509_crt_sign2 (also fixed).  Reported
1625 by Sascha Ziemann <sascha.ziemann@secunet.com>.
1627 ** gnutls-cli and gnutls-serv works on Windows.
1628 The problem was the select() call that doesn't work on file
1629 descriptors (stdin) on Windows.  We borrowed some code from plibc to
1630 solve this.  It appears to be somewhat unreliable though.
1632 ** Autoconf 2.60 is now used.
1634 ** API and ABI modifications:
1635 No changes since last version.
1637 * Version 1.5.0 (released 2006-08-13)
1639 ** Change SRP and Cert-Type extensions to match IANA registry.
1641 ** Fixed bug in OpenPGP authentication handshake.
1643 ** Improvements for building under MinGW.
1644 Provides internal inet_ntop and inet_pton functions and arpa/inet.h
1645 header.  Calls WSAStartup and WSACleanup in gnutls_global_init and
1646 gnutls_global_deinit, respectively.  Loads getaddrinfo and getnameinfo
1647 at run-time from ws2_32.dll, and falls back on a simple replacement if
1648 it is not available.  Builds the library with -mms-bitfields
1649 -Wl,--enable-runtime-pseudo-reloc.  Links with --output-def, to
1650 create *.def files, which are installed.
1652 ** The examples now (conditionally) include config.h and link to gnulib.
1653 No other source changes were necessary, so the examples should
1654 continue to be possible to use stand-alone without any autoconf or
1655 gnulib stuff.
1657 ** Added C++ header "gnutlsxx.h" and library "libgnutlsxx".
1658 You may unconditionally disable it with --disable-cxx.  See
1659 includes/gnutls/gnutlsxx.h and lib/gnutlsxx.cpp for the
1660 implementation.
1662 ** Made command line tool '--version' behave according to GNU Standards.
1663 This enables 'make distcheck' to succeed.
1665 ** OpenCDK updated to 0.5.9 to fix some problems with OpenPGP support.
1667 ** Make --without-included-libtasn1 work.
1668 Reported by Daniel Black <dragonheart@gentoo.org>.
1670 ** Fix a crash (strcmp() on a NULL value) in the certificate verification logic.
1671 See http://www.gnu.org/software/gnutls/security.html regardging
1672 GNUTLS-SA-2006-2 for more up to date information.  Reported by
1673 satyakumar <satyam_kkd@hyd.hellosoft.com>.
1675 ** API and ABI modifications:
1676 No changes since last version.
1678 * Version 1.4.5 (released 2006-11-06)
1680 ** When a GnuTLS server receive a SSLv2 Client Hello for an unknown TLS
1681 ** version, try to negotiate the highest version support by the GnuTLS server,
1682 ** instead of the lowest.
1683 Reported by <Pasi.Eronen@nokia.com>.
1685 ** Fix typo in doc/examples/ex-serv-pgp.c.
1686 Reported by Adam Langley" <agl@imperialviolet.org>.
1688 ** API and ABI modifications:
1689 No changes since last version.
1691 * Version 1.4.4 (released 2006-09-12)
1693 ** Relax the test that caught signatures that exploit the variant of
1694 ** Bleichenbacher's Crypto 06 rump session attack on our
1695 ** verification logic flaw.
1696 In particular, we now permit the digestAlgorithm.parameters field to
1697 be present but empty, whereas in 1.4.3 we actually checked that the
1698 field was absent.
1700 ** Revert the removal of debug information for the GNUTLS-SA-2006-3 problem.
1701 The messages are only printed in debug mode, which is not recommended
1702 for normal use, and thus logging this situation cannot be abused as an
1703 oracle in typical recommended situations.
1705 ** API and ABI modifications:
1706 No changes since last version.
1708 * Version 1.4.3 (released 2006-09-08)
1710 ** Fix PKCS#1 verification to avoid a variant of Bleichenbacher's
1711 ** Crypto 06 rump session attack.
1712 In particular, we check that the digestAlgorithm.parameters field is
1713 empty, to avoid that it can contain "garbage" that may be used to
1714 alter the numeric properties of the signature.  See
1715 <http://www.imc.org/ietf-openpgp/mail-archive/msg14307.html> (which is
1716 not exactly the same as the problem we fix here).  Reported by Yutaka
1717 OIWA <y.oiwa@aist.go.jp>.
1719 See GNUTLS-SA-2006-4 on http://www.gnutls.org/security.html for more
1720 up to date information.
1722 ** Fix PKCS#1 decryption to avoid Bleichenbacher's Crypto 98 attack.
1723 See <http://www.bell-labs.com/user/bleichen/papers/pkcs.ps.gz>.
1724 Reported by Werner Koch <wk@gnupg.org>.
1726 See GNUTLS-SA-2006-3 on http://www.gnutls.org/security.html for more
1727 up to date information.
1729 ** Fix crash in gnutls_x509_crt_sign2 if passed a NULL issuer_key.
1731 ** API and ABI modifications:
1732 No changes since last version.
1734 * Version 1.4.2 (released 2006-08-12)
1736 ** Fix a crash (strcmp() on a NULL value) in the certificate verification logic.
1737 This can happen if you call gnutls_certificate_verify_peers2 and have
1738 a certain mix of local CA certificates and the peer send special
1739 certificates, that together trigger certain behaviour.  It is not
1740 known at this point whether the crash can be triggered without the
1741 special local CA certificate, and thus turn this into a remote crash
1742 of clients that verify server certificates when they talk to a server
1743 with the special server certificate.  See GNUTLS-SA-2006-2 on
1744 http://www.gnu.org/software/gnutls/security.html for more up to date
1745 information.  Reported by satyakumar <satyam_kkd@hyd.hellosoft.com>.
1747 ** Change SRP and Cert-Type extensions to match IANA registry.
1749 ** OpenCDK updated to 0.5.9 to fix some problems with OpenPGP support.
1751 ** Make --without-included-libtasn1 work.
1752 Reported by Daniel Black <dragonheart@gentoo.org>.
1754 ** API and ABI modifications:
1755 No changes since last version.
1757 * Version 1.4.1 (released 2006-06-14)
1759 ** Replaced inactive ifdefs to enable openpgp support in test programs.
1761 ** Fixed bug in OpenPGP authentication handshake.
1763 ** Fixed typographical in man pages.
1765 ** Build fixes of the manual.
1767 ** Added Swedish translation.
1769 ** API and ABI modifications:
1770 No changes since last version.
1772 * Version 1.4.0 (released 2006-05-15)
1774 ** Remove GnuTLS 0.8.x compatibility functions.
1776 ** The libgcrypt RNG is initialized in gnutls_global_init().
1778 ** TLS/IA API changes from Emile van Bergen.
1779 A dummy credential structure is not needed now, if you wish to use the
1780 low-level TLS/IA API, simply call gnutls_ia_enable to enable TLS/IA on
1781 a session.
1783 ** The self-tests are now run under valgrind, if it is installed.
1785 ** Libtasn1 is updated to 0.3.4, and that version is now required.
1787 ** The command line tools now use getaddrinfo and support IPv6.
1789 ** API and ABI modifications:
1790 _gnutls_x509_get_raw_crt_activation_time,
1791 _gnutls_x509_get_raw_crt_expiration_time: Removed.
1792 gnutls_ia_require_inner_phase: Removed, replaced by gnutls_ia_enable.
1793 gnutls_ia_enable: Added.
1795 * Version 1.3.5 (released 2006-03-08)
1797 ** Error messages are now translated using GNU Gettext.
1799 ** The function gnutls_x509_crt_to_xml now return an internal error.
1800 This means that the code to convert X.509 certificates to XML format
1801 does not work any more.  The reason is that the function called
1802 libtasn1 internal functions.  It seems unclean for libtasn1 to export
1803 the APIs needed here.  Instead it would be better to implement XML
1804 support inside libtasn1 properly.  If you need this functionality
1805 strongly, please consider looking into implementing this suggested
1806 approach instead.  As a workaround, you may also modify lib/x509/xml.c
1807 (change '#if 1' to '#if 0') and build using --with-included-libtasn1.
1809 ** Libraries are now built with libtool's -no-undefined.
1810 This helps producing libraries for Windows using mingw32.
1812 ** Doc fixes to explain that gnutls_record_send can block.
1814 ** Libtasn1 0.3.1 or later is now required.
1815 The include copy has been updated too.
1817 ** gnutls-cli can now recognize services and port numbers with the -p option.
1819 ** API and ABI modifications:
1820 No changes since last version.
1822 * Version 1.3.4 (released 2006-02-09)
1824 ** Fix read of out bounds bug in DER parser.
1825 Reported by Evgeny Legerov <admin@gleg.net>, and debugging help from
1826 Protover SSL.  Libtasn1 0.2.18 is now required, which contains the
1827 previous bug fix.  The included libtasn1 version in GnuTLS has been
1828 updated.
1830 ** Fixed bug in non-blocking gnutls_bye(). gnutls_record_send() will no 
1831 longer invalidate a session if the underlying send fails, but it will 
1832 prevent future writes. That is to allow reading the already received data.
1833 Patches and bug reports by Yoann Vandoorselaere <yoann@prelude-ids.org>
1835 ** Corrected bugs in gnutls_certificate_set_x509_crl() and
1836 gnutls_certificate_set_x509_trust(), that caused memory corruption if 
1837 more than one certificates were added. Report and patch by Max Kellermann.
1839 ** Fix build problems of OpenCDK on AIX.
1840 Thanks to "Heiden, John" <JHeiden@UTNet.UToledo.Edu>.
1842 ** API and ABI modifications:
1843 No changes since last version.
1845 * Version 1.3.3 (released 2006-01-12)
1847 ** New API to access the TLS master secret.
1848 When possible, you should use the TLS PRF functions instead.
1849 Suggested by Jouni Malinen <jkmaline@cc.hut.fi>.
1851 ** Improved handling when multiple libraries use GnuTLS at the same time.
1852 Now gnutls_global_init() can be called multiple times, and
1853 gnutls_global_deinit() will only deallocate the structure when it has
1854 been called as many times as gnutls_global_init() was called.
1856 ** Added a self test of TLS resume functionality.
1858 ** Fix crash in TLS resume code, caused by TLS/IA changes.
1860 ** Documentation fixes about thread unsafety, prompted by
1861 ** discussion with bryanh@giraffe-data.com (Bryan Henderson).
1862 In particular, gnutls_global_init() and gnutls_global_deinit() are not
1863 thread safe.  Careful callers may want to protect the call using a
1864 mutex.  The problem could also be ignored, which would cause a memory
1865 leak under rare conditions when two threads invoke the function
1866 roughly at the same time.
1868 ** Add 'const' keywords in various places, from Frediano ZIGLIO.
1870 ** The code was indented again, including the external header files.
1872 ** API and ABI modifications:
1873 New functions to retrieve the master secret value:
1874   gnutls_session_get_master_secret
1876 Add a 'const' keyword to existing API:
1877   gnutls_x509_crq_get_challenge_password
1879 * Version 1.3.2 (released 2005-12-15)
1881 ** GnuTLS now support TLS Inner application (TLS/IA).
1882 This is per draft-funk-tls-inner-application-extension-01.  This
1883 functionality is added to libgnutls-extra, so it is licensed under the
1884 GNU General Public License.
1886 ** New APIs to access the TLS Pseudo-Random-Function (PRF).
1887 The PRF is used by some protocols building on TLS, such as EAP-PEAP
1888 and EAP-TTLS.  One function to access the raw PRF and one to access
1889 the PRF seeded with the client/server random fields are provided.
1890 Suggested by Jouni Malinen <jkmaline@cc.hut.fi>.
1892 ** New APIs to acceess the client and server random fields in a session.
1893 These fields can be useful by protocols using TLS.  Note that these
1894 fields are typically used as input to the TLS PRF, and if this is your
1895 intended use, you should use the TLS PRF API that use the
1896 client/server random field directly.  Suggested by Jouni Malinen
1897 <jkmaline@cc.hut.fi>.
1899 ** Internal type cleanups.
1900 The uint8, uint16, uint32 types have been replaced by uint8_t,
1901 uint16_t, uint32_t.  Gnulib is used to guarantee the presence of
1902 correct types on platforms that lack them.  The uint type have been
1903 replaced by unsigned.
1905 ** API and ABI modifications:
1906 New functions to invoke the TLS Pseudo-Random-Function (PRF):
1907   gnutls_prf
1908   gnutls_prf_raw
1910 New functions to retrieve the session's client and server random values:
1911   gnutls_session_get_server_random
1912   gnutls_session_get_client_random
1914 New function, to perform TLS/IA handshake:
1915   gnutls_ia_handshake
1917 New function to decide whether to do a TLS/IA handshake:
1918   gnutls_ia_handshake_p
1920 New functions to allocate a TLS/IA credential:
1921   gnutls_ia_allocate_client_credentials
1922   gnutls_ia_free_client_credentials
1923   gnutls_ia_allocate_server_credentials
1924   gnutls_ia_free_server_credentials
1926 New functions to handle the AVP callback:
1927   gnutls_ia_set_client_avp_function
1928   gnutls_ia_set_client_avp_ptr
1929   gnutls_ia_get_client_avp_ptr
1930   gnutls_ia_set_server_avp_function
1931   gnutls_ia_set_server_avp_ptr
1932   gnutls_ia_get_server_avp_ptr
1934 New functions, to toggle TLS/IA application phases:
1935   gnutls_ia_require_inner_phase
1937 New function to mix session keys with inner secret:
1938   gnutls_ia_permute_inner_secret
1940 Low-level API (used internally by gnutls_ia_handshake):
1941   gnutls_ia_endphase_send
1942   gnutls_ia_send
1943   gnutls_ia_recv
1945 New functions that can be used after successful TLS/IA negotiation:
1946   gnutls_ia_generate_challenge
1947   gnutls_ia_extract_inner_secret
1949 Enum type with TLS/IA modes:
1950   gnutls_ia_mode_t
1952 Enum type with TLS/IA packet types:
1953   gnutls_ia_apptype_t
1955 Enum values for TLS/IA alerts:
1956   GNUTLS_A_INNER_APPLICATION_FAILURE
1957   GNUTLS_A_INNER_APPLICATION_VERIFICATION
1959 New error codes, to signal when an application phase has finished:
1960   GNUTLS_E_WARNING_IA_IPHF_RECEIVED
1961   GNUTLS_E_WARNING_IA_FPHF_RECEIVED
1963 New error code to signal TLS/IA verify failure:
1964   GNUTLS_E_IA_VERIFY_FAILED
1966 * Version 1.3.1 (released 2005-12-08)
1968 ** Support for DHE-PSK cipher suites has been added.
1969 This method offers perfect forward secrecy.
1971 ** Fix gnutls-cli STARTTLS hang when SIGINT is sent too quickly, thanks to
1972 Otto Maddox <ottomaddox@fastmail.fm> and Nozomu Ando <nand@mac.com>.
1974 ** Corrected a bug in certtool for 64 bit machines. Reported
1975 by Max Kellermann <max@duempel.org>.
1977 ** New function to set a X.509 private key and certificate pairs, and/or
1978 CRLs, from an PKCS#12 file, suggested by Emile van Bergen
1979 <emile@e-advies.nl>.
1981 The integrity of the PKCS#12 file is protected through a password
1982 based MAC; public-key based signatures for integrity protection are
1983 not supported.  PKCS#12 bags may be encrypted using password derived
1984 symmetric keys, public-key based encryption is not supported.  The
1985 PKCS#8 keys may be encrypted using passwords.  The API use the same
1986 password for all operations.  We believe that any more flexibility
1987 create too much complexity that would hurt overall security, but may
1988 add more PKCS#12 related APIs if real-world experience indicate
1989 otherwise.
1991 ** gnutls_x509_privkey_import_pkcs8 now accept unencrypted PEM PKCS#8 keys,
1992 reported by Emile van Bergen <emile@e-advies.nl>.
1993 This will enable "certtool -k -8" to parse those keys.
1995 ** Certtool now generate keys in unencrypted PKCS#8 format for empty passwords.
1996 Use "certtool -p -8" and press press enter at the prompt.  Earlier,
1997 certtool would have encrypted the key using an empty password.
1999 ** Certtool now accept --password for --key-info and encrypted PKCS#8 keys.
2000 Earlier it would have prompted the user for it, even if --password was
2001 supplied.
2003 ** Added self test of PKCS#8 parsing.
2004 Unencrypted and encrypted (pbeWithSHAAnd3-KeyTripleDES-CBC and
2005 pbeWithSHAAnd40BitRC2-CBC) formats are tested.  The test is in
2006 tests/pkcs8.
2008 ** API and ABI modifications:
2009 New function to set X.509 credentials from a PKCS#12 file:
2010   gnutls_certificate_set_x509_simple_pkcs12_file
2012 New gnutls_kx_algorithm_t enum type:
2013   GNUTLS_KX_DHE_PSK
2015 New API to return session data (basically same as gnutls_session_get_data):
2016   gnutls_session_get_data2
2018 New API to set PSK Diffie-Hellman parameters:
2019   gnutls_psk_set_server_dh_params
2021 * Version 1.3.0 (2005-11-15)
2023 ** Support for TLS Pre-Shared Key (TLS-PSK) ciphersuites have been added.
2024 This add several new APIs, see below.  Read the updated manual for
2025 more information.  A new self test "pskself" has been added, that will
2026 test this functionality.
2028 ** The session resumption data are now system independent.
2030 ** The code has been re-indented to conform to the GNU coding style.
2032 ** Removed the RIPEMD ciphersuites.
2034 ** Added a discussion of the internals of gnutls in manual.
2036 ** Fixes for Tru64 UNIX 4.0D that lack MAP_FAILED, from Albert Chin.
2038 ** Remove trailing comma in enums, for IBM C v6, from Albert Chin.
2040 ** Make sure config.h is included first in a few files, from Albert Chin.
2042 ** Don't use C++ comments ("//") as they are invalid, from Albert Chin.
2044 ** Don't install SRP programs and man pages if --disable-srp-authentication,
2045 from Albert Chin.
2047 ** API and ABI modifications:
2048 New gnutls_kx_algorithm_t key exchange type: GNUTLS_KX_PSK
2050 New gnutls_credentials_type_t credential type:
2051   GNUTLS_CRD_PSK
2053 New credential types:
2054   gnutls_psk_server_credentials_t
2055   gnutls_psk_client_credentials_t
2057 New functions to allocate PSK credentials:
2058   gnutls_psk_allocate_client_credentials
2059   gnutls_psk_free_client_credentials
2060   gnutls_psk_free_server_credentials
2061   gnutls_psk_allocate_server_credentials
2063 New enum type for PSK key flags:
2064   gnutls_psk_key_flags
2066 New function prototypes for credential callback:
2067   gnutls_psk_client_credentials_function
2068   gnutls_psk_server_credentials_function
2070 New function to set PSK username and key:
2071   gnutls_psk_set_client_credentials
2073 New function to set PSK passwd file:
2074   gnutls_psk_set_server_credentials_file
2076 New function to extract PSK user in server:
2077   gnutls_psk_server_get_username
2079 New functions to set PSK callback:
2080   gnutls_psk_set_server_credentials_function
2081   gnutls_psk_set_client_credentials_function
2083 Use size_t instead of int for output size parameter:
2084   gnutls_srp_base64_encode
2085   gnutls_srp_base64_decode
2087 * Version 1.2.11 (2006-05-11)
2088 - The function gnutls_x509_crt_to_xml is not supported any more, and
2089   return an internal error.  The reason is that the function called
2090   internal libtasn1 functions which are no longer exported from
2091   libtasn1.
2092 - Updated libtasn1 requirement to 0.3.4 and refreshed internal mintiasn1.
2093 - Updated gnulib compatibility files.
2094 - Fixed _gnutls_x509_get_raw_crt_expiration_time and
2095   _gnutls_x509_get_raw_crt_activation_time to return (time_t)-1 on errors.
2096 - API and ABI modifications:
2097   No changes since last version.
2099 * Version 1.2.10 (2006-02-09)
2100 - Fix read out bounds bug in DER parser.  Reported by Evgeny Legerov
2101   <admin@gleg.net>, and debugging help from Protover SSL.
2102 - Libtasn1 0.2.18 is now required (contains the previous bug fix).
2103   The included version has been updated too.
2104 - Fix gnutls-cli STARTTLS hang when SIGINT is sent too quickly, thanks to
2105   Otto Maddox <ottomaddox@fastmail.fm> and Nozomu Ando <nand@mac.com>.
2106 - Corrected a bug in certtool for 64 bit machines. Reported
2107   by Max Kellermann <max@duempel.org>.
2108 - Corrected bugs in gnutls_certificate_set_x509_crl() and
2109   gnutls_certificate_set_x509_trust(), that caused memory corruption if
2110   more than one certificates were added. Report and patch by Max Kellermann.
2111 - Fixed bug in non-blocking gnutls_bye(). gnutls_record_send() will no 
2112   longer invalidate a session if the underlying send fails, but it will 
2113   prevent future writes. That is to allow reading the already received data.
2114   Patches and bug reports by Yoann Vandoorselaere <yoann@prelude-ids.org>
2116 * Version 1.2.9 (2005-11-07)
2117 - Documentation was updated and improved.
2118 - RSA-MD2 is now supported for verifying digital signatures.
2119 - Due to cryptographic advances, verifying untrusted X.509
2120   certificates signed with RSA-MD2 or RSA-MD5 will now fail with a
2121   GNUTLS_CERT_INSECURE_ALGORITHM verification output.  For
2122   applications that must remain interoperable, you can use the
2123   GNUTLS_VERIFY_ALLOW_SIGN_RSA_MD2 or GNUTLS_VERIFY_ALLOW_SIGN_RSA_MD5
2124   flags when verifying certificates.  Naturally, this is not
2125   recommended default behaviour for applications.  To enable the
2126   broken algorithms, call gnutls_certificate_set_verify_flags with the
2127   proper flag, to change the verification mode used by
2128   gnutls_certificate_verify_peers2.
2129 - Make it possible to send empty data through gnutls_record_send,
2130   to align with the send(2) API.
2131 - Some changes in the certificate receiving part of handshake to prevent
2132   some possible errors with non-blocking servers.
2133 - Added numeric version symbols to permit simple CPP-based feature
2134   tests, suggested by Daniel Stenberg <daniel@haxx.se>.
2135 - The (experimental) low-level crypto alternative to libgcrypt used
2136   earlier (Nettle) has been replaced with crypto code from gnulib.
2137   This leads to easier re-use of these components in other projects,
2138   leading to more review and simpler maintenance.  The new configure
2139   parameter --with-builtin-crypto replace the old --with-nettle, and
2140   must be used if you wish to enable this functionality.  See README
2141   under "Experimental" for more information.  Internally, GnuTLS has
2142   been updated to use the new "Generic Crypto" API in gl/gc.h.  The
2143   API is similar to the old crypto/gc.h, because the gnulib code were
2144   based on GnuTLS's gc.h.
2145 - Fix compiler warning in the "anonself" self test.
2146 - API and ABI modifications:
2147 gnutls_x509_crt_list_verify: Added 'const' to prototype in <gnutls/x509.h>.
2148                              This doesn't reflect a change in behaviour,
2149                              so we don't break backwards compatibility.
2150 GNUTLS_MAC_MD2: New gnutls_mac_algorithm_t value.
2151 GNUTLS_DIG_MD2: New gnutls_digest_algorithm_t value.
2152 GNUTLS_VERIFY_ALLOW_SIGN_RSA_MD2,
2153 GNUTLS_VERIFY_ALLOW_SIGN_RSA_MD5: New gnutls_certificate_verify_flags values.
2154                                   Use when calling
2155                                   gnutls_x509_crt_list_verify,
2156                                   gnutls_x509_crt_verify, or
2157                                   gnutls_certificate_set_verify_flags.
2158 GNUTLS_CERT_INSECURE_ALGORITHM: New gnutls_certificate_status_t value,
2159                                 used when broken signature algorithms
2160                                 is used (currently RSA-MD2/MD5).
2161 LIBGNUTLS_VERSION_MAJOR,
2162 LIBGNUTLS_VERSION_MINOR,
2163 LIBGNUTLS_VERSION_PATCH,
2164 LIBGNUTLS_VERSION_NUMBER: New CPP symbols, indicating the GnuTLS
2165                           version number, can be used for feature existence
2166                           tests.
2168 * Version 1.2.8 (2005-10-07)
2169 - Libgcrypt 1.2.2 is required to fix a bug for forking GnuTLS servers.
2170 - Don't install the auxilliary libexamples library used by the
2171   examples in doc/examples/ on "make install", report and tiny patch
2172   from Thomas Klausner <tk@giga.or.at>.
2173 - If you pass a X.509 CA or PGP trust database to the command line
2174   tool, it will now abort the connection if the server certificate
2175   validation fails.  Use the parameter --insecure to continue even
2176   after certificate validation failures.  Inspired from discussion
2177   with Alexander Kotelnikov <sacha@myxomop.com>.
2178 - The test for socklen_t has been moved to gnulib.
2179 - Link failures for duplicate or missing "program_name" symbol has been fixed,
2180   patch from Martin Lambers <marlam@marlam.de>.
2181 - The command line tool and the examples no longer uses mmap or bzero,
2182   to make them more portable, patch from Martin Lambers
2183   <marlam@marlam.de>.
2184 - Made the PKCS #12 API handle null passwords. Based on patch by
2185   Anton Altaparmakov <aia21@cam.ac.uk>.
2186 - The GTK-DOC manual should build with current released tools.
2187   (But a copy of the output is included, so the tools are not required.)
2188 - The inet_ntop function is now used through gnulib.
2189 - API and ABI modifications:
2190   No changes since last version.
2192 * Version 1.2.7 (2005-09-09)
2193 - The GNUTLS and GNUTLS-EXTRA libraries are now built with versioned symbols.
2194 - Certtool now complains when reading out-of-range X.509 serial
2195   numbers, suggested by Fran <e_agf@yahoo.es>.
2196 - Certtool now uses the readline library (when available) when reading
2197   X.509 serial numbers.
2198 - Fixed build problems in getpass on uClibc and Mingw32 platforms.
2199 - Fixed compile warning regarding socklen_t on Mingw32, reported by
2200   Martin Lambers <marlam@marlam.de>.
2201 - Fixed examples in doc/examples/, suggested by Fran <e_agf@yahoo.es>.
2202 - Gnulib is now used for the core library, enabling future code cleanups.
2203 - The gnutls-cli tool now use gnutls_certificate_verify_peers2,
2204   suggested by Daniel Stenberg <daniel@haxx.se>.
2205 - Doc fixes for gnutls_transport_set_push and gnutls_transport_set_pull.
2206 - Minilibtasn1 is now 0.2.17 (removed optional use of C99 macros).
2207 - Disable zlib support if zlib.h is not present.
2208 - A number of internal cleanups.
2209 - API and ABI modifications:
2210   No changes since last version.
2212 * Version 1.2.6 (2005-07-16)
2213 - MiniLZO updated to version 2.01 and moved to separate directory.
2214 - Collision between system LZO header files and MiniLZO header file
2215   fixed, reported by Matthias Urlichs <smurf@smurf.noris.de>.
2216 - Will now test for liblzo functionality in liblzo2 too, reported by
2217   Thomas Klausner <tk@giga.or.at>.
2218 - Minilibtasn1 is now 0.2.14 (no code changes).
2219 - Some code changes to avoid GTK-DOC warnings.
2220 - API and ABI modifications:
2221   No changes since last version.
2223 * Version 1.2.5 (2005-07-03)
2224 - More builddir != srcdir fixes, reported by Mike Castle
2225   <dalgoda@ix.netcom.com>.
2226 - Fixed off-by-one bug in the size parameter of gnutls_x509_crt_get*_dn,
2227   reported by Adam Langley <alangley@gmail.com>.
2228 - Corrected some stuff in minilzo detection. Pointed out by 
2229   Sergey Lipnevich.
2230 - MiniLZO updated to version 2.00.
2231 - gnutls_x509_crt_list_import now accept a DER formatted CRL.
2232 - API and ABI modifications:
2233   No changes since last version.
2235 * Version 1.2.4 (2005-05-28)
2236 - Corrected some bugs that could affect 64 bit systems.
2237 - Some corrections in the header files to include the prototype
2238   of memmem properly (affected 64 bit systems). Report and patch
2239   by Yoann Vandoorselaere <yoann@prelude-ids.org>.
2240 - Introduced the --fix-key option to certtool, which can be used to
2241   regenerate the (optional) parameters in a private key. It should
2242   be used together with --key-info.
2243 - Corrected a bug in certificate chain verification that could lead
2244   to marking a trusted chain as non trusted, if the last certificate in
2245   the chain was a self signed one.
2246 - Gnulib portability files were updated.
2247 - License were updated to reflect new FSF address.
2248 - API and ABI modifications:
2249   No changes since last version.
2251 * Version 1.2.3 (2005-04-28)
2252 - Corrected bug in record packet parsing that could lead
2253   to a denial of service attack.
2254 - Corrected bug in RSA key export. Previously exported keys
2255   can be fixed using certtool. Use certtool -k <infile >outfile
2256 - API and ABI modifications:
2257     gnutls_x509_privkey_fix(): Add.
2259 * Version 1.2.2 (2005-04-25)
2260 - gnutls_error_to_alert() now considers
2261   GNUTLS_E_UNEXPECTED_HANDSHAKE_PACKET.
2262 - Fixed error in session resuming that could cause a crash in a session.
2263 - Fixed pkcs12 friendly name and local key identifier decoding.
2264 - Internal cleanups, removed duplicate typedef/struct definitions,
2265   and made source code include external include file, to check
2266   function prototypes during compile time.
2267 - API and ABI modifications:
2268   No changes since last version.  At least not intentional, but due
2269   to the include header changes, there may be inadvertant changes,
2270   please let us know if you find any.
2272 * Version 1.2.1 (2005-04-04)
2273 - gnutls_bye() will no longer fail when RDWR is used and application
2274   data are available for reading.
2275 - Added more strict checks for the SRP parameters (g,n), when they
2276   are not in the included list.
2277 - Added warning to certtool when MD5 is being used for digital
2278   signatures.
2279 - Optimizations ("-O2 -finline-functions") are not enabled by default,
2280   instead the standard autoconf defaults are used.  Use `./configure
2281   CFLAGS="-O2 -finline-functions"' to get the old optimizations.
2282 - Added the option --get-dh-params to certtool, in order to get the
2283   parameters included in the library primes and generators.
2284 - Improved the semantics of GNUTLS_VERIFY_ALLOW_X509_V1_CA_CRT, to
2285   allow only trusted Version 1 CAs and introduced
2286   GNUTLS_VERIFY_ALLOW_ANY_X509_V1_CA_CRT which has the old semantics.
2287 - Nettle self tests now build properly, reported by Pierre
2288   <pierre42d@9online.fr>.
2289 - Eliminated some memory leaks in DHE and RSA-EXPORT cipher suites.
2290   Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
2291 - If the library has been compiled with features disabled, a warning is 
2292   issued during the compilation of any program.
2293 - API and ABI modifications:
2294     gnutls_x509_crt_list_import(): Add
2295     gnutls_x509_crq_get_attribute_by_oid(): Add.
2296     gnutls_x509_crq_set_attribute_by_oid(): Add
2297     gnutls_x509_crt_set_extension_by_oid(): Add.
2298     GNUTLS_VERIFY_ALLOW_X509_V1_CA_CRT: Modify semantics.
2299     GNUTLS_VERIFY_ALLOW_ANY_X509_V1_CA_CRT: Add, old behaviour.
2301 * Version 1.2.0 (2005-01-27)
2302 - Added the definitions and OIDs for the RIPEMD-160 hash algorithm.
2303 - Introduced gnutls_x509_crt_sign2(), gnutls_x509_crq_sign2() and 
2304   gnutls_x509_crl_sign2().
2305 - Fixed license header in source code files.
2307 * Version 1.1.23 (2005-01-18)
2308 - It is now possible to generate PKCS#12 structures without private
2309   keys using "certtool --to-p12", suggested by Fabian Fagerholm
2310   <fabbe@paniq.net>.
2311 - Certtool now prints information for the RSA and DSA parameters of
2312   certificates and private keys.
2313 - Corrected the write of CRL distribution points.
2314 - The certificate chain verification function now checks certificates
2315   in the reverse order to minimize the spent resources.
2316 - Corrected several bugs found by Marcin Garski <mgarski@post.pl>
2317 - The functions gnutls_x509_crl_get_issuer_dn, gnutls_x509_crq_get_dn,
2318   gnutls_x509_crt_get_issuer_dn, gnutls_x509_crt_get_dn, and
2319   gnutls_x509_rdn_get now set *sizeof_buf to the buffer length that is
2320   required, instead of the string length.  That is, the value has been
2321   incremented by 1 to account for the terminating zero. Reported by
2322   Martin Lambers <marlam@web.de>.
2323 - Debug output shouldn't crash on platforms that doesn't handle NULL
2324   printf %s values.  Reported by Michael.Ringe@aachen.utimaco.de.
2325 - Sync included copy of libtasn1 with version 0.2.13.
2326 - Client X.509 authenticated connections via gnutls-cli should now work again.
2328 * Version 1.1.22 (2004-11-04)
2329 - Replace GNU LD version script with Libtool -export-symbols-regex,
2330   from Joe Orton <joe@manyfish.co.uk>.
2331 - Documentation improvements.
2332 - Code indented using 'indent -i4 -kr'.
2333 - The API manual is included in Devhelp format.  (Was in last release too,
2334   but the NEWS entry was forgotten.)
2335 - The OpenSSL compatibility code now use the internal crypto interface.
2336 - Added simple self test of OpenSSL compatibility library.
2337 - Internally, libtool convenience libraries are used.
2338 - Cleanups to configure.ac.
2340 * Version 1.1.21 (2004-10-27)
2341 - Print DN of certificates with unknown characters in them, but in hexform
2342   only.
2343 - Added second precision to the X.509 parsing and generation functions.
2344 - Corrected bug in _gnutls_x509_get_dn_oid(), and returns the
2345   actual OID.
2346 - Add parameter --la-file to libgnutls-config and libgnutls-extra-config,
2347   tiny patch contributed by Joe Orton <joe@manyfish.co.uk>.
2348 - Add pkg-config meta files, suggested by Stéphane LOEUILLET
2349   <stephane.loeuillet@tiscali.fr>.
2350 - Fix memory initializaion bug in gnutls_certificate_set_x509_trust,
2351   tiny patch by Aleix Conchillo Flaque <aleix@member.fsf.org>.
2352 - Add self test of PKCS#12 functionality in "certtool", based on test
2353   vectors from Joe Orton <joe@manyfish.co.uk>.
2354 - Fix library order in libgnutls*-config --libs output, to permit
2355   static linking, reported by Yoann Vandoorselaere
2356   <yoann@prelude-ids.org>.
2358 * Version 1.1.20 (2004-10-12)
2359 - Fix compile problem in gl/getpass.c on some systems.
2361 * Version 1.1.19 (2004-10-07)
2362 - Fix memory leak in gnutls_certificate_verify_peers and
2363   gnutls_certificate_free_credentials, report and patch by Simon
2364   Posnjak <simon.posnjak@cetrtapot.si>.
2365 - Fix crash in `certtool --to-p12 --load-privkey foo', i.e. exporting
2366   a key and no certificate to PKCS#12.
2367 - Fix objdir != srcdir builds, reported by "Gerrit P. Haase"
2368   <gp@familiehaase.de>.
2369 - Fixes faulty getpass implementation in libextra/opencdk/, reported
2370   by Yoann Vandoorselaere <yoann@prelude-ids.org>.
2371 - Uses memmem instead of strnstr in lib/.
2372 - Using more GNULib portability files, although not yet inside lib/.
2373 - Added gnutls_certificate_verify_peers to gnutls/compat.h.
2374   Nikos deprecated gnutls_certificate_verify_peers in favor of
2375   gnutls_certificate_verify_peers2 earlier in the 1.1 branch.
2376 - Improvements to the manual.
2377 - Add new example "ex-rfc2818" for certificate verification, from Nikos.
2378 - Known bug: the library require snprintf.  This has not yet been
2379   fixed, but will be handled via GNULib later on.
2381 * Version 1.1.18 (2004-08-24)
2382 - Corrected handling of certificate with dates after year 2038.
2383 - Corrected DER decoder which could incorrectly treat input as BER and fail.
2384 - Correct certtool --smime-to-p7 end of line character handling.
2385 - Added example client and server for anonymous authentication.
2386 - Added self test that tests anonymous TLS client and server.
2387 - Added self tests of Nettle and generic crypto layer.
2388 - Added API reference manual in HTML format in doc/reference/ using GTK-DOC.
2389   Online version at <http://www.gnu.org/software/gnutls/reference/>.
2390 - Assume C89 or better; removed checks for size_t, ptrdiff_t and time_t.
2391 - Man pages for API functions are included.
2393 * Version 1.1.17 (2004-08-18)
2394 - Bug fix of padding string in RSA PKCS#1 v1.5 type 2 encryption,
2395   reported by Robey Pointer <robey@danger.com>.
2396 - Generic crypto interface for secret key ciphers, hashes and randomness added.
2397   See section "Experimental" within section "COMPILATION ISSUES" in README.
2398 - Removed length limit on passwords read by 'certtool'.
2399 - Documentation fixes.
2401 * Version 1.1.16 (2004-08-15)
2402 - Fix missing gnulib linker parameter when building certtool.
2403 - Add gnulib module 'progname', needed by module 'error'.
2404 - Improve building with srcdir != objdir.
2406 * Version 1.1.15 (2004-08-15)
2407 - Certtool has simplistic --smime-to-p7 to translate RFC 2633 messages into
2408   PKCS #7 format.
2409 - Ported to Mac OS X / Darwin.
2410 - Ported to FreeBSD.
2412 * Version 1.1.14 (2004-08-09)
2413 - Documentation converted to Texinfo format.
2414 - Bug fix of test suite.
2415 - Configure now print build information, used by Autobuild.
2417 * Version 1.1.13 (2004-08-05)
2418 - Added simple self test suite.
2420 * Version 1.1.12 (2004-08-02)
2421 - Updated the SRP authentication to conform to the
2422   latest (yet unreleased) draft. Unfortunately this breaks
2423   compatibility with previous versions.
2424 - Changed the makefiles to be more portable.
2425 - SRP ciphersuites were moved to the gnutls library.
2426 - Added some default limits in the verification of certificate
2427   chains, to avoid denial of service attacks. Also added 
2428   gnutls_certificate_set_verify_limits() to override them.
2429   Issue pointed out by Patrik Hornik <patrik@hornik.sk>.
2430 - Added gnutls_certificate_verify_peers2().
2432 * Version 1.1.11 (2004-07-16)
2433 - Added the '_t' suffix to all exported symbols.
2434 - Fixed bug in RSA encryption, report and patch by Martijn Koster 
2435   <mak@greenhills.co.uk>.
2436 - Corrected a bug in certificate verification. Pointed out by
2437   Yoann Vandoorselaere <yoann@prelude-ids.org>
2438 - Added the GNUTLS_VERIFY_DO_NOT_ALLOW_SAME flags to the
2439   verification functions.
2440 - The ephemeral DH and RSA parameters are no longer stored in the
2441   session resume DB.
2442 - Do not free the SRP (prime and generator) parameters obtained from the 
2443   callback if they are the static ones defined in extra.h
2444 - Eliminated some memory leaks. Reported by Yoann Vandoorselaere.
2446 * Version 1.1.10 (2004-06-12)
2447 - Added gnutls_sign_algorithm_get_name() and gnutls_pk_algorithm_get_name()
2448 - Corrected bug in TLS renegotiation.
2449 - Corrected bug in OpenPGP key loading using a callback.
2450 - gnutls-srpcrypt was renamed to srptool
2451 - Allow handshake requests by the client.
2452 - Automatically disable certificate types that do not have corresponding
2453   certificates.
2454 - Added gnutls_auth_client_get_type() and gnutls_auth_server_get_type()
2455 - Opencdk library is being included if not found.
2456 - certtool can now add ip address SAN extension.
2457 - certtool has now support for more X.520 DN attribute types.
2458 - Better handling of EOF in gnutls_record_recv().
2459 - _gnutls_deinit() is no longer used. Sessions are not
2460   automatically removed any more, on abnormal termination.
2461 - Corrected session resuming in SRP ciphersuites.
2462 - Updated to conform to the latest srp draft (draft-ietf-tls-srp-07)
2463 - Added new functions to allow access to the ephemeral
2464   Diffie Hellman parameters.
2465 - Added the functions gnutls_x509_crt_get_pk_rsa_raw() and
2466   gnutls_x509_crt_get_pk_dsa_raw() to retrieve parameters from certificates.
2467 - Added the functions gnutls_dh_get_group(), gnutls_dh_get_pubkey() and
2468   gnutls_rsa_export_get_pubkey() to retrieve parameters of the DH or
2469   RSA-EXPORT key exchange.
2470 - Some fixes in the session resuming code.
2471 - Added gnutls_openpgp_keyring_check_id().
2473 * Version 1.1.9 (2004-04-14)
2474 - Added support for authority key identifier and the extended key usage
2475   X.509 extension fields. The certtoool was updated to support them.
2476 - The RC2 cipher is no more included. The one in libgcrypt is now used.
2477 - Added batch support to certtool. Now it can use templates.
2479 * Version 1.1.8 (2004-04-07)
2480 - Implemented all the tests for the SRP group parameters in
2481   client side. This may lead to incompatibility with very
2482   old gnutls servers.
2483 - Corrected bug in RSA parameters handling which could cause
2484   unexpected crashes.
2485 - Optimized the copying of rsa_params.
2487 * Version 1.1.7 (2004-03-29)
2488 - Added gnutls_certificate_set_params_function() and 
2489   gnutls_anon_set_params_function() that set the RSA or DH
2490   parameters using a callback.
2491 - Added functions gnutls_rsa_params_cpy(), gnutls_dh_params_cpy()
2492   and gnutls_x509_privkey_cpy().
2493 - Corrected a compilation issue when opencdk was installed in a
2494   non standard directory.
2495 - Deprecated: gnutls_srp_server_set_select_function(), 
2496   gnutls_certificate_client_set_select_function(), gnutls_srp_server_set_select_function().
2498 * Version 1.1.6 (2004-02-24)
2499 - Several bug fixes, by Arne Thomassen.
2500 - Fixed a bug where 'server name' extension was always sent.
2502 * Version 1.1.5 (2004-01-06)
2503 - Added the gnutls_sign_algorithm type.
2505 * Version 1.1.4 (2004-01-04)
2506 - Improved gnutls-cli's SRP behaviour in SRP ciphersuites.
2507   If they are of highest priority then the abbreviated handshake
2508   is used.
2509 - Removed all references of missing files.
2510 - Changed handshake behaviour to send the lowest TLS version
2511   when an unsupported version was advertized. The current behaviour
2512   is to send the maximum version we support.
2513 - Corrected problem printing the DC attributes in a DN.
2515 * Version 1.1.3 (2003-12-30)
2516 - Implemented TLS 1.1 (and also obsoleted the TLS 1.0 CBC protection
2517   hack).
2519 * Version 1.1.2 (2003-12-28)
2520 - Added CRL verification functionality to certtool.
2521 - Corrected the CRL distribution point extension handling.
2523 * Version 1.1.1 (2003-12-26)
2524 - Added PKCS #7 support to certtool utility.
2525 - Added support for reading and generating CRL distribution
2526   points extensions in certificates.
2527 - Added support for generating CRLs in the library and the
2528   certtool utility.
2529 - Added support for the Subject Key ID PKIX extension.
2531 * Version 1.1.0 (2003-12-21)
2532 - The error codes GNUTLS_E_NO_TEMPORARY_DH_PARAMS and GNUTLS_E_NO_TEMPORARY_RSA_PARAMS
2533   are no longer returned by the handshake function. Ciphersuites that
2534   require temporary parameters are removed when such parameters do not exist.
2535 - Added the callbacks gnutls_certificate_client_retrieve_function() and
2536   gnutls_certificate_server_retrieve_function(), to allow a client or a server
2537   to specify certificates for the handshake without storing them to the
2538   credentials structure.
2539 - Added support for generating and exporting DSA private keys.
2540 - Added gnutls_x509_crt_set_key_usage() and certtool can now set the
2541   certificate's key usage.
2542 - Added gnutls_openpgp_key_get_key_usage().
2544 * Version 1.0.25 (2005-04-27)
2545 - Corrected bug in record packet parsing that could lead
2546   to a denial of service attack.
2547 - Corrected bug in RSA key export.
2549 * Version 1.0.24 (2005-01-18)
2550 - Corrected several bugs found by Marcin Garski <mgarski@post.pl>
2552 * Version 1.0.23 (2004-11-13)
2553 - Replace GNU LD version script with Libtool -export-symbols-regex,
2554   from Joe Orton <joe@manyfish.co.uk>.
2555 - Copy libtasn1 has been updated to version 0.2.11.
2556 - Corrected the write of CRL distribution points.
2557 - It is now possible to generate PKCS#12 structures without private
2558   keys using "certtool --to-p12", suggested by Fabian Fagerholm
2559   <fabbe@paniq.net>.
2561 * Version 1.0.22 (2004-10-28)
2562 - Print DN of certificates with unknown characters in them, but in hexform
2563   only.
2564 - Corrected bug in _gnutls_x509_get_dn_oid(), and returns the
2565   actual OID.
2566 - Added second precision to the X.509 parsing functions.
2567 - Add parameter --la-file to libgnutls-config and libgnutls-extra-config,
2568   tiny patch contributed by Joe Orton <joe@manyfish.co.uk>.
2569 - Add pkg-config meta files, suggested by Stéphane LOEUILLET
2570   <stephane.loeuillet@tiscali.fr>.
2571 - Fix memory initializaion bug in gnutls_certificate_set_x509_trust,
2572   tiny patch by Aleix Conchillo Flaque <aleix@member.fsf.org>.
2573 - Fix certtool --password for PKCS #12, back ported from 1.1.x branch.
2574 - Fix library order in libgnutls*-config --libs output, to permit
2575   static linking, reported by Yoann Vandoorselaere
2576   <yoann@prelude-ids.org>.
2578 * Version 1.0.21 (2004-10-07)
2579 - Fix memory leak in gnutls_certificate_verify_peers and
2580   gnutls_certificate_free_credentials, report and patch by Simon
2581   Posnjak <simon.posnjak@cetrtapot.si>.
2582 - Fix crash in `certtool --to-p12 --load-privkey foo', i.e. exporting
2583   a key and no certificate to PKCS#12.
2584 - Fix objdir != srcdir builds, reported by "Gerrit P. Haase"
2585   <gp@familiehaase.de>.
2586 - Avoid redefining getpass if system already has it, reported by
2587   Yoann Vandoorselaere <yoann@prelude-ids.org>.
2588 - Add new example "ex-rfc2818" for certificate verification, from Nikos.
2589 - Known bug: the library require snprintf.
2591 * Version 1.0.20 (2004-08-18)
2592 - Bug fix of padding string in RSA PKCS#1 v1.5 type 2 encryption,
2593   reported by Robey Pointer <robey@danger.com>.
2595 * Version 1.0.19 (2004-08-09)
2596 - Bug fix of test suite.
2598 * Version 1.0.18 (2004-08-05)
2599 - Added simple self test suite.
2601 * Version 1.0.17 (2004-08-02)
2602 - Updated the SRP authentication to conform to the
2603   latest (yet unreleased) draft. Unfortunately this breaks
2604   compatibility with previous versions.
2605 - Changed the makefiles to be more portable.
2606 - Added some default limits in the verification of certificate
2607   chains, to avoid denial of service attacks. Also added 
2608   gnutls_certificate_set_verify_limits() to override them.
2609   Issue pointed out by Patrik Hornik <patrik@hornik.sk>.
2610 - Added gnutls_certificate_verify_peers2().
2612 * Version 1.0.16 (2004-07-10)
2613 - Do not free the SRP (prime and generator) parameters obtained from the 
2614   callback if they are the static ones defined in extra.h.
2615 - Eliminated some memory leaks. Reported by Yoann Vandoorselaere.
2616 - Some fixes in the makefiles.
2618 * Version 1.0.15 (2004-06-29)
2619 - Fixed bug in RSA encryption, report and patch by Martijn Koster 
2620   <mak@greenhills.co.uk>.
2621 - Corrected a bug in certificate verification. Pointed out by
2622   Yoann Vandoorselaere <yoann@prelude-ids.org>.
2624 * Version 1.0.14 (2004-06-12)
2625 - Automatically disable certificate types that do not have corresponding
2626   certificates.
2627 - Updates in the documentation.
2628 - certtool can now add ip address SAN extension.
2629 - certtool has now support for more X.520 DN attribute types.
2630 - Opencdk library is being included if not found.
2631 - Added gnutls_openpgp_keyring_check_id().
2632 - Corrected a serious bug in the included libtasn1 library.
2633 - Corrected session resuming in SRP ciphersuites.
2634 - Updated to conform to the latest srp draft (draft-ietf-tls-srp-07)
2635 - Added the functions gnutls_x509_crt_get_pk_rsa_raw() and
2636   gnutls_x509_crt_get_pk_dsa_raw() to retrieve parameters from certificates.
2637 - Some fixes in the session resuming code.
2639 * Version 1.0.13 (2004-04-29)
2640 - Some complilation fixes.
2641 - Added the --xml parameter to the certtool utility.
2643 * Version 1.0.12 (2004-04-23)
2644 - Corrected bug in OpenPGP key loading using a callback.
2645 - Renamed gnutls-srpcrypt to srptool
2646 - Allow handshake requests by the client.
2647 * Things backported from the development branch:
2648 - Added support for authority key identifier and the extended key usage
2649   X.509 extension fields. The certtoool was updated to support them.
2650 - Added batch support to certtool. Now it can use templates.
2651 - The RC2 cipher is no more included. The one in libgcrypt is now used.
2653 * Version 1.0.11 (2004-04-17)
2654 - Added gnutls_sign_algorithm_get_name() and gnutls_pk_algorithm_get_name()
2655 - Corrected bug in TLS renegotiation.
2657 * Version 1.0.10 (2004-04-03)
2658 - Corrected bug in RSA parameters handling which could cause
2659   unexpected crashes.
2660 - Corrected bug in SSL 3.0 authentication.
2662 * Version 1.0.9 (2004-03-29)
2663 - Added gnutls_certificate_set_params_function() and 
2664   gnutls_anon_set_params_function() that set the RSA or DH
2665   parameters using a callback.
2666 - Added functions gnutls_rsa_params_cpy(), gnutls_dh_params_cpy()
2667   and gnutls_x509_privkey_cpy().
2668 - Corrected a compilation issue when opencdk was installed in a
2669   non standard directory.
2670 - Documented the changes need in multi-threaded application due
2671   to the new libgcrypt.
2673 * Version 1.0.8 (2004-02-28)
2674 - Corrected bug in mutual certificate authentication in SSL 3.0.
2676 * Version 1.0.7 (2004-02-25)
2677 - Implemented TLS 1.1 (and also obsoleted the TLS 1.0 CBC protection
2678   hack).
2679 - Some updates in the documentation.
2681 * Version 1.0.6 (2004-02-12)
2682 * Backported things from the development branch (while maintaining
2683   backwards compatibility):
2684 - Improved gnutls-cli's SRP behaviour in SRP ciphersuites.
2685   If they are of highest priority then the abbreviated handshake
2686   is used.
2687 - The error codes GNUTLS_E_NO_TEMPORARY_DH_PARAMS and GNUTLS_E_NO_TEMPORARY_RSA_PARAMS
2688   are no longer returned by the handshake function. Ciphersuites that
2689   require temporary parameters are removed when such parameters do not exist.
2690 - Added the callbacks gnutls_certificate_client_retrieve_function() and
2691   gnutls_certificate_server_retrieve_function(), to allow a client or a server
2692   to specify certificates for the handshake without storing them to the
2693   credentials structure.
2694 - Added support for generating and exporting DSA private keys.
2696 * Version 1.0.5 (2004-02-11)
2697 - Fixed a bug where 'server name' extension was always sent.
2698 * Backported things from the development branch:
2699 - Added CRL verification functionality to certtool.
2700 - Corrected the CRL distribution point extension handling.
2701 - Added PKCS #7 support to certtool utility.
2702 - Added support for reading and generating CRL distribution
2703   points extensions in certificates.
2704 - Added support for generating CRLs in the library and the
2705   certtool utility.
2706 - Added support for the Subject Key ID PKIX extension.
2707 - Added the gnutls_sign_algorithm type.
2709 * Version 1.0.4 (2004-01-04)
2710 - Changed handshake behaviour to send the lowest TLS version
2711   when an unsupported version was advertized. The current behaviour
2712   is to send the maximum version we support.
2713 - certtool no longer asks the password in unencrypted private
2714   keys.
2715 - The source is now compiled to use the reentrant libc functions.
2717 * Version 1.0.3 (2003-12-21)
2718 - Corrected bug in gnutls_bye() which made it return an error code
2719   of INVALID_REQUEST instead of success.
2720 - Corrected a bug in the GNUTLS_KEY key usage definitions.
2722 * Version 1.0.2 (2003-12-18)
2723 - Corrected a bug in the RSA key generation. This was
2724   generating unusable RSA keys.
2726 * Version 1.0.1 (2003-12-10)
2727 - Some minor fixes in the makefiles. They now include CFLAGS
2728   from libgcrypt or opencdk if installed in a non standard directory.
2729 - Fixed the SRP detection test in gnutls-cli-debug.
2730 - Added gnutls_rsa_params_export_pkcs1() and gnutls_rsa_params_import_pkcs1().
2732 * Version 1.0.0 (2003-12-04)
2733 - Exported the static SRP group parameters.
2734 - Some fixes in the certificate authenticated SRP ciphersuites.
2735 - Improved the support for draft-ietf-tls-srp-05. The two-phase
2736   handshake is now fully supported without any interaction with
2737   the application layer (except for a callback).
2739 * Version 0.9.99 (2003-11-28)
2740 - Some fixes in the gnutls.h header for the gnutls_server_name_set()
2741   and gnutls_server_name_get() prototypes.
2742 - Exported the gnutls_x509_privkey_sign_data(), gnutls_x509_privkey_verify_data() 
2743   and gnutls_x509_crt_verify_data().
2744 - Some fixes in the openpgp authentication.
2745 - Removed the Twofish cipher.
2747 * Version 0.9.98 (2003-11-16)
2748 - The openssl compatibility layer was moved to gnutls-openssl
2749   library instead of being included in the gnutls-extra library.
2750 - Added the RIPEMD ciphersuites defined in draft-ietf-tls-openpgp-keys-04.
2751 - Building with openpgp support is now mandatory.
2752 - gnutls4 compatibility header is no longer included by default in
2753   gnutls.h.
2754 - gnutls8 function usage yelds a deprecation warning in gcc3.
2755 - gnutls_x509_*_set_dn_by_oid() and gnutls_x509_*_get_*_dn_by_oid()
2756   functions have a raw_flag parameter added.
2757 - Added gnutls_x509_*_get_dn_oid() and gnutls_x509_crt_get_extension_oid()
2758   functions which return the available OIDs.
2760 * Version 0.9.97 (2003-11-11)
2761 - The certtool utility can now generate PKCS #12 structures
2762   without specifying a certificate.
2763 - Added capability to read CRLs to certtool.
2764 - Corrected some functions which return GNUTLS_E_SHORT_MEMORY_BUFFER
2765   to properly set the required buffer size.
2766 - Corrected a bug in libgcrypt detection.
2768 * Version 0.9.96 (2003-11-09)
2769 - Some changes to allow compilation with mingw32.
2770 - Several code cleanups.
2772 * Version 0.9.95 (2003-11-02)
2773 - Improved the verification functions. Added new verification
2774   output flags and removed the unused and redundant ones.
2775 - Improved the OpenPGP key support.
2776 - The prime utility was removed, and its functionality was moved
2777   to certtool.
2779 * Version 0.9.94 (2003-10-30)
2780 - Added manpages for the included programs.
2781 - Documented and improved the certtool utility. 
2782 - Added PKCS #12 support to certtool utility.
2784 * Version 0.9.93 (2003-10-26)
2785 - Corrected some compilation issues.
2786 - Improved the certtool command line utility.
2788 * Version 0.9.92 (2003-10-25)
2789 - The RFC2818 hostname verification is now case insensitive.
2790 - Added support for generating X.509 certificates.
2791 - Added the certtool, a tool for generating X.509 certificates
2793 * Version 0.9.91 (2003-10-17)
2794 - Fixed a compilation issue in the openpgp authentication part.
2796 * Version 0.9.90 (2003-10-08)
2797 - Updated the openpgp key API (depends on the unreleased new
2798   opencdk).
2800 * Version 0.9.8 (2003-10-02)
2801 - Updated the SRP implementation to follow the latest draft
2802   (draft-ietf-tls-srp-05).
2803 - Improved the gnutls-cli behaviour in error handling,
2804   and added a check for the peer's hostname.
2805 - Use versioned symbols in the library (where available).
2806 - RIJNDAEL ciphersuites were renamed to AES.
2808 * Version 0.9.7 (2003-08-25)
2809 - The tex files are now included in the distribution.
2810 - The library can now decrypt PKCS #12 files encrypted with
2811   the RC2-40 cipher.
2812 - The missing rfc2818_hostname object is now included.
2813 - Several corrections and bug fixes in the library by 
2814   Arne Thomassen <arne@arne-thomassen.de>.
2815 - CR is now allowed in the base64 decoder.
2817 * Version 0.9.6 (2003-06-28)
2818 - Added gnutls_x509_privkey_get_key_id() and gnutls_x509_crt_get_key_id()
2819   functions which return a unique (per public key) ID. These can
2820   be used to check if the private key corresponds to a given certificate.
2821 - Corrections in the TLS layer openpgp certificate packet parser.
2822 - Corrected a bug in the record layer buffering, which affected
2823   the case where external pull function was used. Report and patch
2824   by Sergey Poznyakoff <gray@Mirddin.farlep.net>.
2825 - Corrected a bug in gnutls-srpcrypt where a non allocated variable
2826   was freed.
2827 - SRP programs are now built by default.
2828 - Added API to read and write to PKCS #12 structures. Prototypes
2829   in gnutls/pkcs12.h.
2830 - The gnutls_transport_ptr type was changed to a pointer type (void*).
2832 * Version 0.9.5 (2003-04-06)
2833 - Several improvements in the PKCS #7 handling
2834 - Eliminated several hard coded constants in MPI parameters.
2836 * Version 0.9.4 (2003-03-28)
2837 - Corrected a parsing error in the Certificate request message.
2838 - Corrected behaviour when a certificate request message is received.
2839   Now a certificate packet is always sent, and in SSL 3.0 cipher suites
2840   a no_certificate alert is sent instead.
2841 - Added functionality to generate PKCS #7 structures (with certificates).
2843 * Version 0.9.3 (2003-03-24)
2844 - Support for MD2 was dropped. 
2845 - Improved the error logging functions, by adding a level, and
2846   by allowing debugging messages just by increasing the level.
2847 - The diffie Hellman ciphersuites are now of higher priority than
2848   the plain RSA.
2849 - The RSA premaster secret version check can no longer be disabled.
2850 - Implemented the counter measure discussed in the paper "Attacking
2851   RSA-based Sessions in SSL/TLS", against the attack described in the
2852   same paper.
2853 - Added the functions: gnutls_handshake_get_last_in(), 
2854   gnutls_handshake_get_last_out().
2855 - The gnutls_certificate_set_rsa_params() was renamed to 
2856   gnutls_certificate_set_rsa_export_params().
2857 - Added the new functions: gnutls_certificate_set_x509_key()
2858   gnutls_certificate_set_x509_trust(), gnutls_certificate_set_x509_crl(),
2859   gnutls_x509_crt_export(), gnutls_x509_crl_export().
2860 - Added support for encoding and decoding PKCS #8 2.0 encrypted 
2861   RSA private keys.
2863 * Version 0.9.2 (2003-03-15)
2864 - Some corrections in the memory mapping code (file is unmapped after 
2865   it is read).
2866 - Added support for PKCS#10 certificate requests generation.
2868 * Version 0.9.1 (2003-03-12)
2869 - Corrected a bug in 64 bit architectures, which affected the
2870   serial number calculation in the record layer.
2871 - Added gnutls_certificate_free_keys() which deletes all the
2872   private keys and certificates from the credentials structure.
2873 - Corrected a broken buffer check in _gnutls_io_read_buffered(),
2874   which caused some unexpected packet length errors. Report and patch
2875   by Ian Peters <itp@ximian.com>.
2876 - Added ability to generate RSA keys.
2877 - Increased the maximum parameter size in order to read some large keys
2878   by some CAs. Patch by Ian Peters <itp@ximian.com>.
2879 - Added an strnstr() function and the requirement in some functions to
2880   use null terminated PEM structures is no more.
2881 - Use mmap() if available to read files.
2882 - Fixed a memory leak in SRP code reported by Rupert Kittinger 
2883   <r.kittinger@efkon.com>.
2885 * Version 0.9.0 (2003-03-03)
2886 - This version is not binary compatible with the previous ones.
2887 - The library notifies the application on empty and illegal SRP usernames, 
2888   so that proper notification (via an alert) is sent to the peer.
2889 - Added ability to send some messages back to the application using
2890   the gnutls_global_set_log_function().
2891 - gnutls_dh_params_generate() and gnutls_rsa_params_generate() now use 
2892   gnutls_malloc() to allocate the output parameters.
2893 - Added support for MD2 algorithm in certificate signature verification.
2894 - The RSA and DH parameter generation interface was changed. Added
2895   ability to import and export from and to PKCS3 structures. This 
2896   was needed to read parameters generated using the openssl dhparam tool.
2897 - Several changes in the temporary (DH/RSA) parameter codebase. No DH 
2898   parameters are now included in the library. Also the credentials structure 
2899   can now hold only one temporary parameter of a kind.
2900 - Added a new Certificate, CRL, Private key and PKCS7 structures handling 
2901   API, defined in gnutls/x509.h
2902 - Added gnutls_certificate_set_verify_flags() function to allow setting the 
2903   verification flags in the credentials structure. They will be used in the
2904   *verify_peers functions.
2905 - Added protection against the new TLS 1.0 record layer timing attack.
2906 - Added support for Certificate revocation lists. Functions defined
2907   in gnutls/x509.h
2908 - The only functions that were removed are:
2909   gnutls_x509_certificate_to_xml()
2910   gnutls_x509_extract_dn_string()
2911 - Ported to libtasn1 0.2.x
2913 * Version 0.8.1 (2003-01-22)
2914 - Improved the SRP support, to prevent attackers guessing the
2915   available usernames by brute force.
2916 - Improved the SRP detection in gnutls-cli-debug
2917 - Some fixes which now allow compilation.
2919 * Version 0.8.0 (2003-01-20)
2920 - Added gnutls_x509_extract_dn_string() which returns a 
2921   distinguished name in a single string.
2922 - Added gnutls_openpgp_extract_key_name_string() which returns
2923   an openpgp user ID in a single string.
2924 - Added gnutls_x509_extract_certificate_ca_status() which returns
2925   the CA status of the given certificate.
2926 - Added SRP-6 support. Follows draft-ietf-tls-srp-04.
2927 - If libtasn1 is not present in the system, it is included in 
2928   the main gnutls library.
2929 - If liblzo is present in the system, then the included minilzo
2930   will not be used, and libgnutls-extra will depend on liblzo.
2931 - GNUTLS_E_PARSING_ERROR error code was replaced by GNUTLS_E_BASE64_DECODING_ERROR, 
2932   and GNUTLS_E_SRP_PWD_PARSING_ERROR. GNUTLS_E_ASCII_ARMOR_ERROR was also 
2933   replaced by GNUTLS_E_BASE64_DECODING_ERROR.
2935 * Version 0.6.0 (2002-12-08)
2936 - Added "gnutls/compat4.h" header. This is included in gnutls.h
2937   to emulate the old 0.4.x API.
2938 - Example programs are now stored in doc/examples/
2939 - Several improvements and updates in the documentation.
2940 - Added the certificate authenticated SRP cipher suites.
2941 - gnutls_x509_extract_certificate_dn_string() was updated to return
2942   an RFC2253 conforming string.
2943 - Added the SRP related functions:
2944    gnutls_srp_verifier()
2945    gnutls_srp_base64_encode()
2946    gnutls_srp_base64_decode()
2947 - Added the function gnutls_srp_set_server_credentials_function()
2948   to allow retrieving SRP parameters from an external backend - other
2949   than password files.
2950 - Added the function gnutls_openpgp_set_recv_key_function()
2951   which can be used to set a callback, to get OpenPGP keys.
2952 - Exported the functions:
2953    gnutls_malloc()
2954    gnutls_free()
2955   which should be used by callback functions.
2956 - Changed the semantics of gnutls_pem_base64_encode_alloc()
2957   and gnutls_pem_base64_decode_alloc(). In the default case
2958   were the gnutls library is used with malloc/realloc/free,
2959   these are binary compatible.
2961 * Version 0.5.11 (2002-11-05)
2962 - Some fixes in 'gnutls-cli' client program to prevent some segmentation 
2963   faults at exit.
2964 - Example programs found in the documentation can now be generated by
2965   running "make examples" in doc/tex directory.
2966 - Added more descriptive error strings, to gnutls_strerror().
2967 - Documented error codes, and the function reference list is now sorted.
2968 - Optimized buffering code.
2969 - gnutls_x509_extract_certificate_dn_string() was rewritten.
2970 - Added GNUTLS_E_SHORT_MEMORY_BUFFER error code, which is returned in the
2971   case where the memory buffer provided is not long enough.
2972 - Depends on the new OpenCDK 0.3.2.
2974 * Version 0.5.10 (2002-10-13)
2975 - Updated documentation.
2976 - Added server name extension. This allows clients to specify the
2977   name of the server they connect to. Useful to HTTPS.
2978 - Several corrections in the code base, mostly in signed/unsigned,
2979   checkings.
2981 * Version 0.5.9 (2002-10-10)
2982 - Corrected some code which worked fine in gcc 3.2, but not with any
2983   other compiler.
2984 - Updated 'gnutls-cli' with the '--starttls' option, to allow testing
2985   starttls implementations.
2986 - Added gnutls_x509_extract_key_pk_algorithm() function which extracts
2987   the private key type, of a DER encoded key.
2988 - Added gnutls_x509_extract_certificate_dn_string() which returns the 
2989   certificate's distinguished name in a single string.
2990 - Added gnutls_set_default_priority() and gnutls_set_default_export_priority()
2991   functions, to avoid calling all the *_priority() functions if the defaults
2992   are acceptable.
2993 - Added int gnutls_x509_check_certificates_hostname() which check whether
2994   the given hostname matches the owner of the given X.509 certificate.
2996 * Version 0.5.8 (2002-09-25)
2997 - Updated documentation.
2998 - Added gnutls_record_get_direction() which replaces the obsolete
2999   gnutls_handshake_get_direction().
3000 - Added function to convert error codes to alert descriptions
3001 - Added LZO compression
3003 * Version 0.5.7 (2002-09-11)
3004 - Some fixes in the memory allocation functions (realloc).
3005 - Improved the string functions used in XML certificate generation.
3006 - Removed dependency on libgdbm.
3007 - Corrected bug in gnutls_dh_params_set() which affected
3008   gnutls_dh_params_deinit().
3009 - Corrected bug in session resuming code in server side.
3011 * Version 0.5.6 (2002-09-06)
3012 - Corrected bugs in SRP implementation, which prevented gnutls 
3013   to interoperate with other implementations. (interoperability testing
3014   was done by David Taylor)
3015 - Corrected bug in cert_type extension.
3016 - Corrected extension type checks which used an 8 bit extension size,
3017   instead of 16 bits.
3018 - Added versioning in the XML output of certificate functions.
3019 - Removed the X.509 test suite.
3021 * Version 0.5.5 (2002-09-03)
3022 - Updated the SRP implementation to the latest draft. The blowfish
3023   crypt implementation was removed, since the new draft does not allow
3024   other hash algorithms except for the srpsha. 
3025 - Renamed all the constructed types in order to have more consistent
3026   names. 
3027 - Improved the certificate and key read functions. Now they can read 
3028   the certificate and the private key from the same file.
3029 - Updated and corrected documentation.
3031 * Version 0.5.4 (2002-08-27)
3032 - Fixes in TLS 1.0 PRF and SSL3 random functions.
3033 - gnutls_handshake_set_exportable_detection() was obsoleted.
3034 - Added gnutls_openpgp_extract_key_id() which returns the key ID.
3035 - Corrected bug in DHE key exchange
3036 - Added support for temporary RSA keys which are needed for the
3037   export cipher suites.
3038 - Added the TLS_RSA_EXPORT_ARCFOUR_40_MD5 ciphersuite.
3040 * Version 0.5.3 (2002-08-23)
3041 - No changes. Replaces the tarball of 0.5.2 which accidentally contained
3042   code from the unstable branch.
3044 * Version 0.5.2 (2002-08-22)
3045 - Added an error code that is returned in clients which connect
3046   to export only servers. This must be enabled using the
3047   gnutls_handshake_set_exportable_detection() function.
3048 - Updated openssl compatibility layer.
3049 - Added gnutls_handshake_get_direction() function which returns
3050   the state of the handshake when interrupted.
3052 * Version 0.5.1 (2002-07-17)
3053 - Corrected the m4 macros which used <gnutls.h> instead of
3054   <gnutls/gnutls.h>
3055 - Documentation fixes
3056 - Added gnutls_transport_set_ptr2() function, which accepts two
3057   different pointers, to be used while receiving, and 
3058   while sending data.
3059 - Semantic changes in gnutls_record_set_max_size(). The requested
3060   size is now immediately enforced at the output buffers.
3061 - gnutls_global_init_extra() now fails if the library versions do
3062   not match.
3063 - Fixes in client and server example programs. Null encryption can
3064   be used in these programs, to assist in debuging.
3065 - Fixes in zlib compression code.
3067 * Version 0.5.0 (2002-07-06)
3068 - Added X.509 certificate tests in tests/ directory
3069 - Removed stubs for SRP and Anonymous authentication. They served
3070   no purpose since they are always included, unless it was requested
3071   not to do so.
3072 - Added gnutls_handshake_set_private_extensions() function. This
3073   function can be used to enable private (gnutls specific) cipher suites
3074   and compression algorithms.
3075 - Added check for C99 macro support by the compiler.
3076 - Added functions gnutls_b64_encode_fmt2() and gnutls_b64_decode_fmt2()
3077 - Added the new libtasn1 library.
3078 - Removed the gdbm backend. Applications are now responsible for the
3079   session resuming backend. The gnutls-serv application contains an
3080   simple example on how to use gdbm for resuming.
3081 - Headers for the gnutls library are now installed in $(includedir)/gnutls
3082 - Added an OpenSSL compatible interface (with some limitations).
3083 - Added functions to convert DER encoded certificates to XML format.
3085 * Version 0.4.4 (2002-06-24)
3086 - Corrected bug in PKCS-1 RSA encryption which prevented gnutls to encrypt
3087   using keys of some specific size.
3089 * Version 0.4.3 (2002-05-23)
3090 - The gnutls-extra library now compiles fine, if the opencdk library is
3091   not present.
3092 - Several bug fixes.
3093 - Added gnutls_global_set_mem_func() function, to set the memory allocation
3094   functions, if other than the defaults are to be used.
3095 - The default memory allocation functions are now the ones in libc.
3097 * Version 0.4.2 (2002-05-21)
3098 - Separated ASN.1 structures parser documentation and TLS library
3099   documentation.
3100 - Added gnutls_handshake_set_rsa_pms() function, which disables the
3101   version check in RSA premaster secret.
3102 - Added gnutls_session_is_resumed() function, which reports if a session
3103   is a resumed one.
3104 - Added gnutls_state_set_ptr() and gnutls_state_get_ptr() functions, to
3105   assist in callback functions.
3106 - Replaced the included 1024 bit prime for Diffie Hellman, with a new
3107   random one.
3108 - Relicensed the library under the GNU Lesser General Public License
3109 - Added gnutls-extra library which contains the GPL covered code of gnutls.
3111 * Version 0.4.1 (2002-04-07)
3112 - Now uses alloca() for temporary variables
3113 - Optimized RSA signing
3114 - Added functions to return the peer's certificate activation and
3115   expiration time.
3116 - Corrected time function's behaviour (the time value returned no longer
3117   relate to local timezone).
3119 * Version 0.4.0 (2002-04-01)
3120 - Added support for RFC2630 (PKCS7) X.509 certificate sets
3121 - Added new functions: gnutls_x509_extract_certificate_pk_algorithm(),
3122   gnutls_openpgp_extract_key_pk_algorithm().
3123 - Several optimizations in the Handshake protocol
3124 - Several optimizations in RSA algorithm
3125 - Unified the return values because of small buffers.
3127 * Version 0.3.92 (2002-03-23)
3128 - Updated documentation
3129 - Combined error codes of ASN.1 parser and gnutls
3130 - Removed GNUTLS_CERT_TRUSTED from the CertificateStatus enumeration
3131 - Added protection against CBC chosen plaintext attack (disabled by default)
3132 - Improved and optimized compression support
3134 * Version 0.3.91 (2002-03-03)
3135 - Added gnutls-cli-debug program
3136 - Corrections in session resumption
3137 - Rehandshake can now handle negotiation of different authentication
3138   type.
3139 - gnutls-cli, gnutls-serv, gnutls-srpcrypt and gnutls-cli-debug are 
3140   now being installed.
3142 * Version 0.3.90 (2002-02-24)
3143 - Handshake messages are not kept in memory any more. Now we use 
3144   less memory during a handshake
3145 - Added support for certificates with DSA parameters
3146 - Added DHE_DSS cipher suites
3147 - Key exchange methods changed so they do not depend on the 
3148   certificate type. Added certificate type negotiation TLS extension.
3149 - Added openpgp key support (EXPERIMENTAL)
3150 - Improved Diffie Hellman key exchange support.
3151 - Bug fixes in the RSA key exchange.
3152 - Added check for the requested TLS extensions
3153 - TLS extensions now use a 16 bit type field.
3154 - Added a minimal string library to assist in ASN.1 parsing
3155 - Changes in ASN.1 parser to work with the new bison
3156 - Added gnutls_x509_extract_subject_alt_name(), which deprecates 
3157   gnutls_x509_extract_subject_dns_name()
3158 - gnutls_x509_set_trust_(file/mem) can now be called multiple times
3159 - gnutls_srp_server_set_cred_file() can now be called multiple times
3161 * Version 0.3.5 (2002-01-25)
3162 - Corrected the RSA key exchange method, to avoid attacks against
3163   PKCS-1 formating.
3165 * Version 0.3.4 (2002-01-20)
3166 - Corrected bugs in DHE_RSA key exchange method
3168 * Version 0.3.3 (2002-01-19)
3169 - Added gnutls_x509pki_verify_certificate()
3170 - Added gnutls_x509pki_set_trust_mem() and gnutls_x509pki_set_key_mem()
3171 - Bug fixes in srpcrypt (based on patch by Marc Huber)
3172 - Bug fixes in the Handshake protocol (based on patch by Guillaume Morin)
3173 - Corrected library versioning
3175 * Version 0.3.2 (2002-01-05)
3176 - Corrected bug which did not allow a client to accept multiple CA names
3177 - Added gnutls_fingerprint()
3178 - Added gnutls_x509pki_extract_certificate_serial()
3179 - Added gnutls_b64_encode_fmt() and gnutls_b64_decode_fmt()
3180 - Corrected behaviour in version advertizing
3181 - Updated documentation
3182 - Prefixed all types in gnutls.h with 'GNUTLS_' to avoid namespace collisions
3184 * Version 0.3.1 (2001-12-21)
3185 - Corrections in the configuration files
3186 - Fixes a bug in anonymous authentication
3188 * Version 0.3.0 (2001-12-17)
3189 - Corrected bug in new integer formatting (now we use the old format again)
3190 - Several corrections and usual cleanups
3192 * Version 0.2.91 (2001-12-10)
3193 - Fixes in MPI handling (fixes possible bug with signed integers)
3194 - Removed name indication extension
3195 - Added gnutls_transport_get_ptr() and gnutls_db_get_ptr()
3196 - Optimizations in server certificate callback.
3197 - Fixes in anonymous authentication
3198 - Corrections in client ciphersuite selection
3200 * Version 0.2.90 (2001-12-07)
3201 - gnutls_handshake(), gnutls_read() etc. functions no longer require
3202   the 'SOCKET cd' argument. This argument is set using the function
3203   gnutls_set_transport_ptr().
3204 - introduced gnutls_x509pki_get_peer_certificate_list(). This function returns
3205   a list containing peer's certificate and issuers DER encoded.
3206 - Updated X.509 certificate handling API
3207 - Added callback to select the server certificate
3208 - More consistent function naming (changes in several function names)
3209 - Buffer overflow checking in ASN.1 structures parser
3210 - Updated documentation
3212 * Version 0.2.11 (2001-11-16)
3213 - Changed the meaning of GNUTLS_E_REHANDSHAKE value. If this value
3214   is returned, then the caller should perform a handshake or send
3215   an alert to the peer.
3216 - Made receive buffer dynamic. Normally if no large chunks are received
3217   it occupies less space.
3218 - Added max_record_size extension
3219 - Bugfixes in session handling
3220 - Improved non blocking IO support in the Handshake Protocol
3221 - Usual bugfixes and cleanups
3222 - Documentation updated (includes ASN.1 documentation)
3224 * Version 0.2.10 (2001-11-05)
3225 - Corrected bugs and improved non blocking IO
3226 - Added hooks to use external database to store sessions
3227 - Usual cleanups
3229 * Version 0.2.9 (2001-10-27)
3230 - AUTH_INFO types and structures were moved to library internals
3231 - AUTH_FAILED is no longer returned in SRP authentication
3232   (any fatal error in SRP means auth failed)
3233 - Introduced GNUTLS_E_INTERRUPTED
3234 - Added support for non blocking IO
3235 - gnutls_recv() and gnutls_send() are now obsolete
3236 - Changed semantics of gnutls_rehandshake()
3238 * Version 0.2.4 (2001-10-12)
3239 - Better handling of X.509 certificate extensions
3240 - Added DHE_RSA ciphersuites
3241 - Updated the Name Indication (dnsname) extension
3242 - Improvements in Diffie Hellman primes handling
3244 * Version 0.2.3 (2001-09-19)
3245 - Memory optimizations in gnutls_recv()
3246 - Fixed several memory leaks
3247 - Added ability to specify callback for x509 client certificate selection
3248 - Better documentation
3250 * Version 0.2.2 (2001-08-21)
3251 - Several bugfixes (library and documentation)
3253 * Version 0.2.1 (2001-08-07)
3254 - SRP fixes
3256 * Version 0.2.0 (2001-08-07)
3257 - Partial support for X.509v3 Certificate extensions.
3258 - Added Internal memory handlers
3259 - Removed gnutls_x509_set_cn()
3260 - Added X.509 client authentication
3261 - Several bug fixes and protocol fixes
3263 * Version 0.1.9 (2001-07-30)
3264 - Corrected bug(s) in ChangeCipherSpec packet (fixes renegotiate)
3265 - SRP is updated to conform to the newest draft.
3266 - Added support for DNSNAME extension.
3267 - Reentracy fixes in ASN.1 Parsing.
3268 - Optimizations in hash/hmac functions
3269 - (Error) message handling has changed
3270 - Better Protocol Version handling
3271 - Added X.509 Certificate Verification
3272 - gnutls_read() semantics are now closer to read(2) - added EOF
3273 - Documented some part of gnutls in doc/tex/ using Latex
3275 * Version 0.1.4 (2001-06-22)
3276 - Corrected (srp) base64 encoding.
3277 - Changed bcrypt algorithm to include username.
3278 - Added RSA Ciphersuites (no certificate checking).
3279 - Fixes in SSL 2.0 client hello parsing.
3280 - Added ASN.1 and DER parsers.
3281 - Bugfixes in session resuming
3282 - Updated Ciphersuite selection algorithm
3283 - Added internal representation of X.509 structures.
3284 - Added global state
3286 * Version 0.1.3 (2001-06-01)
3287 - Updated API (and the way it is documented - we use inline documentation)
3288 - Added function to access alert messages.
3289 - Added support for renegotiating parameters.
3290 - Better and Faster Resume Database handling.
3291 - Several bugfixes
3293 * Version 0.1.2 (2001-05-14)
3294 - Updated API
3295 - Fixes in extension handling
3297 * Version 0.1.1 (2001-05-13)
3298 - Added compatibility with Stanford's libsrp library
3300 * Version 0.1.0 (2001-05-09)
3301 - Added SSL 2.0 client hello support
3302 - GNUTLS is a gnu library
3303 - Added support for TLS extensions.
3304 - Added support for SRP
3306 * Version 0.0.7 (2001-01-11)
3307 - Added server side session resuming (using gdbm)
3308 - Added twofish algorithm
3310 * Version 0.0.6 (2000-12-20)
3311 - Added client side session resuming
3312 - Better documentation (check doc/API)
3313 - Better socket handling (gnutls can be used with select())
3314 - Some primitive support for non blocking IO and socket options has been added.
3316 * Version 0.0.5 (2000-12-07)
3317 - Added Compression (using ZLIB)
3318 - Added SSL 3.0 support
3320 ----------------------------------------------------------------------
3321 Copying and distribution of this file, with or without modification,
3322 are permitted in any medium without royalty provided the copyright
3323 notice and this notice are preserved.