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