corrected typos
[gnutls.git] / NEWS
blobc68e4ceaf7e9f7ee02a382635acc23ffcd07988e
1 GnuTLS NEWS -- History of user-visible changes.                -*- outline -*-
2 Copyright (C) 2000-2012 Free Software Foundation, Inc.
3 See the end for copying conditions.
5 * Version 3.1.4 (unreleased)
7 ** libgnutls: gnutls_certificate_verify_peers2() will set flags depending on
8 the available revocation data validity.
10 ** libgnutls: Added priority string %VERIFY_DISABLE_CRL_CHECKS.
12 ** libgnutls: Simplified certificate verification by adding
13 gnutls_certificate_verify_peers3().
15 ** libgnutls: Added support for extension to establish keys
16 for SRTP.
18 ** gnutls-cli: Added --local-dns option.
20 ** danetool: Corrected bug that prevented loading PEM files.
22 ** danetool: Added --check option to allow querying and verifying
23 a site's DANE data.
25 ** libgnutls-dane: Added pkg-config file for the library.
27 ** API and ABI modifications:
28 gnutls_session_get_id2: Added
29 gnutls_certificate_update_verify_flags: Added
30 gnutls_certificate_verify_peers3: Added
31 gnutls_certificate_verification_status_print: Added
32 gnutls_srtp_set_profile: Added
33 gnutls_srtp_set_profile_direct: Added
34 gnutls_srtp_get_selected_profile: Added
35 gnutls_srtp_get_profile_name: Added
36 gnutls_srtp_get_profile_id: Added
37 gnutls_srtp_profile_t: Added
38 dane_cert_type_name: Added
39 dane_match_type_name: Added
40 dane_cert_usage_name: Added
41 dane_verification_status_print: Added
42 GNUTLS_CERT_REVOCATION_DATA_TOO_OLD: Added
43 GNUTLS_CERT_REVOCATION_DATA_INVALID: Added
44 GNUTLS_CERT_UNEXPECTED_OWNER: Added
46 * Version 3.1.3 (released 2012-10-12)
48 ** libgnutls: Added support for the OCSP Certificate Status
49 extension.
51 ** libgnutls: gnutls_certificate_verify_peers2() will use the OCSP
52 certificate status extension in verification.
54 ** libgnutls: Bug fixes in gnutls_x509_privkey_import_openssl().
56 ** libgnutls: Increased maximum password length in the PKCS #12
57 functions.
59 ** libgnutls: Fixed the receipt of session tickets during session resumption.
60 Reported by danblack at http://savannah.gnu.org/support/?108146
62 ** libgnutls: Added functions to export structures in an allocated buffer.
64 ** libgnutls: Added gnutls_ocsp_resp_check_crt() to check whether the OCSP
65 response corresponds to the given certificate.
67 ** libgnutls: In client side gnutls_init() enables the session ticket and
68 OCSP certificate status request extensions by default. The flag
69 GNUTLS_NO_EXTENSIONS can be used to prevent that.
71 ** libgnutls: Several updates in the OpenPGP code. The generating code
72 is fully RFC6091 compliant and RFC5081 support is only supported in client
73 mode.
75 ** libgnutls-dane: Added. It is a library to provide DANE with DNSSEC 
76 certificate verification.
78 ** gnutls-cli: Added --dane option to enable DANE certificate verification.
80 ** danetool: Added tool to generate DANE TLSA Resource Records (RR).
82 ** API and ABI modifications:
83 gnutls_certificate_get_peers_subkey_id: Added
84 gnutls_certificate_set_ocsp_status_request_function: Added
85 gnutls_certificate_set_ocsp_status_request_file: Added
86 gnutls_ocsp_status_request_enable_client: Added
87 gnutls_ocsp_status_request_get: Added
88 gnutls_ocsp_resp_check_crt: Added
89 gnutls_dh_params_export2_pkcs3: Added
90 gnutls_pubkey_export2: Added
91 gnutls_x509_crt_export2: Added
92 gnutls_x509_dn_export2: Added
93 gnutls_x509_crl_export2: Added
94 gnutls_pkcs7_export2: Added
95 gnutls_x509_privkey_export2: Added
96 gnutls_x509_privkey_export2_pkcs8: Added
97 gnutls_x509_crq_export2: Added
98 gnutls_openpgp_crt_export2: Added
99 gnutls_openpgp_privkey_export2: Added
100 gnutls_pkcs11_obj_export2: Added
101 gnutls_pkcs12_export2: Added
102 gnutls_pubkey_import_openpgp_raw: Added
103 gnutls_pubkey_import_x509_raw: Added
104 dane_state_init: Added
105 dane_state_deinit: Added
106 dane_query_tlsa: Added
107 dane_query_status: Added
108 dane_query_entries: Added
109 dane_query_data: Added
110 dane_query_deinit: Added
111 dane_verify_session_crt: Added
112 dane_verify_crt: Added
113 dane_strerror: Added
116 * Version 3.1.2 (released 2012-09-26)
118 ** libgnutls: Fixed bug in gnutls_x509_trust_list_add_system_trust()
119 and gnutls_x509_trust_list_add_trust_mem() that prevented the loading
120 of certificates in the windows platform.
122 ** libgnutls: Corrected bug in OpenPGP subpacket encoding.
124 ** libgnutls: Added support for DTLS/TLS heartbeats by Olga Smolenchuk.
125 (the work was done during Google Summer of Code).
127 ** libgnutls: Added X.509 certificate verification flag 
128 GNUTLS_VERIFY_ALLOW_UNSORTED_CHAIN. This flag allows the verification
129 of unsorted certificate chains and is enabled by default for
130 TLS certificate verification (if gnutls_certificate_set_verify_flags() 
131 does not override it).
133 ** libgnutls: Prints warning on certificates that contain keys of
134 an insecure level. If the %COMPAT priority flag is not specified
135 the TLS connection fails.
137 ** libgnutls: Correctly restore gnutls_record_recv() in DTLS mode
138 if interrupted during the retrasmition of handshake data.
140 ** libgnutls: Better mingw32 support (patch by LRN).
142 ** libgnutls: The %COMPAT keyword, if specified, will tolerate
143 key usage violation errors (they are far too common to ignore).
145 ** libgnutls: Added GNUTLS_STATELESS_COMPRESSION flag to gnutls_init(),
146 which provides a tool to counter compression-related attacks where
147 parts of the data are controlled by the attacker _and_ are placed in
148 separate records (use with care - do not use compression if not sure).
150 ** libgnutls: Depends on libtasn1 2.14 or later.
152 ** certtool: Prints the number of bits of the public key algorithm
153 parameter in a private key.
155 ** API and ABI modifications:
156 gnutls_x509_privkey_get_pk_algorithm2: Added
157 gnutls_heartbeat_ping: Added
158 gnutls_heartbeat_pong: Added
159 gnutls_heartbeat_allowed: Added
160 gnutls_heartbeat_enable: Added
161 gnutls_heartbeat_set_timeouts: Added
162 gnutls_heartbeat_get_timeout: Added
163 GNUTLS_SEC_PARAM_WEAK: Added
164 GNUTLS_SEC_PARAM_INSECURE: Added
166 * Version 3.1.1 (released 2012-09-02)
168 ** gnutls-serv: Listens on IPv6. Patch by Bernhard R. Link.
170 ** certtool: Changes in password handling of certtool.
171 Ask password when required and only if the '--password' option is not
172 given. If the '--password' option is given during key generation then 
173 assume the PKCS #8 file format, instead of ignoring the password.
175 ** tpmtool: No longer asks for key password in registered keys.
177 ** libgnutls: Elliptic curve code was optimized by Ilya Tumaykin.
178 wmNAF is now used for point multiplication and other optimizations.
179 (the major part of the work was done during Google Summer of Code).
181 ** libgnutls: The default pull_timeout_function only uses select
182 instead of a combination of select() and recv() to prevent issues
183 when used in stream sockets in some systems.
185 ** libgnutls: Be tolerant in ECDSA signature violations (e.g. using
186 SHA256 with a SECP384 curve instead of SHA-384), to interoperate with
187 openssl.
189 ** libgnutls: Fixed DSA and ECDSA signature generation in smart
190 cards. Thanks to Andreas Schwier from cardcontact.de for providing
191 me with ECDSA capable smart cards.
193 ** API and ABI modifications:
194 gnutls_sign_algorithm_get: Added
195 gnutls_sign_get_hash_algorithm: Added
196 gnutls_sign_get_pk_algorithm: Added
199 * Version 3.1.0 (released 2012-08-15)
201 ** libgnutls: Added direct support for TPM as a cryptographic module 
202 in gnutls/tpm.h. TPM keys can be used in functions accepting files
203 using URLs of the following types:
204   tpmkey:file=/path/to/file
205   tpmkey:uuid=7f468c16-cb7f-11e1-824d-b3a4f4b20343;storage=user
207 ** libgnutls: Priority string level keywords can be combined.
208 For example the string "SECURE256:+SUITEB128" is now allowed.
210 ** libgnutls: requires libnettle 2.5.
212 ** libgnutls: Use the PKCS #1 1.5 encoding provided by nettle (2.5)
213 for encryption and signatures.
215 ** libgnutls: Added GNUTLS_CERT_SIGNATURE_FAILURE to differentiate between
216 generic errors and signature verification errors in the verification
217 functions.
219 ** libgnutls: Added gnutls_pkcs12_simple_parse() as a helper function
220 to simplify parsing in most PKCS #12 use cases.
222 ** libgnutls: gnutls_certificate_set_x509_simple_pkcs12_file() adds
223 the whole certificate chain (if any) to the credentials structure, instead
224 of only the end-user certificate.
226 ** libgnutls: Key import functions such as gnutls_pkcs12_simple_parse()
227 and gnutls_x509_privkey_import_pkcs8(), return consistently 
228 GNUTLS_E_DECRYPTION_FAILED if the input structure is encrypted but no 
229 password was provided.
231 ** libgnutls: Added gnutls_handshake_set_timeout() a function that
232 allows to set the maximum time spent in a handshake.
234 ** libgnutlsxx: Added session::set_transport_vec_push_function. Patch
235 by Alexandre Bique.
237 ** tpmtool: Added. It is a tool to generate private keys in the
238 TPM.
240 ** gnutls-cli: --benchmark-tls was split to --benchmark-tls-kx
241 and --benchmark-tls-ciphers
243 ** certtool: generated PKCS #12 structures may hold more than one
244 private key. Patch by Lucas Fisher.
246 ** certtool: Added option --null-password to generate/decrypt keys
247 that use a NULL password (in schemas that distinguish between NULL
248 an empty passwords).
250 ** minitasn1: Upgraded to libtasn1 version 2.13.
252 ** API and ABI modifications:
253 GNUTLS_CERT_SIGNATURE_FAILURE: Added
254 GNUTLS_CAMELLIA_192_CBC: Added
255 GNUTLS_PKCS_NULL_PASSWORD: Added
256 gnutls_url_is_supported: Added
257 gnutls_pkcs11_obj_list_import_url2: Added
258 gnutls_pkcs11_obj_set_pin_function: Added
259 gnutls_pkcs11_privkey_set_pin_function: Added
260 gnutls_pkcs11_get_pin_function: Added
261 gnutls_privkey_import_tpm_raw: Added
262 gnutls_privkey_import_tpm_url: Added
263 gnutls_privkey_import_pkcs11_url: Added
264 gnutls_privkey_import_openpgp_raw: Added
265 gnutls_privkey_import_x509_raw: Added
266 gnutls_privkey_import_ext2: Added
267 gnutls_privkey_import_url: Added
268 gnutls_privkey_set_pin_function: Added
269 gnutls_tpm_privkey_generate: Added
270 gnutls_tpm_key_list_deinit: Added
271 gnutls_tpm_key_list_get_url: Added
272 gnutls_tpm_get_registered: Added
273 gnutls_tpm_privkey_delete: Added
274 gnutls_pubkey_import_tpm_raw: Added
275 gnutls_pubkey_import_tpm_url: Added
276 gnutls_pubkey_import_url: Added
277 gnutls_pubkey_verify_hash2: Added
278 gnutls_pubkey_set_pin_function: Added
279 gnutls_x509_privkey_import2: Added
280 gnutls_x509_privkey_import_openssl: Added
281 gnutls_x509_crt_set_pin_function: Added
282 gnutls_load_file: Added
283 gnutls_pkcs12_simple_parse: Added
284 gnutls_certificate_set_x509_system_trust: Added
285 gnutls_certificate_set_pin_function: Added
286 gnutls_x509_trust_list_add_system_trust: Added
287 gnutls_x509_trust_list_add_trust_file: Added
288 gnutls_x509_trust_list_add_trust_mem: Added
289 gnutls_pk_to_sign: Added
290 gnutls_handshake_set_timeout: Added
291 gnutls_pubkey_verify_hash: Deprecated (use gnutls_pubkey_verify_hash2)
292 gnutls_pubkey_verify_data: Deprecated (use gnutls_pubkey_verify_data2)
295 * Version 3.0.22 (released 2012-08-04)
297 ** libgnutls: gnutls_certificate_set_x509_system_trust()
298 is now supported on OpenBSD.
300 ** libgnutls: When verifying a certificate chain make sure it is chain.
301 If the chain is wronly interrupted at some point then truncate it,
302 and only try to verify the correct part. Patch by David Woodhouse
304 ** libgnutls: Restored the behavior of gnutls_x509_privkey_import_pkcs8()
305 which now may (again) accept a NULL password.
307 ** certtool: Allow the user to choose the hash algorithm
308 when signing certificate request or certificate revocation list.
309 Patch by Petr Písař.
311 ** API and ABI modifications:
312 No changes since last version.
315 * Version 3.0.21 (released 2012-07-02)
317 ** libgnutls: fixed bug in gnutls_x509_privkey_import() 
318 that prevented the loading of EC private keys when DER
319 encoded. Reported by David Woodhouse.
321 ** libgnutls: In DTLS larger to mtu records result to 
322 GNUTLS_E_LARGE_PACKET instead of being truncated.
324 ** libgnutls: gnutls_dtls_get_data_mtu() is more precise. Based
325 on patch by David Woodhouse.
327 ** libgnutls: Fixed memory leak in PKCS #8 key import.
329 ** libgnutls: Added support for an old version of the DTLS protocol
330 used by openconnect vpn client for compatibility with Cisco's AnyConnect 
331 SSL VPN. It is marked as GNUTLS_DTLS0_9. Do not use it for newer protocols
332 as it has issues.
334 ** libgnutls: Corrected bug that prevented resolving PKCS #11 URLs 
335 if only the label is specified. Patch by David Woodhouse.
337 ** libgnutls: When EMSGSIZE errno is seen then GNUTLS_E_LARGE_PACKET
338 is returned.
340 ** API and ABI modifications:
341 gnutls_dtls_set_data_mtu: Added
342 gnutls_session_set_premaster: Added
345 * Version 3.0.20 (released 2012-06-05)
347 ** libgnutls: Corrected bug which prevented the parsing of
348 handshake packets spanning multiple records.
350 ** libgnutls: Check key identifiers when checking for an issuer.
352 ** libgnutls: Added gnutls_pubkey_verify_hash2()
354 ** libgnutls: Added gnutls_certificate_set_x509_system_trust()
355 that loads the trusted CA certificates from system locations
356 (e.g. trusted storage in windows and CA bundle files in other systems).
358 ** certtool: Added support for the URI subject alternative
359 name type in certtool.
361 ** certtool: Increase to 128 the maximum number of distinct options
362 (e.g. dns_names) allowed.
364 ** gnutls-cli: If --print-cert is given, print the certificate, 
365 even on verification failure.
367 ** API and ABI modifications:
368 gnutls_pk_to_sign: Added
369 gnutls_pubkey_verify_hash2: Added
370 gnutls_certificate_set_x509_system_trust: Added
373 * Version 3.0.19 (released 2012-04-22)
375 ** libgnutls: When decoding a PKCS #11 URL the pin-source field
376 is assumed to be a file that stores the pin. Based on patch
377 by David Smith.
379 ** libgnutls: gnutls_record_check_pending() no longer
380 returns unprocessed data, and thus ensure the non-blocking
381 of the next call to gnutls_record_recv(). 
383 ** libgnutls: Added strict tests in Diffie-Hellman and
384 SRP key exchange public keys.
386 ** libgnutls: in ECDSA and DSA TLS 1.2 authentication be less
387 strict in hash selection, and allow a stronger hash to
388 be used than the appropriate, to improve interoperability
389 with openssl.
391 ** tests: Disabled floating point test, and corrections
392 in pkcs12 decoding tests.
394 ** API and ABI modifications:
395 No changes since last version.
398 * Version 3.0.18 (released 2012-04-02)
400 ** certtool: Avoid a Y2K38 bug when generating certificates.
401 Patch by Robert Millan.
403 ** libgnutls: Make sure that GNUTLS_E_PREMATURE_TERMINATION
404 is returned on premature termination (and added unit test).
406 ** libgnutls: Fixes for W64 API. Patch by B. Scott Michel.
408 ** libgnutls: Corrected VIA padlock detection for old 
409 VIA processors. Reported by Kris Karas.
411 ** libgnutls: Updated assembler files.
413 ** libgnutls: Time in generated certificates is stored
414 as GeneralizedTime instead of UTCTime (which only stores
415 2 digits of a year).
417 ** minitasn1: Upgraded to libtasn1 version 2.13 (pre-release).
419 ** API and ABI modifications:
420 gnutls_x509_crt_set_private_key_usage_period: Added
421 gnutls_x509_crt_get_private_key_usage_period: Added
422 gnutls_x509_crq_set_private_key_usage_period: Added
423 gnutls_x509_crq_get_private_key_usage_period: Added
424 gnutls_session_get_random: Added
427 * Version 3.0.17 (released 2012-03-17)
429 ** command line apps: Always link with local libopts.
431 ** API and ABI modifications:
432 No changes since last version.
435 * Version 3.0.16 (released 2012-03-16)
437 ** minitasn1: Upgraded to libtasn1 version 2.12 (pre-release).
439 ** libgnutls: Corrected SRP-RSA ciphersuites when used under TLS 1.2.
441 ** libgnutls: included assembler files for MacOSX.
443 ** p11tool: Small fixes in handling of the --private command 
444 line option.
446 ** certtool: The template option allows for setting the domain
447 component (DC) option of the distinguished name, and the ocsp_uri
448 as well as the ca_issuers_uri options.
450 ** API and ABI modifications:
451 gnutls_x509_crt_set_authority_info_access: Added
454 * Version 3.0.15 (released 2012-03-02)
456 ** test suite: Only run under valgrind in the development
457 system (the full git repository)
459 ** command line apps: Link with local libopts if the 
460 installed is an old one.
462 ** libgnutls: Eliminate double free during SRP
463 authentication. Reported by Peter Penzov.
465 ** libgnutls: Corrections in record packet parsing.
466 Reported by Matthew Hall.
468 ** libgnutls: Cryptodev updates and fixes.
470 ** libgnutls: Corrected issue with select() that affected
471 FreeBSD. This prevented establishing DTLS sessions.
472 Reported by Andreas Metzler.
474 ** libgnutls: Corrected rehandshake and resumption
475 operations in DTLS. Reported by Sean Buckheister.
477 ** libgnutls: PKCS #11 objects that do not have ID
478 no longer crash listing. Reported by Sven Geggus.
480 ** API and ABI modifications:
481 No changes since last version.
484 * Version 3.0.14 (released 2012-02-24)
486 ** command line apps: Included libopts doesn't get installed
487 by default.
489 ** libgnutls: Eliminate double free on wrongly formatted
490 certificate list. Reported by Remi Gacogne.
492 ** libgnutls: cryptodev code corrected, updated to account
493 for hashes and GCM mode.
495 ** libgnutls: Eliminated memory leak in PCKS #11 initialization.
496 Report and fix by Sam Varshavchik.
498 ** API and ABI modifications:
499 No changes since last version.
502 * Version 3.0.13 (released 2012-02-18)
504 ** gnutls-cli: added the --ocsp option which will verify
505 the peer's certificate with OCSP.
507 ** gnutls-cli: added the --tofu option and if specified, gnutls-cli
508 will use an ssh-style authentication method.
510 ** gnutls-cli: if no --x509cafile is provided a default is
511 assumed (/etc/ssl/certs/ca-certificates.crt), if it exists.
513 ** ocsptool: Added --ask parameter, to verify a certificate's
514 status from an ocsp server.
516 ** command line apps: Use gnu autogen (libopts) to parse command
517 line arguments and template files.
519 ** tests: Added stress test for DTLS packet losses and 
520 out-of-order receival. Contributed by Sean Buckheister.
522 ** libgnutls: Several updates and corrections in the DTLS
523 DTLS lost packet handling and retransmission timeouts.
524 Report and patches by Sean Buckheister.
526 ** libgnutls: Added new functions to easily allow the usage of
527 a trust on first use (SSH-style) authentication.
529 ** libgnutls: SUITEB128 and SUITEB192 priority strings account
530 for the RFC6460 requirements.
532 ** libgnutls: Added new security parameter GNUTLS_SEC_PARAM_LEGACY
533 to account for security level of 96-bits.
535 ** libgnutls: In client side if server does not advertise any
536 known CAs and only a single certificate is set in the credentials,
537 sent that one.
539 ** libgnutls: Added functions to parse authority key identifiers
540 when stored as a 'general name' and serial combo.
542 ** libgnutls: Added function to force explicit reinitialization
543 of PKCS #11 modules. This is required on the child process after
544 a fork (if PKCS #11 functionality is desirable).
546 ** libgnutls: Depend on p11-kit 0.11.
548 ** API and ABI modifications:
549 gnutls_dtls_get_timeout: Added
550 gnutls_verify_stored_pubkey: Added
551 gnutls_store_pubkey: Added
552 gnutls_store_commitment: Added
553 gnutls_x509_crt_get_authority_key_gn_serial: Added
554 gnutls_x509_crl_get_authority_key_gn_serial: Added
555 gnutls_pkcs11_reinit: Added
556 gnutls_ecc_curve_list: Added
557 gnutls_priority_certificate_type_list: Added
558 gnutls_priority_sign_list: Added
559 gnutls_priority_protocol_list: Added
560 gnutls_priority_compression_list: Added
561 gnutls_priority_ecc_curve_list: Added
562 gnutls_tdb_init: Added
563 gnutls_tdb_set_store_func: Added
564 gnutls_tdb_set_store_commitment_func: Added
565 gnutls_tdb_set_verify_func: Added
566 gnutls_tdb_deinit: Added
569 * Version 3.0.12 (released 2012-01-20)
571 ** libgnutls: Added OCSP support.
572 There is a new header file gnutls/ocsp.h and a set of new functions
573 under the gnutls_ocsp namespace.  Currently the functionality provided
574 is to parse and extract information from OCSP requests/responses, to
575 generate OCSP requests and to verify OCSP responses.  See the manual
576 for more information.  Run ./configure with --disable-ocsp to build
577 GnuTLS without OCSP support.
579 This work was sponsored by Smoothwall <http://smoothwall.net/>.
581 ** ocsptool: Added new command line tool.
582 The tool can parse OCSP request/responses, generate OCSP requests and
583 verify OCSP responses.  See the manual for more information.
585 ** certtool: --outder option now works for private
586 and public keys as well.
588 ** libgnutls: Added error code GNUTLS_E_NO_PRIORITIES_WERE_SET
589 to warn when no or insufficient priorities were set.
591 ** libgnutls: Corrected an alignment issue in ECDH
592 key generation which prevented some keys from being
593 correctly aligned in rare circumstances.
595 ** libgnutls: Corrected memory leaks in DH parameter
596 generation and ecc_projective_check_point().
598 ** libgnutls: Added gnutls_x509_dn_oid_name() to 
599 return a descriptive name of a DN OID.
601 ** API and ABI modifications:
602 gnutls_pubkey_encrypt_data: Added
603 gnutls_x509_dn_oid_name: Added
604 gnutls_session_resumption_requested: Added
605 gnutls/ocsp.h: Added new header file.
606 gnutls_ocsp_print_formats_t: Added new type.
607 gnutls_ocsp_resp_status_t: Added new type.
608 gnutls_ocsp_cert_status_t: Added new type.
609 gnutls_x509_crl_reason_t: Added new type.
610 gnutls_ocsp_req_add_cert: Added.
611 gnutls_ocsp_req_add_cert_id: Added.
612 gnutls_ocsp_req_deinit: Added.
613 gnutls_ocsp_req_export: Added.
614 gnutls_ocsp_req_get_cert_id: Added.
615 gnutls_ocsp_req_get_extension: Added.
616 gnutls_ocsp_req_get_nonce: Added.
617 gnutls_ocsp_req_get_version: Added.
618 gnutls_ocsp_req_import: Added.
619 gnutls_ocsp_req_init: Added.
620 gnutls_ocsp_req_print: Added.
621 gnutls_ocsp_req_randomize_nonce: Added.
622 gnutls_ocsp_req_set_extension: Added.
623 gnutls_ocsp_req_set_nonce: Added.
624 gnutls_ocsp_resp_deinit: Added.
625 gnutls_ocsp_resp_export: Added.
626 gnutls_ocsp_resp_get_certs: Added.
627 gnutls_ocsp_resp_get_extension: Added.
628 gnutls_ocsp_resp_get_nonce: Added.
629 gnutls_ocsp_resp_get_produced: Added.
630 gnutls_ocsp_resp_get_responder: Added.
631 gnutls_ocsp_resp_get_response: Added.
632 gnutls_ocsp_resp_get_signature: Added.
633 gnutls_ocsp_resp_get_signature_algorithm: Added.
634 gnutls_ocsp_resp_get_single: Added.
635 gnutls_ocsp_resp_get_status: Added.
636 gnutls_ocsp_resp_get_version: Added.
637 gnutls_ocsp_resp_import: Added.
638 gnutls_ocsp_resp_init: Added.
639 gnutls_ocsp_resp_print: Added.
640 gnutls_ocsp_resp_verify: Added.
642 * Version 3.0.11 (released 2012-01-06)
644 ** libgnutls: Corrected functionality of 
645 gnutls_record_get_direction(). Reported by Philip Allison.
647 ** libgnutls: Provide less timing information when decoding
648 TLS/DTLS record packets. Patch by Nadhem Alfardan.
650 ** API and ABI modifications:
651 No changes since last version.
654 * Version 3.0.10 (released 2012-01-04)
656 ** gnutls-cli/serv: Set don't fragment bit in DTLS sessions
657 in Linux as well as in BSD.
659 ** gnutls-cli: Fixed reading from windows terminals.
661 ** libgnutls: When GNUTLS_OPENPGP_FMT_BASE64 is specified
662 the stream is assumed to be base64 encoded (previously
663 the encoding was auto-detected). This avoids a decoding
664 issue in windows systems.
666 ** libgnutls: Corrected ciphersuite GNUTLS_ECDHE_PSK_AES_256_CBC_SHA384
668 ** libgnutls: Added ciphersuites: GNUTLS_PSK_WITH_AES_256_GCM_SHA384
669 and GNUTLS_DHE_PSK_WITH_AES_256_GCM_SHA384.
671 ** libgnutls: Added function gnutls_random_art() to convert 
672 fingerprints to images (currently ascii-art).
674 ** libgnutls: Corrected bug in DSA private key parsing, which
675 prevented the verification of the key.
677 ** API and ABI modifications:
678 gnutls_random_art: Added
681 * Version 3.0.9 (released 2011-12-13)
683 ** certtool: Added new parameter --dh-info.
685 ** certtool: -l option was overloaded so if combined with --priority
686 it will only list the ciphersuites that are enabled by the given
687 priority string.
689 ** libgnutls: Added new priority string %SERVER_PRECEDENCE, which
690 changes the ciphersuite selection procedure. If specified the server
691 priorities will be used for selection instead of the client's.
693 ** libgnutls: Optimizations in Diffie-Hellman parameters generation
694 and key exchange.
696 ** libgnutls: When session tickets are negotiated and used in a
697 session, a server will not store that session data into its cache.
699 ** libgnutls: Added the SECP192R1 curve.
701 ** libgnutls: Added gnutls_priority_get_cipher_suite_index() to
702 allow listing the ciphersuites enabled in a priority structure.
703 It outputs an index to be used in gnutls_get_cipher_suite_info().
705 ** libgnutls: Optimizations in the elliptic curve code --timing
706 attacks resistant code is only used in ECDSA private key operations.
708 ** doc: man pages for API functions generation was fixed and are
709 now added again in the distribution.
711 ** API and ABI modifications:
712 GNUTLS_ECC_CURVE_SECP192R1: New curve definition
713 gnutls_priority_get_cipher_suite_index: Added
716 * Version 3.0.8 (released 2011-11-12)
718 ** certtool: Certtool -e returns error code on verification
719 failure.
721 ** certtool: Verifies parameters of generated keys.
723 ** libgnutls: Corrected ECC key generation (introduced in 3.0.6)
725 ** libgnutls: Provide less timing information when decoding
726 TLS/DTLS record packets.
728 ** doc: man pages for API functions were removed.
729 The reason was that the code that auto-generated the man pages missed
730 many APIs and we couldn't fix it (volunteers welcome).  See the info
731 manual or the GTK-DOC manual instead.
733 ** API and ABI modifications:
734 gnutls_x509_privkey_verify_params: Added
737 * Version 3.0.7 (released 2011-11-08)
739 ** libgnutls: Corrected fix in gnutls_session_get_data()
740 to report the actual session size when the provided buffer
741 is not enough.
743 ** libgnutls: Fixed ciphersuite GNUTLS_ECDHE_RSA_AES_128_CBC_SHA256,
744 which was using a wrong MAC algorithm. Reported by Fabrice Gautier.
746 ** API and ABI modifications:
747 No changes since last version.
750 * Version 3.0.6 (released 2011-11-07)
752 ** gnutls-guile: Compilation fixes.
754 ** libgnutls: Fixed possible buffer overflow in 
755 gnutls_session_get_data(). Reported and fix by Alban Crequy.
757 ** libgnutls: Bug fixes in the ciphersuites with NULL cipher.
758 Reported by Fabrice Gautier.
760 ** libgnutls: Bug fixes in ECC code for 64-bit MIPS systems. 
761 Thanks to Joseph Graham for providing access to such a system.
763 ** libgnutls: Correctly report ECC private key parsing errors.
764 Reported by Fabrice Gautier.
766 ** libgnutls: In ECDHE verify that the received point lies on
767 the selected curve. The ECDHE ciphersuites now take precendence
768 to plain DHE.
770 ** API and ABI modifications:
771 No changes since last version.
774 * Version 3.0.5 (released 2011-10-27)
776 ** libgnutls-extra: is no more
778 ** libgnutls: Corrections in order to compile with mingw32.
780 ** libgnutls: Corrections in VIA padlock code for VIA C5 processor
781 and new detection of PHE with support for partial hashing.
783 ** libgnutls: Corrected bug in gnutls_x509_data2hex. Report and fix 
784 by Vincent Untz.
786 ** minitasn1: Upgraded to libtasn1 version 2.10.
788 ** API and ABI modifications:
789 No changes since last version.
792 * Version 3.0.4 (released 2011-10-15)
794 ** libgnutls-extra: gnutls_register_md5_handler() was
795 removed.
797 ** gnutls-cli-debug: Added more tests including AES-GCM,
798 SHA256 and elliptic curves.
800 ** gnutls-cli: Added --benchmark-soft-ciphers to benchmark
801 the software version of the ciphers instead of hw accelerated 
802 (where available)
804 ** libgnutls: Public key ID calculation is consistent among
805 all structures. It uses a SHA-1 hash of the subjectPublicKeyInfo.
807 ** libgnutls: gnutls_privkey_t allows setting external callback
808 to perform signing or decryption. Can be set using
809 gnutls_privkey_import_ext()
811 ** libgnutls: A certificate credentials structure can be
812 used with a gnutls_privkey_t and a gnutls_pcert_st
813 structure using gnutls_certificate_set_key().
815 ** libgnutls: Fixes to enable external signing callback to
816 operate with TLS 1.2. 
818 ** libgnutls: Fixed crash when printing ECDSA certificate key 
819 ID. Reported by Erik Jensen.
821 ** libgnutls: Corrected VIA padlock code for C3. In C3 benchmarks 
822 show a 50x increase in AES speed and a 14x increase in VIA nano. Added 
823 support for hashes and HMACs.
825 ** libgnutls: Compilation fixed when p11-kit is not detected.
827 ** libgnutls: Fixed the deflate compression code.
829 ** libgnutls: Added gnutls_x509_crt_get_authority_info_access.
830 Used to get the PKIX Authority Information Access (AIA) field.
832 ** libgnutls: gnutls_x509_crt_print supports printing AIA fields.
834 ** libgnutls: Added ability to gnutls_privkey_t to operate with
835 signing callback function.
837 ** API and ABI modifications:
838 gnutls_x509_crt_get_authority_info_access (x509.h): Added function.
839 gnutls_privkey_import_ext: Added function.
840 gnutls_certificate_set_key: Added function.
841 gnutls_info_access_what_t (x509.h): Added enum.
842 GNUTLS_OID_AIA (x509.h): Added symbol.
843 GNUTLS_OID_AD_OCSP (x509.h): Added symbol.
844 GNUTLS_OID_AD_CAISSUERS (x509.h): Added symbol.
846 * Version 3.0.3 (released 2011-09-18)
848 ** libgnutls: Added gnutls_record_get_discarded() to return the
849 number of discarded records in a DTLS session.
851 ** libgnutls: All functions related to RSA-EXPORT were deprecated.
852 Support for RSA-EXPORT ciphersuites will be ceased in future versions.
854 ** libgnutls: Memory leak fixes in credentials private key 
855 deinitialization. Reported by Dan Winship.
857 ** libgnutls: Memory leak fixes in ECC ciphersuites.
859 ** libgnutls: Do not send an empty extension structure in server 
860 hello. This affected old implementations that do not support extensions. 
861 Reported by J. Cameijo Cerdeira.
863 ** libgnutls: Allow CA importing of 0 certificates to succeed.
864 Reported by Jonathan Nieder <jrnieder@gmail.com> in
865 <http://bugs.debian.org/640639>.
867 ** libgnutls: Added support for VIA padlock AES optimizations.
868 (disabled by default)
870 ** libgnutls: Added support for elliptic curves in
871 PKCS #11.
873 ** libgnutls: Added gnutls_pkcs11_privkey_generate()
874 to allow generating a key in a token.
876 ** p11tool: Added generate-rsa, generate-dsa and 
877 generate-ecc options to allow generating private
878 keys in the token.
880 ** libgnutls: gnutls_transport_set_lowat dummy macro was 
881 removed.
883 ** API and ABI modifications:
884 gnutls_pkcs11_privkey_generate: Added
885 gnutls_pubkey_import_ecc_raw: Added
886 gnutls_pubkey_import_ecc_x962: Added
887 gnutls_pubkey_get_pk_ecc_x962: Added
888 gnutls_record_get_discarded: Added
891 * Version 3.0.2 (released 2011-09-01)
893 ** libgnutls: OpenPGP certificate type is not enabled
894 by default.
896 ** libgnutls: Added %NO_EXTENSIONS priority string.
898 ** libgnutls: Corrected issue in gnutls_record_recv()
899 triggered on encryption or compression error.
901 ** libgnutls: Compatibility fixes in CPU ID detection 
902 for i386 and old GCC.
904 ** gnutls-cli: Benchmark applications were incorporated
905 with it.
907 ** libgnutls: Corrected parsing of XMPP subject
908 alternative names.
910 ** libgnutls: Allow for out-of-order ChangeCipherSpec
911 message in DTLS.
913 ** libgnutls: gnutls_certificate_set_x509_key() and
914 gnutls_certificate_set_openpgp_key() operate as in 2.10.x
915 and allow the release of the private key during the
916 lifetime of the certificate structure.
918 ** API and ABI modifications:
919 GNUTLS_PRIVKEY_IMPORT_COPY: new gnutls_privkey_import() flag
922 * Version 3.0.1 (released 2011-08-20)
924 ** libgnutls: gnutls_certificate_set_x509_key_file() and 
925 friends support server name indication. If multiple 
926 certificates are set using these functions the proper one 
927 will be selected during a handshake. 
929 ** libgnutls: Added AES-256-GCM which was left out from
930 the previous release. Reported by Benjamin Hof.
932 ** libgnutls: When asking for a PKCS# 11 PIN multiple 
933 times, the flags in the callback were not being updated 
934 to reflect for PIN low count or final try.
936 ** libgnutls: Do not allow second instances of PKCS #11
937 modules.
939 ** libgnutls: fixed alignment issue in AES-NI code.
941 ** libgnutls: The config file at gnutls_pkcs11_init()
942 is being read if provided.
944 ** libgnutls: Ensure that a certificate list specified
945 using gnutls_certificate_set_x509_key() and friends, is 
946 sorted according to TLS specification (from subject to issuer).
948 ** libgnutls: Added GNUTLS_X509_CRT_LIST_FAIL_IF_UNSORTED flag for
949 gnutls_x509_crt_list_import. It checks whether the list to be 
950 imported is properly sorted.
952 ** crywrap: Added to the distribution. It is an application
953 that proxies TLS session to a port using a plaintext service.
955 ** doc: Many GTK-DOC improvements.
957 ** i18n: Translations were updated.
959 ** API and ABI modifications:
960 GNUTLS_X509_CRT_LIST_FAIL_IF_UNSORTED: New element in gnutls_certificate_import_flags
961 GNUTLS_PKCS11_PIN_WRONG: New flag for PIN callback
964 * Version 3.0.0 (released 2011-07-29)
966 ** libgnutls: writev_emu: stop on the first incomplete write. Patch by
967 Sjoerd Simons.
969 ** libgnutls: Fix zlib handling in gnutls.pc. Patch by Andreas
970 Metzler.
972 ** certtool: bug fixes in certificate request generation. Patch
973 by Petr Písař.
975 ** API and ABI modifications:
976 gnutls_pcert_list_import_x509_raw: ADDED
979 * Version 2.99.4 (released 2011-07-23)
981 ** doc: documentation updates.
983 ** libgnutls: gnutls_rsa_params_t is now identical to gnutls_x509_privkey_t
984 to avoid thread-safety issues. Reported by Sam Varshavchik.
986 ** libgnutls: Added compatibility mode with /etc/gnutls/pkcs11.conf
988 ** libgnutls: license upgraded to LGPLv3
990 ** libgnutls: gnutls_srp_verifier() returns data allocated with gnutls_malloc()
991 for consistency.
993 ** API and ABI modifications:
994 No changes since last version.
997 * Version 2.99.3 (released 2011-06-18)
999 ** libgnutls: Added new PKCS #11 flags to force an object being private or
1000 not. (GNUTLS_PKCS11_OBJ_FLAG_MARK_PRIVATE and GNUTLS_PKCS11_OBJ_FLAG_MARK_NOT_PRIVATE)
1002 ** libgnutls: Added SUITEB128 and SUITEB192 priority
1003 strings to enable the NSA SuiteB cryptography ciphersuites.
1005 ** libgnutls: Added gnutls_pubkey_verify_data2() that will
1006 verify data provided the signature algorithm.
1008 ** libgnutls: Simplified the handling of handshake messages to 
1009 be hashed. Instead of hashing during the handshake process we now 
1010 keep the data until handshake is over and hash them on request. 
1011 This uses more memory but eliminates issues with TLS 1.2 and 
1012 simplifies code.
1014 ** libgnutls: Added AES-GCM optimizations using the PCLMULQDQ
1015 instruction. Uses Andy Polyakov's assembly code.
1017 ** libgnutls: Added gnutls_x509_trust_list_add_named_crt() and
1018 gnutls_x509_trust_list_verify_named_crt() that allow having a
1019 list of certificates in the trusted list that will be associated
1020 with a name (e.g. server name) and will not be used as CAs.
1022 ** libgnutls: PKCS #11 back-end rewritten to use p11-kit
1023 http://p11-glue.freedesktop.org/p11-kit.html. Rewrite by
1024 Stef Walter.
1026 ** libgnutls: Added ECDHE-PSK ciphersuites for TLS (RFC 5489).
1028 ** API and ABI modifications:
1029 gnutls_pubkey_verify_data2: ADDED
1030 gnutls_ecc_curve_get: ADDED
1031 gnutls_x509_trust_list_add_named_crt: ADDED
1032 gnutls_x509_trust_list_verify_named_crt: ADDED
1033 gnutls_x509_privkey_verify_data: REMOVED
1034 gnutls_crypto_bigint_register: REMOVED
1035 gnutls_crypto_cipher_register: REMOVED
1036 gnutls_crypto_digest_register: REMOVED
1037 gnutls_crypto_mac_register: REMOVED
1038 gnutls_crypto_pk_register: REMOVED
1039 gnutls_crypto_rnd_register: REMOVED
1040 gnutls_crypto_single_cipher_register: REMOVED
1041 gnutls_crypto_single_digest_register: REMOVED
1042 gnutls_crypto_single_mac_register: REMOVED
1043 GNUTLS_KX_ECDHE_PSK: New key exchange method
1044 GNUTLS_VERIFY_DISABLE_CRL_CHECKS: New certificate verification flag.
1045 GNUTLS_PKCS11_OBJ_FLAG_MARK_PRIVATE: New PKCS#11 object flag.
1046 GNUTLS_PKCS11_OBJ_FLAG_MARK_NOT_PRIVATE: New PKCS#11 object flag.
1049 * Version 2.99.2 (released 2011-05-26)
1051 ** libgnutls: Added Elliptic curve support. This is not
1052 enabled by default. Requires priority strings:
1053 +CURVE-ALL: to add all supported curves
1054 +ECDHE-RSA: to add ephemeral ECDHE with an RSA-signed certificate
1055 +ECDHE-ECDSA: to add ephemeral ECDHE with an ECDSA-signed certificate
1056 +ANON-ECDHE: to add anonymous ECDH
1058 ** libgnutls: PKCS #11 URLs conform to the latest draft
1059 being http://tools.ietf.org/html/draft-pechanec-pkcs11uri-04.
1061 ** certtool: Can now load private keys and public keys from PKCS #11 tokens
1062 via URLs.
1064 ** libgnutls: Added gnutls_global_set_audit_log_function() that allows
1065 to get important auditing information including the corresponding session.
1066 That might be useful to block DoS or other attacker from specific IPs.
1068 ** libgnutls: gnutls_pkcs11_privkey_import_url() will now correctly read
1069 the public key algorithm of the key.
1071 ** libgnutls: Added gnutls_certificate_get_issuer() and
1072 gnutls_x509_trust_list_get_issuer() to compensate for the
1073 missing gnutls_certificate_get_x509_cas().
1075 ** libgnutls: Added gnutls_x509_crq_verify() to allow
1076 verification of the self signature in a certificate request.
1077 This allows verifying whether the owner of the private key
1078 is the generator of the request.
1080 ** libgnutls: gnutls_x509_crt_set_crq() implicitly verifies
1081 the self signature of the request.
1083 ** API and ABI modifications:
1084 gnutls_certificate_get_issuer: ADDED
1085 gnutls_x509_trust_list_get_issuer: ADDED
1086 gnutls_x509_crq_verify: ADDED
1087 gnutls_global_set_audit_log_function: ADDED
1088 gnutls_ecc_curve_get_name: ADDED
1089 gnutls_ecc_curve_get_size: ADDED
1090 gnutls_x509_privkey_import_ecc_raw: ADDED
1091 gnutls_x509_privkey_export_ecc_raw: ADDED
1092 gnutls_global_set_time_function: ADDED
1094 GNUTLS_E_ECC_NO_SUPPORTED_CURVES: New error code
1095 GNUTLS_E_ECC_UNSUPPORTED_CURVE: New error code
1096 GNUTLS_KX_ECDHE_RSA: New key exchange method
1097 GNUTLS_KX_ECDHE_ECDSA: New key exchange method
1098 GNUTLS_KX_ANON_ECDH: New key exchange method
1099 GNUTLS_PK_ECC: New public key algorithm
1100 GNUTLS_SIGN_ECDSA_SHA1: New signature algorithm
1101 GNUTLS_SIGN_ECDSA_SHA256: New signature algorithm
1102 GNUTLS_SIGN_ECDSA_SHA384: New signature algorithm
1103 GNUTLS_SIGN_ECDSA_SHA512: New signature algorithm 
1104 GNUTLS_SIGN_ECDSA_SHA224: New signature algorithm
1105 GNUTLS_ECC_CURVE_INVALID: New curve definition
1106 GNUTLS_ECC_CURVE_SECP224R1: New curve definition
1107 GNUTLS_ECC_CURVE_SECP256R1: New curve definition
1108 GNUTLS_ECC_CURVE_SECP384R1: New curve definition
1109 GNUTLS_ECC_CURVE_SECP521R1: New curve definition
1112 * Version 2.99.1 (released 2011-04-23)
1114 ** libgnutls: LZO support was removed.
1116 ** libgnutls: Corrections in SSLv2 client hello parsing.
1118 ** libgnutls: Added support for AES-NI if detected. Uses
1119 Andy Polyakov's AES-NI code.
1121 ** libgnutls: Restored HMAC-MD5 for compatibility. Although considered 
1122 weak, several sites require it for connection. It is enabled for
1123 "NORMAL" and "PERFORMANCE" priority strings.
1125 ** libgnutls: depend on libdl.
1127 ** libgnutls-extra: Dropped support of LZO compression via liblzo.
1129 ** libgnutls: gnutls_transport_set_global_errno() was removed. This
1130 function required GnuTLS to access system specific data, for no reason.
1131 Use gnutls_transport_set_errno(), or your system's errno fascility
1132 instead.
1134 ** libgnutls: Added gnutls_certificate_set_retrieve_function2()
1135 to set a callback to retrieve a certificate. The certificate is
1136 received in a format that requires no processing from gnutls thus
1137 it is suitable when performance is required.
1139 ** API and ABI modifications:
1140 gnutls_transport_set_global_errno: REMOVED
1141 gnutls_certificate_set_retrieve_function2: ADDED
1143 * Version 2.99.0 (released 2011-04-09)
1145 ** libgnutls: Added Datagram TLS support.
1147 ** libgnutls: Uses a single configure file and a single
1148 gnulib library to save space.
1150 ** libgnutls: Several bug fixes.
1152 ** libgnutls: gnutls_transport_set_lowat() is no more.
1154 ** libgnutls-openssl: modified to use modern gnutls' functions.
1155 This introduces an ABI incompatibility with previous versions.
1157 ** libgnutls: Corrected signature generation and verification
1158 in the Certificate Verify message when in TLS 1.2. Reported
1159 by Todd A. Ouska.
1161 ** libgnutlsxx: The C++ interface returns exception on
1162 every error and not only on fatal ones. This allows easier
1163 handling of errors.
1165 ** libgnutls: Corrected issue in DHE-PSK ciphersuites that ignored    
1166 the PSK callback.
1168 ** libgnutls: SRP and PSK are no longer set on the default priorities. 
1169 They have to be explicitly set.
1171 ** libgnutls: During handshake message verification using DSS
1172 use the hash algorithm required by it.
1174 ** libgnutls: gnutls_recv() return GNUTLS_E_PREMATURE_TERMINATION
1175 on unexpected EOF, instead of GNUTLS_E_UNEXPECTED_PACKET_LENGTH.
1177 ** libgnutls: Added GCM mode (interoperates with tls.secg.org)
1179 ** libgnutls-extra: Inner application extension was removed.
1180 It was never standardized nor published as an RFC.
1182 ** libgnutls: Added new certificate verification functions, that
1183 can provide more details and are more efficient. Check 
1184 gnutls_x509_trust_list_*.
1186 ** certtool: Uses the new certificate verification functions for
1187 --verify-chain.
1189 ** certtool: Added new certificate verification functionality
1190 using the --verify option. Combined with --load-ca-certificate
1191 it can verify a certificate chain against a list of certificates.
1193 ** Several files unnecessarily included <gcrypt.h>; this has been fixed.
1195 ** API and ABI modifications:
1196 gnutls_dtls_set_timeouts: ADDED
1197 gnutls_dtls_get_mtu: ADDED
1198 gnutls_dtls_get_data_mtu: ADDED
1199 gnutls_dtls_set_mtu: ADDED
1200 gnutls_dtls_cookie_send: ADDED
1201 gnutls_dtls_cookie_verify: ADDED
1202 gnutls_dtls_prestate_set: ADDED
1203 gnutls_x509_trust_list_verify_crt: ADDED
1204 gnutls_x509_trust_list_add_crls: ADDED
1205 gnutls_x509_trust_list_add_cas: ADDED
1206 gnutls_x509_trust_list_init: ADDED
1207 gnutls_x509_trust_list_deinit: ADDED
1208 gnutls_cipher_add_auth: ADDED
1209 gnutls_cipher_tag: ADDED
1210 gnutls_psk_netconf_derive_key: REMOVED
1211 gnutls_certificate_verify_peers: REMOVED
1212 gnutls_session_set_finished_function: REMOVED
1213 gnutls_ext_register: REMOVED
1214 gnutls_certificate_get_x509_crls: REMOVED
1215 gnutls_certificate_get_x509_cas: REMOVED
1216 gnutls_certificate_get_openpgp_keyring: REMOVED
1217 gnutls_session_get_server_random: REMOVED
1218 gnutls_session_get_client_random: REMOVED
1219 gnutls_session_get_master_secret: REMOVED
1220 gnutls_ia_allocate_client_credentials: REMOVED
1221 gnutls_ia_allocate_server_credentials: REMOVED
1222 gnutls_ia_enable: REMOVED
1223 gnutls_ia_endphase_send: REMOVED
1224 gnutls_ia_extract_inner_secret: REMOVED
1225 gnutls_ia_free_client_credentials: REMOVED
1226 gnutls_ia_free_server_credentials: REMOVED
1227 gnutls_ia_generate_challenge: REMOVED
1228 gnutls_ia_get_client_avp_ptr: REMOVED
1229 gnutls_ia_get_server_avp_ptr: REMOVED
1230 gnutls_ia_handshake: REMOVED
1231 gnutls_ia_handshake_p: REMOVED
1232 gnutls_ia_permute_inner_secret: REMOVED
1233 gnutls_ia_recv: REMOVED
1234 gnutls_ia_send: REMOVED
1235 gnutls_ia_set_client_avp_function: REMOVED
1236 gnutls_ia_set_client_avp_ptr: REMOVED
1237 gnutls_ia_set_server_avp_function: REMOVED
1238 gnutls_ia_set_server_avp_ptr: REMOVED
1239 gnutls_ia_verify_endphase: REMOVED
1242 * Version 2.12.2 (released 2011-04-08)
1244 ** libgnutls: Several updates and fixes for win32. Patches by LRN.
1246 ** libgnutls: Several bug and memory leak fixes.
1248 ** srptool: Accepts the -d option to enable debugging.
1250 ** libgnutls: Corrected bug in gnutls_srp_verifier() that prevented
1251 the allocation of a verifier. Reported by Andrew Wiseman.
1253 ** API and ABI modifications:
1254 No changes since last version.
1257 * Version 2.12.1 (released 2011-04-02)
1259 ** certtool: Generated certificate request with stricter permissions.
1260 Reported by Luca Capello.
1262 ** libgnutls: Bug fixes in opencdk code. Reported by Vitaly Kruglikov.
1264 ** libgnutls: Corrected windows system_errno() function prototype.
1266 ** libgnutls: C++ compatibility fix for compat.h. Reported by Mark Brand.
1268 ** libgnutls: Fix size of gnutls_openpgp_keyid_t by using the
1269 GNUTLS_OPENPGP_KEYID_SIZE definition. Reported by Andreas Metzler.
1271 ** API and ABI modifications:
1272 No changes since last version.
1277 * Version 2.12.0 (released 2011-03-24)
1279 ** certtool: Warns on generation of DSA keys of over 1024 bits, about
1280 the incompatibility with TLS other than 1.2.
1282 ** libgnutls: Modified signature algorithm selection in client
1283 certificate request, to avoid failures in DSA certificates.
1285 ** libgnutls: Instead of failing with internal error, return 
1286 GNUTLS_E_INCOMPAT_DSA_KEY_WITH_TLS_PROTOCOL if an incompatible DSA
1287 key with the negotiated protocol is encountered.
1289 ** libgnutls: Bug fixes in the RSA ciphersuite behavior with openpgp keys.
1291 ** libgnutls: Force state update when fork is detected in the nettle
1292 rng.
1294 ** libgnutls: modified gnutls_pubkey_import_openpgp() to use the preferred
1295 subkey instead of setting explicitly one.
1297 ** libgnutls: Corrected default behavior in record version of Client Hellos.
1299 ** libgnutls-openssl: modified to use modern gnutls' functions.
1300 This introduces an ABI incompatibility with previous versions.
1302 ** API and ABI modifications:
1303 gnutls_pubkey_import_openpgp: MODIFIED
1306 * Version 2.11.7
1308 ** libgnutls: The deprecated  gnutls_x509_privkey_sign_hash() was
1309 replaced by gnutls_privkey_sign_hash2().
1311 ** libgnutls: gnutls_pubkey_verify_data, gnutls_pubkey_verify_hash,
1312 gnutls_x509_privkey_verify_data, gnutls_x509_crt_verify_data, 
1313 gnutls_x509_crt_verify_hash return the negative error code 
1314 GNUTLS_E_PK_SIG_VERIFY_FAILED if verification fails to simplify error 
1315 checking.
1317 ** libgnutls: Added helper functions for signature verification:
1318 gnutls_pubkey_verify_data() and gnutls_pubkey_import_privkey().
1320 ** libgnutls: Modified gnutls_privkey_sign_data().
1322 ** gnutls_x509_crl_privkey_sign2(), gnutls_x509_crq_sign2()
1323 gnutls_x509_privkey_sign_hash(), gnutls_x509_privkey_sign_data(),
1324 gnutls_x509_crt_verify_hash(), gnutls_x509_crt_verify_data(), were
1325 deprecated for gnutls_x509_crl_privkey_sign(),
1326 gnutls_x509_crq_privkey_sign(), gnutls_privkey_sign_hash(),
1327 gnutls_privkey_sign_data(), gnutls_pubkey_verify_hash()
1328 gnutls_pubkey_verify_data() respectively.
1330 ** libgnutls: gnutls_*_export_raw() functions now add leading zero in
1331 integers.
1333 ** libgnutls: Added convenience functions gnutls_x509_crl_list_import2()
1334 and gnutls_x509_crt_list_import2().
1336 ** crypto.h: Fix use with C++.
1337 Reported by "Brendan Doherty" <brendand@gentrack.com>.
1339 ** API and ABI modifications:
1340 gnutls_x509_crl_list_import: ADDED
1341 gnutls_x509_crl_list_import2: ADDED
1342 gnutls_x509_crt_list_import2: ADDED
1343 gnutls_x509_crl_get_raw_issuer_dn: ADDED
1344 gnutls_pubkey_import_privkey: ADDED
1345 gnutls_pubkey_verify_data: ADDED
1346 gnutls_privkey_sign_hash: MODIFIED (was added in 2.11.0)
1347 gnutls_privkey_sign_data: MODIFIED (was added in 2.11.0)
1348 gnutls_x509_crq_sign2: DEPRECATED (use: gnutls_x509_crq_privkey_sign)
1349 gnutls_x509_crq_sign: DEPRECATED (use: gnutls_x509_crq_privkey_sign)
1350 gnutls_x509_crq_get_preferred_hash_algorithm: REMOVED (was added in 2.11.0)
1351 gnutls_x509_crl_sign: DEPRECATED (use: gnutls_x509_crl_privkey_sign)
1352 gnutls_x509_crl_sign2: DEPRECATED (use: gnutls_x509_crl_privkey_sign)
1353 gnutls_x509_privkey_sign_data: DEPRECATED (use: gnutls_privkey_sign_data2)
1354 gnutls_x509_privkey_sign_hash: DEPRECATED (use: gnutls_privkey_sign_hash2)
1355 gnutls_x509_privkey_verify_data: DEPRECATED (use: gnutls_pubkey_verify_data)
1356 gnutls_session_set_finished_function: DEPRECATED
1357 gnutls_x509_crt_verify_hash: DEPRECATED (use: gnutls_pubkey_verify_hash)
1358 gnutls_x509_crt_verify_data: DEPRECATED (use: gnutls_pubkey_verify_data)
1359 gnutls_x509_crt_get_verify_algorithm: DEPRECATED (use: gnutls_pubkey_get_verify_algorithm)
1360 gnutls_x509_crt_get_preferred_hash_algorithm: DEPRECATED (use: gnutls_pubkey_get_preferred_hash_algorithm)
1361 gnutls_openpgp_privkey_sign_hash: DEPRECATED (use: gnutls_privkey_sign_hash2)
1362 gnutls_pkcs11_privkey_sign_hash: REMOVED (was added in 2.11.0)
1363 gnutls_pkcs11_privkey_decrypt_data: REMOVED (was added in 2.11.0)
1364 gnutls_privkey_sign_hash: REMOVED (was added in 2.11.0)
1366 * Version 2.11.6 (released 2010-12-06)
1368 ** libgnutls: Record version of Client Hellos is now set by default to
1369 SSL 3.0. To restore the previous default behavior use %LATEST_RECORD_VERSION
1370 priority string.
1372 ** libgnutls: Use ASN1_NULL when writing parameters for RSA signatures. 
1373 This makes us comply with RFC3279. Reported by Michael Rommel.
1375 ** gnutls-serv: Corrected a buffer overflow. Reported and patch by Tomas Mraz.
1377 ** API and ABI modifications:
1378 No changes since last version.
1380 * Version 2.11.5 (released 2010-12-01)
1382 ** libgnutls: Reverted default behavior for verification and
1383 introduced GNUTLS_VERIFY_DO_NOT_ALLOW_X509_V1_CA_CRT. Thus by default
1384 V1 trusted CAs are allowed, unless the new flag is specified.
1386 ** libgnutls: Correctly add leading zero to PKCS #8 encoded DSA key.
1387 Reported by Jeffrey Walton.
1389 ** libgnutls: Added SIGN-ALL, CTYPE-ALL, COMP-ALL, and VERS-TLS-ALL
1390 as priority strings. Those allow to set all the supported algorithms
1391 at once.
1393 ** p11tool: Introduced. It allows manipulating pkcs 11 tokens.
1395 ** gnutls-cli: Print channel binding only in verbose mode.
1396 Before it printed it after the 'Compression:' output, thus breaking
1397 Emacs starttls.el string searches.
1399 ** API and ABI modifications:
1400 gnutls_pkcs11_token_init: New function
1401 gnutls_pkcs11_token_set_pin: New function
1403 * Version 2.11.4 (released 2010-10-15)
1405 ** libgnutls: Add new API gnutls_session_channel_binding.
1406 The function is used to get the channel binding data.  Currently only
1407 the "tls-unique" (RFC 5929) channel binding type is supported, through
1408 the GNUTLS_CB_TLS_UNIQUE type.  See new section "Channel Bindings" in
1409 the manual.
1411 ** gnutls-cli, gnutls-serv: Print 'tls-unique' Channel Bindings.
1413 ** doc: Added pkcs11.h header file to GTK-DOC manual.
1415 ** build: Update gnulib files.
1417 ** i18n: Update translations.
1419 ** tests: Add self tests gendh.c.  Speed up Guile self checks.
1421 ** API and ABI modifications:
1422 gnutls_session_channel_binding: New function.
1423 gnutls_channel_binding_t: New enumeration.
1424 GNUTLS_CB_TLS_UNIQUE: New gnutls_channel_binding_t enum member.
1425 GNUTLS_E_CHANNEL_BINDING_NOT_AVAILABLE: New error code.
1427 * Version 2.11.3 (released 2010-10-14)
1429 ** Indent code to follow the GNU Coding Standard.
1430 You should be able to unpack the 2.11.2 release and run 'make indent'
1431 twice to get exactly the same content as 2.11.3 except for generated
1432 files.  Using GNU Indent 2.2.11.
1434 ** API and ABI modifications:
1435 No changes since last version.
1437 * Version 2.11.2 (released 2010-10-08)
1439 ** libgnutls: Several bug fixes on session resumption
1440 and session tickets support.
1442 ** libgnutls: Add new extended key usage ipsecIKE.
1444 ** certtool: Renamed PKCS #11 options to: --p11-provider,
1445 --p11-export-url, --p11-list-certs, --p11-list-certs,
1446 --p11-list-privkeys, --p11-list-trusted, --p11-list-all-certs,
1447 --p11-list-all, --p11-list-tokens, --p11-login, --p11-write,
1448 --p11-write-label, --p11-write-trusted, --p11-detailed-url,
1449 --p11-delete-url
1451 ** libgnutls: Corrected bug that caused importing DSA keys as RSA,
1452 introduced with the new nettle code.
1454 ** libgnutls: Corrected advertizing issue for session tickets.
1456 ** API and ABI modifications:
1457 gnutls_x509_crt_get_subject_unique_id: ADDED.
1458 gnutls_x509_crt_get_issuer_unique_id: ADDED.
1460 * Version 2.11.1 (released 2010-09-14)
1462 ** libgnutls: Nettle is the default crypto back end. Use --with-libgcrypt
1463 to use the libgcrypt back end.
1465 ** libgnutls: Depend on nettle 2.1. This makes nettle a fully working
1466 backend crypto library.
1468 ** libgnutls: Added RSA_NULL_SHA1 and SHA256 ciphersuites.
1470 ** libgnutls: Several updates in the buffering internal interface.
1472 ** libgnutls: Is now more liberal in the PEM decoding. That is spaces and 
1473 tabs are being skipped.
1475 ** libgnutls: Added support for draft-pechanec-pkcs11uri-02.
1477 ** libgnutls: The %COMPAT flag now allows larger records that violate the
1478 TLS spec.
1480 ** libgnutls: by default lowat level has been set to zero to avoid unnecessary
1481 system calls. Applications that depended on it being 1 should explicitly call
1482 gnutls_transport_set_lowat().
1484 ** libgnutls: Updated documentation and gnutls_pk_params_t mappings
1485 to ECRYPT II recommendations. Mappings were moved to a single location
1486 and DSA keys are handled differently (since DSA2 allows for 1024,2048
1487 and 3072 keys only).
1489 ** libgnutls: gnutls_x509_privkey_import() will fallback to
1490 gnutls_x509_privkey_import_pkcs8() without a password, if it
1491 is unable to decode the key.
1493 ** libgnutls: HMAC-MD5 no longer used by default.
1495 ** API and ABI modifications:
1496 gnutls_openpgp_privkey_sec_param: ADDED
1497 gnutls_x509_privkey_sec_param: ADDED
1499 * Version 2.11.0 (released 2010-07-22)
1501 ** libgnutls: support scattered write using writev(). This takes
1502 advantage of the new buffering layer and allows queuing of packets
1503 and flushing them. This is currently used for handshake messages
1504 only.
1506 ** libgnutls: Added gnutls_global_set_mutex() to allow setting
1507 alternative locking procedures. By default the system available
1508 locking is used. In *NIX pthreads are used and in windows the
1509 critical section API. This follows a different approach than the
1510 previous versions that depended on libgcrypt initialization. The
1511 locks are now set by default in systems that support it. Programs
1512 that used gcry_control() to set thread locks should insert it into
1513 a block of
1514 #if GNUTLS_VERSION_NUMBER <= 0x020b00
1515         gcry_control(...)
1516 #endif
1518 ** libgnutls: Added support for reading DN from EV-certificates.
1519 New DN values:
1520 jurisdictionOfIncorporationLocalityName,
1521 jurisdictionOfIncorporationStateOrProvinceName,
1522 jurisdictionOfIncorporationCountryName
1524 ** libgnutls: Added support for DSA signing/verifying with bit 
1525 length over 1024.
1527 ** libgnutls-extra: When in FIPS mode gnutls_global_init_extra()
1528 has to be called to register any required md5 handlers.
1530 ** libgnutls: Internal buffering code was replaced by simpler
1531 code contributed by Jonathan Bastien-Filiatrault.
1533 ** libgnutls: Internal API for extensions augmented to allow
1534 safe storing and loading of data on resumption. This allows writing
1535 self-contained extensions (when possible). As a side effect
1536 the OPRFI extension was removed.
1538 ** libgnutls: Added support for DSA-SHA256 and DSA-SHA224
1540 ** libgnutls: Added PKCS #11 support and an API to access objects in
1541 gnutls/pkcs11.h. Currently certificates and public keys can be
1542 imported from tokens, and operations can be performed on private keys.
1544 ** libgnutls: Added abstract gnutls_privkey_t and gnutls_pubkey_t
1546 ** libgnutls: Added initial support for the nettle library. It uses
1547 the system's random generator for seeding. That is /dev/urandom in Linux, 
1548 system calls in Win32 and EGD on other systems.
1550 ** libgnutls: Corrected issue on the %SSL3_RECORD_VERSION priority string. It now
1551     works even when resuming a session.
1553 ** libgnutls: Added gnutls_certificate_set_retrieve_function() to replace the
1554 similar gnutls_certificate_set_server_retrieve_function() and
1555 gnutls_certificate_set_client_retrieve_function(). In addition it support
1556 PKCS #11 private keys.
1558 ** libgnutls: Added  gnutls_pkcs11_copy_x509_crt(), gnutls_pkcs11_copy_x509_privkey(),
1559 and gnutls_pkcs11_delete_url() to allow copying and deleting data in tokens.
1561 ** libgnutls: Added gnutls_sec_param_to_pk_bits() et al. to allow select bit
1562 sizes for private keys using a human understandable scale.
1564 ** certtool: Added new options: --pkcs11-list-tokens, --pkcs11-list-all
1565 --pkcs11-list-all-certs, --pkcs11-list-trusted, --pkcs11-list-certs,
1566 --pkcs11-delete-url, --pkcs11-write
1568 certtool: The --pkcs-cipher is taken into account when generating a
1569 private key. The default cipher used now is aes-128. The old behavior can
1570 be simulated by specifying "--pkcs-cipher 3des-pkcs12".
1572 certtool: Added --certificate-pubkey to print the public key of the
1573 certificate.
1575 ** gnutls-cli/gnutls-serv: --x509cafile, --x509certfile and --x509keyfile
1576 can now accept a PKCS #11 URL in addition to a file. This will allow for
1577 example to use the Gnome-keyring trusted certificate list to verify
1578 connections using a url such as:
1579 pkcs11:token=Root%20CA%20Certificates;serial=1%3AROOTS%3ADEFAULT;model=1%2E0;manufacturer=Gnome%20Keyring
1581 ** API and ABI modifications:
1582 gnutls_certificate_set_server_retrieve_function: DEPRECATED
1583 gnutls_certificate_set_client_retrieve_function: DEPRECATED
1584 gnutls_sign_callback_set: DEPRECATED
1585 gnutls_global_set_mutex: ADDED
1586 gnutls_pubkey_get_preferred_hash_algorithm: ADDED
1587 gnutls_x509_crt_get_preferred_hash_algorithm: ADDED
1588 gnutls_x509_privkey_export_rsa_raw2: ADDED
1589 gnutls_rnd: ADDED
1590 gnutls_sec_param_to_pk_bits: ADDED
1591 gnutls_pk_bits_to_sec_param: ADDED
1592 gnutls_sec_param_get_name: ADDED
1593 gnutls_pkcs11_type_get_name: ADDED
1594 gnutls_certificate_set_retrieve_function: ADDED
1595 gnutls_pkcs11_init: ADDED
1596 gnutls_pkcs11_deinit: ADDED
1597 gnutls_pkcs11_set_pin_function: ADDED
1598 gnutls_pkcs11_set_token_function: ADDED
1599 gnutls_pkcs11_add_provider: ADDED
1600 gnutls_pkcs11_obj_init: ADDED
1601 gnutls_pkcs11_obj_import_url: ADDED
1602 gnutls_pkcs11_obj_export_url: ADDED
1603 gnutls_pkcs11_obj_deinit: ADDED
1604 gnutls_pkcs11_obj_export: ADDED
1605 gnutls_pkcs11_obj_list_import_url: ADDED
1606 gnutls_pkcs11_obj_export: ADDED
1607 gnutls_x509_crt_import_pkcs11: ADDED
1608 gnutls_pkcs11_obj_get_type: ADDED
1609 gnutls_x509_crt_list_import_pkcs11: ADDED
1610 gnutls_x509_crt_import_pkcs11_url: ADDED
1611 gnutls_pkcs11_obj_get_info: ADDED
1612 gnutls_pkcs11_token_get_info: ADDED
1613 gnutls_pkcs11_token_get_url: ADDED
1614 gnutls_pkcs11_privkey_init: ADDED
1615 gnutls_pkcs11_privkey_deinit: ADDED
1616 gnutls_pkcs11_privkey_get_pk_algorithm: ADDED
1617 gnutls_pkcs11_privkey_get_info: ADDED
1618 gnutls_pkcs11_privkey_import_url: ADDED
1619 gnutls_pkcs11_privkey_sign_data: ADDED
1620 gnutls_pkcs11_privkey_sign_hash: ADDED
1621 gnutls_pkcs11_privkey_decrypt_data: ADDED
1622 gnutls_privkey_init: ADDED
1623 gnutls_privkey_deinit: ADDED
1624 gnutls_privkey_get_pk_algorithm: ADDED
1625 gnutls_privkey_get_type: ADDED
1626 gnutls_privkey_import_pkcs11: ADDED
1627 gnutls_privkey_import_x509: ADDED
1628 gnutls_privkey_import_openpgp: ADDED
1629 gnutls_privkey_sign_data: ADDED
1630 gnutls_privkey_sign_hash: ADDED
1631 gnutls_privkey_decrypt_data: ADDED
1632 gnutls_pkcs11_privkey_export_url: ADDED
1633 gnutls_x509_crq_privkey_sign: ADDED
1634 gnutls_x509_crl_privkey_sign: ADDED
1635 gnutls_x509_crt_privkey_sign: ADDED
1636 gnutls_pubkey_init: ADDED
1637 gnutls_pubkey_deinit: ADDED
1638 gnutls_pubkey_get_pk_algorithm: ADDED
1639 gnutls_pubkey_import_x509: ADDED
1640 gnutls_pubkey_import_openpgp: ADDED
1641 gnutls_pubkey_get_pk_rsa_raw: ADDED
1642 gnutls_pubkey_get_pk_dsa_raw: ADDED
1643 gnutls_pubkey_export: ADDED
1644 gnutls_pubkey_get_key_id: ADDED
1645 gnutls_pubkey_get_key_usage: ADDED
1646 gnutls_pubkey_verify_hash: ADDED
1647 gnutls_pubkey_get_verify_algorithm: ADDED
1648 gnutls_pkcs11_type_get_name: ADDED
1649 gnutls_pubkey_import_pkcs11_url: ADDED
1650 gnutls_pubkey_import: ADDED
1651 gnutls_pubkey_import_pkcs11: ADDED
1652 gnutls_pubkey_import_dsa_raw: ADDED
1653 gnutls_pubkey_import_rsa_raw: ADDED
1654 gnutls_x509_crt_set_pubkey: ADDED
1655 gnutls_x509_crq_set_pubkey: ADDED
1656 gnutls_pkcs11_copy_x509_crt: ADDED
1657 gnutls_pkcs11_copy_x509_privkey: ADDED
1658 gnutls_pkcs11_delete_url: ADDED
1660 * Version 2.10.1 (released 2010-07-25)
1662 ** libgnutls: Added support for broken certificates that indicate RSA
1663 with strange OIDs.
1665 ** gnutls-cli: Allow verification using V1 CAs.
1667 ** libgnutls: gnutls_x509_privkey_import() will fallback to
1668 gnutls_x509_privkey_import_pkcs8() without a password, if it
1669 is unable to decode the key.
1671 ** libgnutls: Correctly deinitialize crypto API functions to prevent
1672 a memory leak.  Reported by Mads Kiilerich.
1674 ** certtool: If asked to generate DSA keys of size more than 1024 bits,
1675 issue a warning, that the output key might not be working everywhere.
1677 ** certtool: The --pkcs-cipher is taken into account when generating a
1678 private key. The default cipher used now is aes-128. The old behavior
1679 can be simulated by specifying "--pkcs-cipher 3des-pkcs12".
1681 ** API and ABI modifications:
1682 No changes since last version.
1684 * Version 2.10.0 (released 2010-06-25)
1686 ** API and ABI modifications:
1687 No changes since last version.
1689 * Version 2.9.12 (released 2010-06-17)
1691 ** gnutls-cli: Make --starttls work again.
1692 Problem introduced in patch to use read() instead of fgets() committed
1693 on 2010-01-27.
1695 ** API and ABI modifications:
1696 No changes since last version.
1698 * Version 2.9.11 (released 2010-06-07)
1700 ** libgnutls: Removed two APIs related to safe renegotiation.
1701 Use priority strings instead.  The APIs were
1702 gnutls_safe_negotiation_set_initial and gnutls_safe_renegotiation_set.
1703 (Remember that we don't promise ABI stability during development
1704 series, so this doesn't cause an shared library ABI increment.)
1706 ** tests: More self testing of safe renegotiation extension.
1707 See tests/safe-renegotiation/README for more information.
1709 ** doc: a PDF version of the API reference manual (GTK-DOC) is now built.
1711 ** doc: Terms 'GNUTLS' and 'GNU TLS' were changed to 'GnuTLS' for consistency.
1713 ** API and ABI modifications:
1714 gnutls_safe_negotiation_set_initial: REMOVED.
1715 gnutls_safe_renegotiation_set: REMOVED.
1717 * Version 2.9.10 (released 2010-04-22)
1719 ** libgnutls: Time verification extended to trusted certificate list.
1720 Unless new constant GNUTLS_VERIFY_DISABLE_TRUSTED_TIME_CHECKS flag is
1721 specified.
1723 ** certtool: Display postalCode and Name X.509 DN attributes correctly.
1724 Based on patch by Pavan Konjarla.  Adds new constant
1725 GNUTLS_OID_X520_POSTALCODE and GNUTLS_OID_X520_NAME.
1727 ** libgnutls: Added Steve Dispensa's patch for safe renegotiation (RFC 5746)
1728 Solves the issue discussed in:
1729 <http://www.ietf.org/mail-archive/web/tls/current/msg03928.html> and
1730 <http://www.ietf.org/mail-archive/web/tls/current/msg03948.html>.
1731 Note that to allow connecting to unpatched servers the full protection
1732 is only enabled if the priority string %SAFE_RENEGOTIATION is
1733 specified. You can check whether protection is in place by querying
1734 gnutls_safe_renegotiation_status().  New error codes
1735 GNUTLS_E_SAFE_RENEGOTIATION_FAILED and
1736 GNUTLS_E_UNSAFE_RENEGOTIATION_DENIED added.
1738 ** libgnutls: When checking openpgp self signature also check the signatures
1739 ** of all subkeys.
1740 Ilari Liusvaara noticed and reported the issue and provided test
1741 vectors as well.
1743 ** libgnutls: Added cryptodev support (/dev/crypto).
1744 Tested with http://www.logix.cz/michal/devel/cryptodev/.  Added
1745 benchmark utility for AES.  Adds new error codes
1746 GNUTLS_E_CRYPTODEV_IOCTL_ERROR and GNUTLS_E_CRYPTODEV_DEVICE_ERROR.
1748 ** libgnutls: Exported API to access encryption and hash algorithms.
1749 The new API functions are gnutls_cipher_decrypt, gnutls_cipher_deinit,
1750 gnutls_cipher_encrypt, gnutls_cipher_get_block_size,
1751 gnutls_cipher_init, gnutls_hash, gnutls_hash_deinit, gnutls_hash_fast,
1752 gnutls_hash_get_len, gnutls_hash_init, gnutls_hash_output,
1753 gnutls_hmac, gnutls_hmac_deinit, gnutls_hmac_fast,
1754 gnutls_hmac_get_len, gnutls_hmac_init, gnutls_hmac_output.  New API
1755 constants are GNUTLS_MAC_SHA224 and GNUTLS_DIG_SHA224.
1757 ** libgnutls: Added gnutls_certificate_set_verify_function() to allow
1758 verification of certificate upon receipt rather than waiting until the
1759 end of the handshake.
1761 ** libgnutls: Don't send alerts during handshake.
1762 Instead new error code GNUTLS_E_UNKNOWN_SRP_USERNAME is added.
1764 ** certtool: Corrected two issues that affected certificate request generation.
1765 (1) Null padding is added on integers (found thanks to Wilankar Trupti),
1766 (2) In optional SignatureAlgorithm parameters field for DSA keys the DSA
1767 parameters were added. Those were rejected by Verisign. Gnutls no longer adds 
1768 those parameters there since other implementations don't do either and having 
1769 them does not seem to offer anything (anyway you need the signer's certificate
1770 to verify thus public key will be available). Found thanks to Boyan Kasarov.
1771 This however has the side-effect that public key IDs shown by certtool are
1772 now different than previous gnutls releases.
1773 (3) the option --pgp-certificate-info will verify self signatures
1775 ** certtool: Allow exporting of Certificate requests on DER format.
1777 ** certtool: New option --no-crq-extensions to avoid extensions in CSRs.
1779 ** gnutls-cli: Handle reading binary data from server.
1780 Reported by and tiny patch from Vitaly Mayatskikh
1781 <v.mayatskih@gmail.com> in
1782 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/4096>.
1784 ** minitasn1: Upgraded to libtasn1 version 2.6.
1786 ** i18n: Updated Czech, Dutch, French, Polish, Swedish translation.
1787 ** Added Italian and Simplified Chinese translation.
1788 Thanks to Petr Pisar, Erwin Poeze, Nicolas Provost, Jakub Bogusz,
1789 Daniel Nylander, Sergio Zanchetta, Tao Wei, and Aron Xu.
1791 ** doc: The GTK-DOC manual is significantly improved.
1793 ** API and ABI modifications:
1794 %DISABLE_SAFE_RENEGOTIATION: Added to priority strings (do not use).
1795 %INITIAL_SAFE_RENEGOTIATION: Added to priority strings.
1796 %UNSAFE_RENEGOTIATION: Added to priority strings.
1797 GNUTLS_DIG_SHA224: ADDED.
1798 GNUTLS_E_CRYPTODEV_DEVICE_ERROR: ADDED.
1799 GNUTLS_E_CRYPTODEV_IOCTL_ERROR: ADDED.
1800 GNUTLS_E_SAFE_RENEGOTIATION_FAILED: ADDED.
1801 GNUTLS_E_UNKNOWN_SRP_USERNAME: ADDED.
1802 GNUTLS_E_UNSAFE_RENEGOTIATION_DENIED: ADDED.
1803 GNUTLS_MAC_SHA224: ADDED.
1804 GNUTLS_OID_X520_NAME: ADDED.
1805 GNUTLS_OID_X520_POSTALCODE: ADDED.
1806 GNUTLS_VERIFY_DISABLE_TRUSTED_TIME_CHECKS: ADDED.
1807 GNUTLS_VERSION_MAX: ADDED.
1808 gnutls_certificate_set_verify_function: ADDED.
1809 gnutls_cipher_decrypt: ADDED.
1810 gnutls_cipher_deinit: ADDED.
1811 gnutls_cipher_encrypt: ADDED.
1812 gnutls_cipher_get_block_size: ADDED.
1813 gnutls_cipher_init: ADDED.
1814 gnutls_hash: ADDED.
1815 gnutls_hash_deinit: ADDED.
1816 gnutls_hash_fast: ADDED.
1817 gnutls_hash_get_len: ADDED.
1818 gnutls_hash_init: ADDED.
1819 gnutls_hash_output: ADDED.
1820 gnutls_hmac: ADDED.
1821 gnutls_hmac_deinit: ADDED.
1822 gnutls_hmac_fast: ADDED.
1823 gnutls_hmac_get_len: ADDED.
1824 gnutls_hmac_init: ADDED.
1825 gnutls_hmac_output: ADDED.
1826 gnutls_safe_negotiation_set_initial: ADDED.
1827 gnutls_safe_renegotiation_set: ADDED.
1828 gnutls_safe_renegotiation_status: ADDED.
1830 * Version 2.9.9 (released 2009-11-09)
1832 ** libgnutls: Cleanups and several bug fixes.
1833 Found by Steve Grubb and Tomas Mraz.
1835 ** Link libgcrypt explicitly to certtool, gnutls-cli, gnutls-serv.
1837 ** Fix --disable-valgrind-tests.
1838 Reported by Ingmar Vanhassel in
1839 <https://savannah.gnu.org/support/?107029>.
1841 ** API and ABI modifications:
1842 No changes since last version.
1844 * Version 2.9.8 (released 2009-11-05)
1846 ** libgnutls: Fix for memory leaks on interrupted handshake.
1847 Reported by Tang Tong.
1849 ** libgnutls: Addition of support for TLS 1.2 signature algorithms
1850 ** extension and certificate verify field.
1851 This requires changes for TLS 1.2 servers and clients that use
1852 callbacks for certificate retrieval.  They are now required to check
1853 with gnutls_sign_algorithm_get_requested() whether the certificate
1854 they send complies with the peer's preferences in signature
1855 algorithms.
1857 ** libgnutls: In server side when resuming a session do not overwrite the 
1858 ** initial session data with the resumed session data.
1860 ** libgnutls: Added support for AES-128, AES-192 and AES-256 in PKCS #8
1861 ** encryption.
1862 This affects also PKCS #12 encoded files.  This adds the following new
1863 enums: GNUTLS_CIPHER_AES_192_CBC, GNUTLS_PKCS_USE_PBES2_AES_128,
1864 GNUTLS_PKCS_USE_PBES2_AES_192, GNUTLS_PKCS_USE_PBES2_AES_256.
1866 ** libgnutls: Fix PKCS#12 encoding.
1867 The error you would get was "The OID is not supported.".  Problem
1868 introduced for the v2.8.x branch in 2.7.6.
1870 ** certtool: Added the --pkcs-cipher option.
1871 To explicitely specify the encryption algorithm to use.
1873 ** tests: Added "pkcs12_encode" self-test to check PKCS#12 functions.
1875 ** tests: Fix time bomb in chainverify self-test.
1876 Reported by Andreas Metzler <ametzler@downhill.at.eu.org> in
1877 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3925>.
1879 ** tests: Fix expired cert in chainverify self-test.
1881 ** i18n: Vietnamese translation updated.
1882 Thanks to Clytie Siddall.
1884 ** API and ABI modifications:
1885 GNUTLS_CIPHER_AES_192_CBC: ADDED to gnutls/gnutls.h.
1886 GNUTLS_PKCS_USE_PBES2_AES_128: ADDED to gnutls/x509.h.
1887 GNUTLS_PKCS_USE_PBES2_AES_192: ADDED to gnutls/x509.h.
1888 GNUTLS_PKCS_USE_PBES2_AES_256: ADDED to gnutls/x509.h.
1889 GNUTLS_BAG_SECRET: ADDED to gnutls/pkcs12.h.
1890 GNUTLS_DIG_UNKNOWN: ADDED to gnutls/gnutls.h.
1891 gnutls_sign_algorithm_get_requested: ADDED.
1893 * Version 2.9.7 (released 2009-10-06)
1895 ** libgnutls: TLS 1.2 server mode fixes.
1896 Now interoperates against Opera.  Contributed by Daiki Ueno.
1898 ** libgnutlsxx: Fix link problems.
1899 Tiny patch from Boyan Kasarov <bkasarov@gmail.com>.
1901 ** guile: Compatibility with guile 2.x.
1902 By Ludovic Courtes <ludovic.courtes@laas.fr>.
1904 ** API and ABI modifications:
1905 No changes since last version.
1907 * Version 2.9.6 (released 2009-09-22)
1909 ** libgnutls: Enable Camellia ciphers by default.
1911 ** API and ABI modifications:
1912 No changes since last version.
1914 * Version 2.9.5 (released 2009-09-10)
1916 ** libgnutls: Add new functions to extract X.509 Issuer Alternative Names.
1917 The new functions are gnutls_x509_crt_get_issuer_alt_name2,
1918 gnutls_x509_crt_get_issuer_alt_name, and
1919 gnutls_x509_crt_get_issuer_alt_othername_oid.  Contributed by Brad
1920 Hards <bradh@frogmouth.net>.
1922 ** API and ABI modifications:
1923 gnutls_x509_crt_get_issuer_alt_name2: ADDED.
1924 gnutls_x509_crt_get_issuer_alt_name: ADDED.
1925 gnutls_x509_crt_get_issuer_alt_othername_oid: ADDED.
1927 * Version 2.9.4 (released 2009-09-03)
1929 ** libgnutls: Client-side TLS 1.2 and SHA-256 ciphersuites now works.
1930 The new supported ciphersuites are AES-128/256 in CBC mode with
1931 ANON-DH/RSA/DHE-DSS/DHE-RSA.  Contributed by Daiki Ueno.  Further,
1932 SHA-256 is now the preferred default MAC (however it is only used with
1933 TLS 1.2).
1935 ** libgnutls: Make OpenPGP hostname checking work again.
1936 The patch to resolve the X.509 CN/SAN issue accidentally broken
1937 OpenPGP hostname comparison.
1939 ** libgnutls: When printing X.509 certificates, handle XMPP SANs better.
1940 Reported by Howard Chu <hyc@symas.com> in
1941 <https://savannah.gnu.org/support/?106975>.
1943 ** Fix use of deprecated types internally.
1944 Use of deprecated types in GnuTLS from now on will lead to a compile
1945 error, to prevent this from happening again.
1947 ** API and ABI modifications:
1948 No changes since last version.
1950 * Version 2.9.3 (released 2009-08-19)
1952 ** libgnutls: Support for TLS tickets was contributed by Daiki Ueno.
1953 The new APIs are gnutls_session_ticket_enable_client,
1954 gnutls_session_ticket_enable_server, and
1955 gnutls_session_ticket_key_generate.
1957 ** gnutls-cli, gnutls-serv: New parameter --noticket to disable TLS tickets.
1959 ** API and ABI modifications:
1960 gnutls_session_ticket_key_generate: ADDED.
1961 gnutls_session_ticket_enable_client: ADDED.
1962 gnutls_session_ticket_enable_server: ADDED.
1964 * Version 2.9.2 (released 2009-08-14)
1966 ** libgnutls: Fix problem with NUL bytes in X.509 CN and SAN fields.
1967 By using a NUL byte in CN/SAN fields, it was possible to fool GnuTLS
1968 into 1) not printing the entire CN/SAN field value when printing a
1969 certificate and 2) cause incorrect positive matches when matching a
1970 hostname against a certificate.  Some CAs apparently have poor
1971 checking of CN/SAN values and issue these (arguable invalid)
1972 certificates.  Combined, this can be used by attackers to become a
1973 MITM on server-authenticated TLS sessions.  The problem is mitigated
1974 since attackers needs to get one certificate per site they want to
1975 attack, and the attacker reveals his tracks by applying for a
1976 certificate at the CA.  It does not apply to client authenticated TLS
1977 sessions.  Research presented independently by Dan Kaminsky and Moxie
1978 Marlinspike at BlackHat09.  Thanks to Tomas Hoger <thoger@redhat.com>
1979 for providing one part of the patch.  [GNUTLS-SA-2009-4] [CVE-2009-2730].
1981 ** libgnutls: Fix rare failure in gnutls_x509_crt_import.
1982 The function may fail incorrectly when an earlier certificate was
1983 imported to the same gnutls_x509_crt_t structure.
1985 ** minitasn1: Internal copy updated to libtasn1 v2.3.
1987 ** libgnutls: Fix return value of gnutls_certificate_client_get_request_status.
1988 Before it always returned false.  Reported by Peter Hendrickson
1989 <pdh@wiredyne.com> in
1990 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3668>.
1992 ** libgnutls: Fix off-by-one size computation error in unknown DN printing.
1993 The error resulted in truncated strings when printing unknown OIDs in
1994 X.509 certificate DNs.  Reported by Tim Kosse
1995 <tim.kosse@filezilla-project.org> in
1996 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3651>.
1998 ** libgnutls: Fix PKCS#12 decryption from password.
1999 The encryption key derived from the password was incorrect for (on
2000 average) 1 in every 128 input for random inputs.  Reported by "Kukosa,
2001 Tomas" <tomas.kukosa@siemens-enterprise.com> in
2002 <http://permalink.gmane.org/gmane.network.gnutls.general/1663>.
2004 ** libgnutls: Return correct bit lengths of some MPIs.
2005 gnutls_dh_get_prime_bits, gnutls_rsa_export_get_modulus_bits, and
2006 gnutls_dh_get_peers_public_bits.  Before the reported value was
2007 overestimated.  Reported by Peter Hendrickson <pdh@wiredyne.com> in
2008 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3607>.
2010 ** libgnutls: Avoid internal error when invoked after GNUTLS_E_AGAIN.
2011 Report and patch by Tim Kosse <tim.kosse@filezilla-project.org> in
2012 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3671>
2014 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3670>.
2016 ** libgnutls: Relax checking of required libtasn1/libgcrypt versions.
2017 Before we required that the runtime library used the same (or more
2018 recent) libgcrypt/libtasn1 as it was compiled with.  Now we just check
2019 that the runtime usage is above the minimum required.  Reported by
2020 Marco d'Itri <md@linux.it> via Andreas Metzler
2021 <ametzler@downhill.at.eu.org> in <http://bugs.debian.org/540449>.
2023 ** tests: Added new self-test pkcs12_s2k_pem to detect MPI bit length error.
2025 ** tests: Improved test vectors in self-test pkcs12_s2k.
2027 ** tests: Added new self-test dn2 to detect off-by-one size error.
2029 ** tests: Fix failure in "chainverify" because a certificate have expired.
2031 ** API and ABI modifications:
2032 No changes since last version.
2034 * Version 2.9.1 (released 2009-06-08)
2036 ** libgnutls: Fix crash in gnutls_global_init after earlier init/deinit cycle.
2037 Forwarded by Martin von Gagern <Martin.vGagern@gmx.net> from
2038 <http://bugs.gentoo.org/272388>.
2040 ** tests: Added new self-tests init_roundtrip.c to detect previous problem.
2042 ** Reduce stack usage for some CRQ functions.
2044 ** Doc fixes for CRQ functions.
2046 ** API and ABI modifications:
2047 No changes since last version.
2049 * Version 2.9.0 (released 2009-05-28)
2051 ** Doc fixes.
2053 ** API and ABI modifications:
2054 No changes since last version.
2056 * Version 2.8.6 (released 2010-03-15)
2058 ** libgnutls: For CSRs, don't null pad integers for RSA/DSA value.
2059 VeriSign rejected CSRs with this padding.  Reported by Wilankar Trupti
2060 <trupti.wilankar@hp.com> and Boyan Kasarov <bkasarov@gmail.com>.
2062 Note: As a side effect of this change, the "public key identifier"
2063 value computed for a certificate using this version of GnuTLS will be
2064 different from values computed using earlier versions of GnuTLS.
2066 ** libgnutls: For CSRs on DSA keys, don't add DSA parameters to the
2067 ** optional SignatureAlgorithm parameter field.
2068 VeriSign rejected these CSRs.  They are stricly speaking not needed
2069 since you need the signer's certificate to verify the certificate
2070 signature anyway.  Reported by Wilankar Trupti
2071 <trupti.wilankar@hp.com> and Boyan Kasarov <bkasarov@gmail.com>.
2073 ** libgnutls: When checking openpgp self signature also check the signatures
2074 ** of all subkeys.
2075 Ilari Liusvaara noticed and reported the issue and provided test
2076 vectors as well.
2078 ** libgnutls: Cleanups and several bug fixes.
2079 Found by Steve Grubb and Tomas Mraz.
2081 ** Link libgcrypt explicitly to certtool, gnutls-cli, gnutls-serv.
2083 ** Fix --disable-valgrind-tests.
2084 Reported by Ingmar Vanhassel in
2085 <https://savannah.gnu.org/support/?107029>.
2087 ** examples: Use the new APIs for printing X.509 certificate information.
2089 ** Fix build failures on Solaris.
2090 Thanks to Dagobert Michelsen <dam@opencsw.org>.
2092 ** i18n: Updated Czech, Dutch, French, Polish, Swedish and Vietnamese
2093 ** translations.  Added Simplified Chinese translation.
2095 ** API and ABI modifications:
2096 No changes since last version.
2098 * Version 2.8.5 (released 2009-11-02)
2100 ** libgnutls: In server side when resuming a session do not overwrite the 
2101 ** initial session data with the resumed session data.
2103 ** libgnutls: Fix PKCS#12 encoding.
2104 The error you would get was "The OID is not supported.".  Problem
2105 introduced for the v2.8.x branch in 2.7.6.
2107 ** guile: Compatibility with guile 2.x.
2108 By Ludovic Courtes <ludovic.courtes@laas.fr>.
2110 ** tests: Fix expired cert in chainverify self-test.
2112 ** tests: Fix time bomb in chainverify self-test.
2113 Reported by Andreas Metzler <ametzler@downhill.at.eu.org> in
2114 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3925>.
2116 ** API and ABI modifications:
2117 No changes since last version.
2119 * Version 2.8.4 (released 2009-09-18)
2121 ** libgnutls: Enable Camellia ciphers by default.
2123 ** libgnutls: Make OpenPGP hostname checking work again.
2124 The patch to resolve the X.509 CN/SAN issue accidentally broken
2125 OpenPGP hostname comparison.
2127 ** libgnutls: When printing X.509 certificates, handle XMPP SANs better.
2128 Reported by Howard Chu <hyc@symas.com> in
2129 <https://savannah.gnu.org/support/?106975>.
2131 ** API and ABI modifications:
2132 No changes since last version.
2134 * Version 2.8.3 (released 2009-08-13)
2136 ** libgnutls: Fix patch for NUL in CN/SAN in last release.
2137 Code intended to be removed would lead to an read-out-bound error in
2138 some situations.  Reported by Tomas Hoger <thoger@redhat.com>.  A CVE
2139 code have been allocated for the vulnerability: [CVE-2009-2730].
2141 ** libgnutls: Fix rare failure in gnutls_x509_crt_import.
2142 The function may fail incorrectly when an earlier certificate was
2143 imported to the same gnutls_x509_crt_t structure.
2145 ** libgnutls-extra, libgnutls-openssl: Fix MinGW cross-compiling build error.
2147 ** tests: Made self-test mini-eagain take less time.
2149 ** doc: Typo fixes.
2151 ** API and ABI modifications:
2152 No changes since last version.
2154 * Version 2.8.2 (released 2009-08-10)
2156 ** libgnutls: Fix problem with NUL bytes in X.509 CN and SAN fields.
2157 By using a NUL byte in CN/SAN fields, it was possible to fool GnuTLS
2158 into 1) not printing the entire CN/SAN field value when printing a
2159 certificate and 2) cause incorrect positive matches when matching a
2160 hostname against a certificate.  Some CAs apparently have poor
2161 checking of CN/SAN values and issue these (arguable invalid)
2162 certificates.  Combined, this can be used by attackers to become a
2163 MITM on server-authenticated TLS sessions.  The problem is mitigated
2164 since attackers needs to get one certificate per site they want to
2165 attack, and the attacker reveals his tracks by applying for a
2166 certificate at the CA.  It does not apply to client authenticated TLS
2167 sessions.  Research presented independently by Dan Kaminsky and Moxie
2168 Marlinspike at BlackHat09.  Thanks to Tomas Hoger <thoger@redhat.com>
2169 for providing one part of the patch.  [GNUTLS-SA-2009-4].
2171 ** libgnutls: Fix return value of gnutls_certificate_client_get_request_status.
2172 Before it always returned false.  Reported by Peter Hendrickson
2173 <pdh@wiredyne.com> in
2174 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3668>.
2176 ** libgnutls: Fix off-by-one size computation error in unknown DN printing.
2177 The error resulted in truncated strings when printing unknown OIDs in
2178 X.509 certificate DNs.  Reported by Tim Kosse
2179 <tim.kosse@filezilla-project.org> in
2180 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3651>.
2182 ** libgnutls: Return correct bit lengths of some MPIs.
2183 gnutls_dh_get_prime_bits, gnutls_rsa_export_get_modulus_bits, and
2184 gnutls_dh_get_peers_public_bits.  Before the reported value was
2185 overestimated.  Reported by Peter Hendrickson <pdh@wiredyne.com> in
2186 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3607>.
2188 ** libgnutls: Avoid internal error when invoked after GNUTLS_E_AGAIN.
2189 Report and patch by Tim Kosse <tim.kosse@filezilla-project.org> in
2190 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3671>
2192 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3670>.
2194 ** libgnutls: Relax checking of required libtasn1/libgcrypt versions.
2195 Before we required that the runtime library used the same (or more
2196 recent) libgcrypt/libtasn1 as it was compiled with.  Now we just check
2197 that the runtime usage is above the minimum required.  Reported by
2198 Marco d'Itri <md@linux.it> via Andreas Metzler
2199 <ametzler@downhill.at.eu.org> in <http://bugs.debian.org/540449>.
2201 ** minitasn1: Internal copy updated to libtasn1 v2.3.
2203 ** tests: Fix failure in "chainverify" because a certificate have expired.
2205 ** API and ABI modifications:
2206 No changes since last version.
2208 * Version 2.8.1 (released 2009-06-10)
2210 ** libgnutls: Fix crash in gnutls_global_init after earlier init/deinit cycle.
2211 Forwarded by Martin von Gagern <Martin.vGagern@gmx.net> from
2212 <http://bugs.gentoo.org/272388>.
2214 ** libgnutls: Fix PKCS#12 decryption from password.
2215 The encryption key derived from the password was incorrect for (on
2216 average) 1 in every 128 input for random inputs.  Reported by "Kukosa,
2217 Tomas" <tomas.kukosa@siemens-enterprise.com> in
2218 <http://permalink.gmane.org/gmane.network.gnutls.general/1663>.
2220 ** API and ABI modifications:
2221 No changes since last version.
2223 * Version 2.8.0 (released 2009-05-27)
2225 ** doc: Fix gnutls_dh_get_prime_bits.  Fix error codes and algorithm lists.
2227 ** Major changes compared to the v2.4 branch:
2229 *** lib: Linker version scripts reduces number of exported symbols.
2231 *** lib: Limit exported symbols on systems without LD linker scripts.
2233 *** libgnutls: Fix namespace issue with version symbols.
2235 *** libgnutls: Add functions to verify a hash against a certificate.
2236 gnutls_x509_crt_verify_hash: ADDED
2237 gnutls_x509_crt_get_verify_algorithm: ADDED
2239 *** gnutls-serv: Listen on all interfaces, including both IPv4 and IPv6.
2241 *** i18n: The GnuTLS gettext domain is now 'libgnutls' instead of 'gnutls'.
2243 *** certtool: Query for multiple dnsName subjectAltName in interactive mode.
2245 *** gnutls-cli: No longer accepts V1 CAs by default during X.509 chain verify.
2247 *** gnutls-serv: No longer disable MAC padding by default.
2249 *** gnutls-cli: Certificate information output format changed.
2251 *** libgnutls: New priority strings %VERIFY_ALLOW_SIGN_RSA_MD5
2252 *** and %VERIFY_ALLOW_X509_V1_CA_CRT.
2254 *** libgnutls: gnutls_x509_crt_print prints signature algorithm in oneline mode.
2256 *** libgnutls: gnutls_openpgp_crt_print supports oneline mode.
2258 *** libgnutls: gnutls_handshake when sending client hello during a
2259 rehandshake, will not offer a version number larger than the current.
2261 *** libgnutls: New interface to get key id for certificate requests.
2262 gnutls_x509_crq_get_key_id: ADDED.
2264 *** libgnutls: gnutls_x509_crq_print will now also print public key id.
2266 *** certtool: --verify-chain now prints results of using library verification.
2268 *** libgnutls: Libgcrypt initialization changed.
2270 *** libgnutls: Small byte reads via gnutls_record_recv() optimized.
2272 *** gnutls-cli: Return non-zero exit code on error conditions.
2274 *** gnutls-cli: Corrected bug which caused a rehandshake request to be ignored.
2276 *** certtool: allow setting arbitrary key purpose object identifiers.
2278 *** libgnutls: Change detection of when to use a linker version script.
2279 Use --enable-ld-version-script or --disable-ld-version-script to
2280 override auto-detection logic.
2282 *** Fix warnings and build GnuTLS with more warnings enabled.
2284 *** New API to set X.509 credentials from PKCS#12 memory structure.
2285 gnutls_certificate_set_x509_simple_pkcs12_mem: ADDED
2287 *** Old libgnutls.m4 and libgnutls-config scripts removed.
2288 Please use pkg-config instead.
2290 *** libgnutls: Added functions to handle CRL extensions.
2291 gnutls_x509_crl_get_authority_key_id: ADDED
2292 gnutls_x509_crl_get_number: ADDED
2293 gnutls_x509_crl_get_extension_oid: ADDED
2294 gnutls_x509_crl_get_extension_info: ADDED
2295 gnutls_x509_crl_get_extension_data: ADDED
2296 gnutls_x509_crl_set_authority_key_id: ADDED
2297 gnutls_x509_crl_set_number: ADDED
2299 *** libgnutls: Added functions to handle X.509 extensions in Certificate
2300 Requests.
2301 gnutls_x509_crq_get_key_rsa_raw: ADDED
2302 gnutls_x509_crq_get_attribute_info: ADDED
2303 gnutls_x509_crq_get_attribute_data: ADDED
2304 gnutls_x509_crq_get_extension_info: ADDED
2305 gnutls_x509_crq_get_extension_data: ADDED
2306 gnutls_x509_crq_get_key_usage: ADDED
2307 gnutls_x509_crq_get_basic_constraints: ADDED
2308 gnutls_x509_crq_get_subject_alt_name: ADDED
2309 gnutls_x509_crq_get_subject_alt_othername_oid: ADDED
2310 gnutls_x509_crq_get_extension_by_oid: ADDED
2311 gnutls_x509_crq_set_subject_alt_name: ADDED
2312 gnutls_x509_crq_set_basic_constraints: ADDED
2313 gnutls_x509_crq_set_key_usage: ADDED
2314 gnutls_x509_crq_get_key_purpose_oid: ADDED
2315 gnutls_x509_crq_set_key_purpose_oid: ADDED
2316 gnutls_x509_crq_print: ADDED
2317 gnutls_x509_crt_set_crq_extensions: ADDED
2319 *** certtool: Print and set CRL and CRQ extensions.
2321 *** minitasn1: Internal copy updated to libtasn1 v2.1.
2323 *** examples: Now released into the public domain.
2325 *** The Texinfo and GTK-DOC manuals were improved.
2327 *** Several self-tests were added and others improved.
2329 *** API/ABI changes in GnuTLS 2.8 compared to GnuTLS 2.6.x
2330 No offically supported interfaces have been modified or removed.  The
2331 library should be completely backwards compatible on both the source
2332 and binary level.
2334 The shared library no longer exports some symbols that have never been
2335 officially supported, i.e., not mentioned in any of the header files.
2336 The symbols are:
2338   _gnutls*
2339   gnutls_asn1_tab
2340   
2341 Normally when symbols are removed, the shared library version has to
2342 be incremented.  This leads to a significant cost for everyone using
2343 the library.  Because none of the above symbols have ever been
2344 intended for use by well-behaved applications, we decided that the it
2345 would be better for those applications to pay the price rather than
2346 incurring problems on the majority of applications.
2348 If it turns out that applications have been using unofficial
2349 interfaces, we will need to release a follow-on release on the v2.8
2350 branch to exports additional interfaces.  However, initial testing
2351 suggests that few if any applications have been using any of the
2352 internal symbols.
2354 Although not a new change compared to 2.6.x, we'd like to remind you
2355 interfaces have been modified so that X.509 chain verification now
2356 also checks activation/expiration times on certificates.  The affected
2357 functions are:
2359 gnutls_x509_crt_list_verify: CHANGED, checks activation/expiration times.
2360 gnutls_certificate_verify_peers: Likewise.
2361 gnutls_certificate_verify_peers2: Likewise.
2362 GNUTLS_CERT_NOT_ACTIVATED: ADDED.
2363 GNUTLS_CERT_EXPIRED: ADDED.
2364 GNUTLS_VERIFY_DISABLE_TIME_CHECKS: ADDED.
2366 This change in behaviour was made during the GnuTLS 2.6.x cycle, and
2367 we gave our rationale for it in earlier release notes.
2369 The following symbols have been added to the library:
2371 gnutls_certificate_set_x509_simple_pkcs12_mem: ADDED
2372 gnutls_x509_crl_get_authority_key_id: ADDED
2373 gnutls_x509_crl_get_extension_data: ADDED
2374 gnutls_x509_crl_get_extension_info: ADDED
2375 gnutls_x509_crl_get_extension_oid: ADDED
2376 gnutls_x509_crl_get_number: ADDED
2377 gnutls_x509_crl_set_authority_key_id: ADDED
2378 gnutls_x509_crl_set_number: ADDED
2379 gnutls_x509_crq_get_attribute_data: ADDED
2380 gnutls_x509_crq_get_attribute_info: ADDED
2381 gnutls_x509_crq_get_basic_constraints: ADDED
2382 gnutls_x509_crq_get_extension_by_oid: ADDED
2383 gnutls_x509_crq_get_extension_data: ADDED
2384 gnutls_x509_crq_get_extension_info: ADDED
2385 gnutls_x509_crq_get_key_id: ADDED.
2386 gnutls_x509_crq_get_key_purpose_oid: ADDED
2387 gnutls_x509_crq_get_key_rsa_raw: ADDED
2388 gnutls_x509_crq_get_key_usage: ADDED
2389 gnutls_x509_crq_get_subject_alt_name: ADDED
2390 gnutls_x509_crq_get_subject_alt_othername_oid: ADDED
2391 gnutls_x509_crq_print: ADDED
2392 gnutls_x509_crq_set_basic_constraints: ADDED
2393 gnutls_x509_crq_set_key_purpose_oid: ADDED
2394 gnutls_x509_crq_set_key_usage: ADDED
2395 gnutls_x509_crq_set_subject_alt_name: ADDED
2396 gnutls_x509_crt_get_verify_algorithm: ADDED
2397 gnutls_x509_crt_set_crq_extensions: ADDED
2398 gnutls_x509_crt_verify_hash: ADDED
2400 The following interfaces have been added to the header files:
2402 GNUTLS_VERSION: ADDED, replaces LIBGNUTLS_VERSION.
2403 GNUTLS_VERSION_MAJOR: ADDED, replaces LIBGNUTLS_VERSION_MAJOR.
2404 GNUTLS_VERSION_MINOR: ADDED, replaces LIBGNUTLS_VERSION_MINOR.
2405 GNUTLS_VERSION_PATCH: ADDED, replaces LIBGNUTLS_VERSION_PATCH.
2406 GNUTLS_VERSION_NUMBER: ADDED, replaces LIBGNUTLS_VERSION_NUMBER.
2407 GNUTLS_EXTRA_VERSION: ADDED, replaces LIBGNUTLS_EXTRA_VERSION.
2409 The following interfaces have been deprecated:
2411 LIBGNUTLS_VERSION: DEPRECATED.
2412 LIBGNUTLS_VERSION_MAJOR: DEPRECATED.
2413 LIBGNUTLS_VERSION_MINOR: DEPRECATED.
2414 LIBGNUTLS_VERSION_PATCH: DEPRECATED.
2415 LIBGNUTLS_VERSION_NUMBER: DEPRECATED.
2416 LIBGNUTLS_EXTRA_VERSION: DEPRECATED.
2418 * Version 2.7.14 (released 2009-05-26)
2420 ** libgnutls: Fix namespace issue with version symbol for libgnutls-extra.
2421 The symbol LIBGNUTLS_EXTRA_VERSION were renamed to
2422 GNUTLS_EXTRA_VERSION.  The old symbol will continue to work but is
2423 deprecated.
2425 ** Doc: Several typo fixes in documentation.
2426 Reported by Peter Hendrickson <pdh@wiredyne.com>.
2428 ** API and ABI modifications:
2429 GNUTLS_VERSION: ADDED, replaces LIBGNUTLS_EXTRA_VERSION.
2430 LIBGNUTLS_EXTRA_VERSION: DEPRECATED.
2432 * Version 2.7.13 (released 2009-05-25)
2434 ** libgnutls: Fix version of some exported symbols in the shared library.
2435 Reported by Andreas Metzler <ametzler@downhill.at.eu.org> in
2436 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3576>.
2438 ** tests: Handle recently expired certificates in chainverify self-test.
2439 Reported by Andreas Metzler <ametzler@downhill.at.eu.org> in
2440 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3580>.
2442 ** API and ABI modifications:
2443 No changes since last version.
2445 * Version 2.7.12 (released 2009-05-20)
2447 ** gnutls-serv, gnutls-cli-debug: Make them work on Windows.
2449 ** tests/crq_key_id: Don't read entropy from /dev/random in self-test.
2450 Reported by Andreas Metzler <ametzler@downhill.at.eu.org> in
2451 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3570>.
2453 ** Fix build failures.
2454 Missing sa_family_t and vsnprintf on IRIX.  Reported by "Tom
2455 G. Christensen" <tgc@jupiterrise.com> in
2456 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3571>.
2458 ** minitasn1: Internal copy updated to libtasn1 v2.2.
2459 GnuTLS should work fine with libtasn1 v1.x and that is still
2460 supported.
2462 ** API and ABI modifications:
2463 No changes since last version.
2465 * Version 2.7.11 (released 2009-05-18)
2467 ** minitasn1: Fix build failure when using internal libtasn1.
2468 Reported by "Tom G. Christensen" <tgc@jupiterrise.com> in
2469 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3548>.
2471 ** libgnutls: Fix build failure with --disable-cxx.
2472 Reported by Andreas Metzler <ametzler@downhill.at.eu.org> in
2473 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3557>.
2475 ** gnutls-serv: Fix build failure for unportable NI_MAXHOST/NI_MAXSERV.
2476 Reported by "Tom G. Christensen" <tgc@jupiterrise.com> in
2477 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3560>
2479 ** Building with many warning flags now requires --enable-gcc-warnings.
2480 This avoids crying wolf for normal compiles.
2482 ** API and ABI modifications:
2483 No changes since last version.
2485 * Version 2.7.10 (released 2009-05-13)
2487 ** examples: Now released into the public domain.
2488 This makes the license of the example code compatible with more
2489 licenses, including the (L)GPL.
2491 ** minitasn1: Internal copy updated to libtasn1 v2.1.
2492 GnuTLS should work fine with libtasn1 v1.x and that is still
2493 supported.
2495 ** libgnutls: Fix crash in signature verification
2496 The fix for the CVE-2009-1415 problem wasn't merged completely.
2498 ** doc: Fixes for GTK-DOC output.
2500 ** API and ABI modifications:
2501 No changes since last version.
2503 * Version 2.7.9 (released 2009-05-11)
2505 ** doc: Fix strings in man page of gnutls_priority_init.
2507 ** doc: Fix tables of error codes and supported algorithms.
2509 ** Fix build failure when cross-compiled using MinGW.
2511 ** Fix build failure when LZO is enabled.
2512 Reported by Arfrever Frehtes Taifersar Arahesis
2513 <arfrever.fta@gmail.com> in
2514 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3522>.
2516 ** Fix build failure on systems without AF_INET6, e.g., Solaris 2.6.
2517 Reported by "Tom G. Christensen" <tgc@jupiterrise.com> in
2518 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3524>.
2520 ** Fix warnings in self-tests.
2522 ** API and ABI modifications:
2523 No changes since last version.
2525 * Version 2.7.8 (released 2009-05-03)
2527 ** libgnutls: Fix DSA key generation.
2528 Merged from stable branch.  [GNUTLS-SA-2009-2] [CVE-2009-1416]
2530 ** libgnutls: Check expiration/activation time on untrusted certificates.
2531 Merged from stable branch.  Reported by Romain Francoise
2532 <romain@orebokech.com>.  This changes the semantics of
2533 gnutls_x509_crt_list_verify, which in turn is used by
2534 gnutls_certificate_verify_peers and gnutls_certificate_verify_peers2.
2535 We add two new gnutls_certificate_status_t codes for reporting the new
2536 error condition, GNUTLS_CERT_NOT_ACTIVATED and GNUTLS_CERT_EXPIRED.
2537 We also add a new gnutls_certificate_verify_flags flag,
2538 GNUTLS_VERIFY_DISABLE_TIME_CHECKS, that can be used to disable the new
2539 behaviour.  [GNUTLS-SA-2009-3] [CVE-2009-1417]
2541 ** lib: Linker version scripts reduces number of exported symbols.
2542 The linker version script now lists all exported ABIs explicitly, to
2543 avoid accidentally exporting unintended functions.  Compared to
2544 before, most symbols beginning with _gnutls* are no longer exported.
2545 These functions have never been intended for use by applications, and
2546 there were no prototypes for these function in the public header
2547 files.  Thus we believe it is possible to do this without incrementing
2548 the library ABI version which normally has to be done when removing an
2549 interface.
2551 ** lib: Limit exported symbols on systems without LD linker scripts.
2552 Before all symbols were exported.  Now we limit the exported symbols
2553 to (for libgnutls and libgnutls-extra) gnutls* and (for libgnutls)
2554 _gnutls*.  This is a superset of the actual supported ABI, but still
2555 an improvement compared to before.  This is implemented using Libtool
2556 -export-symbols-regex.  It is more portable than linker version
2557 scripts.
2559 ** libgnutls: Incremented CURRENT/AGE libtool version to reflect new symbols.
2560 This should have been done in the last release.
2562 ** gnutls-serv: Listen on all interfaces, including both IPv4 and IPv6.
2563 Reported by Peter Hendrickson <pdh@wiredyne.com> in
2564 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3476>.
2566 ** doc: Improved sections for the info manual.
2567 We now follow the advice given by the texinfo manual on which
2568 directory categories to use.  In particular, libgnutls moved from the
2569 'GNU Libraries' section to the 'Software libraries' and the command
2570 line tools moved from 'Network Applications' to 'System
2571 Administration'.
2573 ** API and ABI modifications:
2574 gnutls_x509_crt_list_verify: CHANGED, checks activation/expiration times.
2575 gnutls_certificate_verify_peers: Likewise.
2576 gnutls_certificate_verify_peers2: Likewise.
2577 GNUTLS_CERT_NOT_ACTIVATED: ADDED.
2578 GNUTLS_CERT_EXPIRED: ADDED.
2579 GNUTLS_VERIFY_DISABLE_TIME_CHECKS: ADDED.
2581 * Version 2.7.7 (released 2009-04-20)
2583 ** libgnutls: Applied patch by Cedric Bail to add functions
2584 gnutls_x509_crt_verify_hash() and gnutls_x509_crt_get_verify_algorithm().
2586 ** gnutls.pc: Add -ltasn1 to 'pkg-config --libs --static gnutls' output.
2587 Reported by Andreas Metzler <ametzler@downhill.at.eu.org> in
2588 <http://article.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3467>.
2590 ** minitasn1: Internal copy updated to libtasn1 v1.8.
2591 GnuTLS is also internally ready to be used with libtasn1 v2.0.
2593 ** doc: Fix build failure of errcodes/printlist.
2594 Reported by Roman Bogorodskiy <novel@FreeBSD.org> in
2595 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3435>.
2597 ** i18n: The GnuTLS gettext domain is now 'libgnutls' instead of 'gnutls'.
2598 It is currently only used by the core library.  This will enable a new
2599 domain 'gnutls' for translations of the command line tools.
2601 ** Corrected possible memory corruption on signature verification failure. 
2602 Reported by Miroslav Kratochvil <exa.exa@gmail.com>
2604 ** API and ABI modifications:
2605 gnutls_x509_crt_verify_hash: ADDED
2606 gnutls_x509_crt_get_verify_algorithm: ADDED
2608 * Version 2.7.6 (released 2009-02-27)
2610 ** certtool: Query for multiple dnsName subjectAltName in interactive mode.
2611 This applies both to generating certificates and certificate requests.
2613 ** pkix.asn: Removed unneeded definitions to reduce memory usage.
2615 ** gnutls-cli: No longer accepts V1 CAs by default during X.509 chain verify.
2616 Use --priority NORMAL:%VERIFY_ALLOW_X509_V1_CA_CRT to permit V1 CAs to
2617 be used for chain verification.
2619 ** gnutls-serv: No longer disable MAC padding by default.
2620 Use --priority NORMAL:%COMPAT to disable MAC padding again.
2622 ** gnutls-cli: Certificate information output format changed.
2623 The tool now uses libgnutls' functions to print certificate
2624 information.  This avoids code duplication.
2626 ** libgnutls: New priority strings %VERIFY_ALLOW_SIGN_RSA_MD5
2627 ** and %VERIFY_ALLOW_X509_V1_CA_CRT.
2628 They can be used to override the default certificate chain validation
2629 behaviour.
2631 ** libgnutls: Added %SSL3_RECORD_VERSION priority string that allows to 
2632 specify the client hello message record version. Used to overcome buggy 
2633 TLS servers. Report by Martin von Gagern.
2635 ** libgnutls: gnutls_x509_crt_print prints signature algorithm in oneline mode.
2637 ** libgnutls: gnutls_openpgp_crt_print supports oneline mode.
2639 ** doc: Update gnutls-cli and gnutls-serv --help output descriptions.
2641 ** API and ABI modifications:
2642 No changes since last version.
2644 * Version 2.7.5 (released 2009-02-06)
2646 ** libgnutls: Accept chains where intermediary certs are trusted.
2647 Before GnuTLS needed to validate the entire chain back to a
2648 self-signed certificate.  GnuTLS will now stop looking when it has
2649 found an intermediary trusted certificate.  The new behaviour is
2650 useful when chains, for example, contains a top-level CA, an
2651 intermediary CA signed using RSA-MD5, and an end-entity certificate.
2652 To avoid chain validation errors due to the RSA-MD5 cert, you can
2653 explicitly add the intermediary RSA-MD5 cert to your trusted certs.
2654 The signature on trusted certificates are not checked, so the chain
2655 has a chance to validate correctly.  Reported by "Douglas E. Engert"
2656 <deengert@anl.gov> in
2657 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3351>.
2659 ** libgnutls: result_size in gnutls_hex_encode now holds
2660 the size of the result. Report by John Brooks <special@dereferenced.net>.
2662 ** libgnutls: gnutls_handshake when sending client hello during a
2663 rehandshake, will not offer a version number larger than the current.
2664 Reported by Tristan Hill <stan@saticed.me.uk>.
2666 ** libgnutls: Permit V1 Certificate Authorities properly.
2667 Before they were mistakenly rejected even though
2668 GNUTLS_VERIFY_ALLOW_ANY_X509_V1_CA_CRT and/or
2669 GNUTLS_VERIFY_ALLOW_X509_V1_CA_CRT were supplied.  Reported by
2670 "Douglas E. Engert" <deengert@anl.gov> in
2671 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3351>.
2673 ** API and ABI modifications:
2674 No changes since last version.
2676 * Version 2.7.4 (released 2009-01-07)
2678 ** libgnutls: deprecate X.509 validation chains using MD5 and MD2 signatures.
2679 This is a bugfix -- the previous attempt to do this from internal x509
2680 certificate verification procedures did not return the correct value
2681 for certificates using a weak hash.  Reported by Daniel Kahn Gillmor
2682 <dkg@fifthhorseman.net> in
2683 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3332>,
2684 debugged and patch by Tomas Mraz <tmraz@redhat.com> and Daniel Kahn
2685 Gillmor <dkg@fifthhorseman.net>.
2687 ** libgnutls: New interface to get key id for certificate requests.
2688 Patch from David Marín Carreño <davefx@gmail.com> in
2689 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3321>.
2691 ** libgnutls: gnutls_x509_crq_print will now also print public key id.
2693 ** certtool: --verify-chain now prints results of using library verification.
2694 Earlier, certtool --verify-chain used its own validation algorithm
2695 which wasn't guaranteed to give the same result as the libgnutls
2696 internal validation algorithm.  Now this command print a new final
2697 line with header 'Chain verification output:' that contains the result
2698 from using the internal verification algorithm on the same chain.
2700 ** tests: Add crq_key_id self-test of gnutls_x509_crq_get_key_id.
2702 ** API and ABI modifications:
2703 gnutls_x509_crq_get_key_id: ADDED.
2705 * Version 2.7.3 (released 2008-12-10)
2707 ** libgnutls: Fix chain verification for chains that ends with RSA-MD2 CAs.
2708 Reported by Michael Kiefer <Michael-Kiefer@web.de> in
2709 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=507633> forwarded by
2710 Andreas Metzler <ametzler@downhill.at.eu.org> in
2711 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3309>.
2713 ** libgnutls: Libgcrypt initialization changed.
2714 If libgcrypt has not already been initialized, GnuTLS will now
2715 initialize libgcrypt with disabled secure memory.  Initialize
2716 libgcrypt explicitly in your application if you want to enable secure
2717 memory.  Before GnuTLS initialized libgcrypt to use GnuTLS's memory
2718 allocation functions, which doesn't use secure memory, so there is no
2719 real change in behaviour.
2721 ** libgnutls: Fix memory leak in PSK authentication.
2722 Reported by Michael Weiser <michael@weiser.dinsnail.net> in
2723 <http://permalink.gmane.org/gmane.network.gnutls.general/1465>.
2725 ** libgnutls: Small byte reads via gnutls_record_recv() optimized.
2727 ** certtool: Move gcry_control(GCRYCTL_ENABLE_QUICK_RANDOM, 0) call earlier.
2728 It needs to be invoked before libgcrypt is initialized.
2730 ** gnutls-cli: Return non-zero exit code on error conditions.
2732 ** gnutls-cli: Corrected bug which caused a rehandshake request to be ignored.
2734 ** tests: Added chainverify self-test that tests X.509 chain verifications.
2736 ** API and ABI modifications:
2737 No changes since last version.
2739 * Version 2.7.2 (released 2008-11-18)
2741 ** libgnutls: Fix X.509 certificate chain validation error. [GNUTLS-SA-2008-3]
2742 The flaw makes it possible for man in the middle attackers (i.e.,
2743 active attackers) to assume any name and trick GnuTLS clients into
2744 trusting that name.  Thanks for report and analysis from Martin von
2745 Gagern <Martin.vGagern@gmx.net>.  [CVE-2008-4989]
2747 Any updates with more details about this vulnerability will be added
2748 to <http://www.gnu.org/software/gnutls/security.html>
2750 ** libgnutls: Fix namespace issue with version symbols.
2751 The symbols LIBGNUTLS_VERSION, LIBGNUTLS_VERSION_MAJOR,
2752 LIBGNUTLS_VERSION_MINOR, LIBGNUTLS_VERSION_PATCH, and
2753 LIBGNUTLS_VERSION_NUMBER were renamed to GNUTLS_VERSION_NUMBER,
2754 GNUTLS_VERSION_MAJOR, GNUTLS_VERSION_MINOR, GNUTLS_VERSION_PATCH, and
2755 GNUTLS_VERSION_NUMBER respectively.  The old symbols will continue to
2756 work but are deprecated.
2758 ** certtool: allow setting arbitrary key purpose object identifiers.
2760 ** libgnutls: Fix detection of C99 macros, to make debug logging work again.
2762 ** libgnutls: Add missing prototype for gnutls_srp_set_prime_bits.
2763 Reported by Kevin Quick <quick@sparq.org> in
2764 <https://savannah.gnu.org/support/index.php?106454>.
2766 ** libgnutls-extra: Make building with LZO compression work again.
2767 Build failure reported by Arfrever Frehtes Taifersar Arahesis
2768 <arfrever.fta@gmail.com> in
2769 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3194>.
2771 ** libgnutls: Change detection of when to use a linker version script.
2772 Use --enable-ld-version-script or --disable-ld-version-script to
2773 override auto-detection logic.
2775 ** doc: Change license on the manual to GFDLv1.3+.
2777 ** doc: GTK-DOC fixes for new splitted configuration system.
2779 ** doc: Texinfo stylesheet uses white background.
2781 ** tests: Add cve-2008-4989.c self-test.
2782 Tests regressions of the GNUTLS-SA-2008-3 security problem, and the
2783 follow-on problem with crashes on length 1 certificate chains.
2785 ** gnulib: Deprecated modules removed.
2786 Modules include memchr and memcmp.
2788 ** Fix warnings and build GnuTLS with more warnings enabled.
2790 ** minitasn1: Internal copy updated to libtasn1 v1.7.
2792 ** API and ABI modifications:
2793 gnutls_certificate_set_x509_simple_pkcs12_mem: ADDED
2794 GNUTLS_VERSION: ADDED, replaces LIBGNUTLS_VERSION.
2795 GNUTLS_VERSION_MAJOR: ADDED, replaces LIBGNUTLS_VERSION_MAJOR.
2796 GNUTLS_VERSION_MINOR: ADDED, replaces LIBGNUTLS_VERSION_MINOR.
2797 GNUTLS_VERSION_PATCH: ADDED, replaces LIBGNUTLS_VERSION_PATCH.
2798 GNUTLS_VERSION_NUMBER: ADDED, replaces LIBGNUTLS_VERSION_NUMBER.
2799 LIBGNUTLS_VERSION: DEPRECATED.
2800 LIBGNUTLS_VERSION_MAJOR: DEPRECATED.
2801 LIBGNUTLS_VERSION_MINOR: DEPRECATED.
2802 LIBGNUTLS_VERSION_PATCH: DEPRECATED.
2803 LIBGNUTLS_VERSION_NUMBER: DEPRECATED.
2805 * Version 2.7.1 (released 2008-10-31)
2807 ** certtool: print a PKCS #8 key even if it is not encrypted.
2809 ** Old libgnutls.m4 and libgnutls-config scripts removed.
2810 Please use pkg-config instead.
2812 ** Configuration system modified.
2813 There is now a configure script in lib/ and libextra/ as well, because
2814 gnulib works better with a config.h per gnulib directory.
2816 ** API and ABI modifications:
2817 No changes since last version.
2819 * Version 2.7.0 (released 2008-10-16)
2821 ** libgnutls: Added functions to handle CRL extensions.
2823 ** libgnutls: Added functions to handle X.509 extensions in Certificate
2824 Requests.
2826 ** libgnutls: Improved error string for GNUTLS_E_AGAIN.
2827 Suggested by "Lavrentiev, Anton (NIH/NLM/NCBI) [C]" <lavr@ncbi.nlm.nih.gov>.
2829 ** certtool: Print and set CRL and CRQ extensions.
2831 ** libgnutls-extra: Protect internal symbols with static.
2832 Fixes problem when linking certtool statically.  Tiny patch from Aaron
2833 Ucko <ucko@ncbi.nlm.nih.gov>.
2835 ** libgnutls-openssl: fix out of bounds access.
2836 Problem in X509_get_subject_name and X509_get_issuer_name.  Tiny patch
2837 from Thomas Viehmann <tv@beamnet.de>.
2839 ** libgnutlsxx: Define server_session::get_srp_username even if no SRP.
2841 ** tests: Make tests compile when using internal libtasn1.
2842 Patch by ludo@gnu.org (Ludovic Courtès).
2844 ** Changed detection of libtasn1 and libgcrypt to avoid depending on *-config.
2845 We now require a libgcrypt that has Camellia constants declared in
2846 gcrypt.h, which means v1.3.0 or later.
2848 ** API and ABI modifications:
2849 gnutls_x509_crl_get_authority_key_id: ADDED
2850 gnutls_x509_crl_get_number: ADDED
2851 gnutls_x509_crl_get_extension_oid: ADDED
2852 gnutls_x509_crl_get_extension_info: ADDED
2853 gnutls_x509_crl_get_extension_data: ADDED
2854 gnutls_x509_crl_set_authority_key_id: ADDED
2855 gnutls_x509_crl_set_number: ADDED
2856 gnutls_x509_crq_get_key_rsa_raw: ADDED
2857 gnutls_x509_crq_get_attribute_info: ADDED
2858 gnutls_x509_crq_get_attribute_data: ADDED
2859 gnutls_x509_crq_get_extension_info: ADDED
2860 gnutls_x509_crq_get_extension_data: ADDED
2861 gnutls_x509_crq_get_key_usage: ADDED
2862 gnutls_x509_crq_get_basic_constraints: ADDED
2863 gnutls_x509_crq_get_subject_alt_name: ADDED
2864 gnutls_x509_crq_get_subject_alt_othername_oid: ADDED
2865 gnutls_x509_crq_get_extension_by_oid: ADDED
2866 gnutls_x509_crq_set_subject_alt_name: ADDED
2867 gnutls_x509_crq_set_basic_constraints: ADDED
2868 gnutls_x509_crq_set_key_usage: ADDED
2869 gnutls_x509_crq_get_key_purpose_oid: ADDED
2870 gnutls_x509_crq_set_key_purpose_oid: ADDED
2871 gnutls_x509_crq_print: ADDED
2872 gnutls_x509_crt_set_crq_extensions: ADDED
2874 * Version 2.6.6 (released 2009-04-30)
2876 ** libgnutls: Corrected double free on signature verification failure.
2877 Reported by Miroslav Kratochvil <exa.exa@gmail.com>.  See the advisory
2878 for more details.  [GNUTLS-SA-2009-1] [CVE-2009-1415]
2880 ** libgnutls: Fix DSA key generation.
2881 Noticed when investigating the previous GNUTLS-SA-2009-1 problem.  All
2882 DSA keys generated using GnuTLS 2.6.x are corrupt.  See the advisory
2883 for more details.  [GNUTLS-SA-2009-2] [CVE-2009-1416]
2885 ** libgnutls: Check expiration/activation time on untrusted certificates.
2886 Reported by Romain Francoise <romain@orebokech.com>.  Before the
2887 library did not check activation/expiration times on certificates, and
2888 was documented as not doing so.  We have realized that many
2889 applications that use libgnutls, including gnutls-cli, fail to perform
2890 proper checks.  Implementing similar logic in all applications leads
2891 to code duplication.  Hence, we decided to check whether the current
2892 time (as reported by the time function) is within the
2893 activation/expiration period of certificates when verifying untrusted
2894 certificates.
2896 This changes the semantics of gnutls_x509_crt_list_verify, which in
2897 turn is used by gnutls_certificate_verify_peers and
2898 gnutls_certificate_verify_peers2.  We add two new
2899 gnutls_certificate_status_t codes for reporting the new error
2900 condition, GNUTLS_CERT_NOT_ACTIVATED and GNUTLS_CERT_EXPIRED.  We also
2901 add a new gnutls_certificate_verify_flags flag,
2902 GNUTLS_VERIFY_DISABLE_TIME_CHECKS, that can be used to disable the new
2903 behaviour.
2905 More details about the vulnerabilities will be posted at
2906 <http://www.gnu.org/software/gnutls/security.html>.
2908 ** gnutls-cli, gnutls-cli-debug: Fix AIX build problem.
2909 Reported by LAUPRETRE François (P) <francois.laupretre@ratp.fr> in
2910 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3468>.
2912 ** tests: Fix linking of tests/openpgp/keyring self-test.
2913 Reported by Daniel Black in <https://savannah.gnu.org/support/?106543>.
2915 ** API and ABI modifications:
2916 gnutls_x509_crt_list_verify: CHANGED, checks activation/expiration times.
2917 gnutls_certificate_verify_peers: Likewise.
2918 gnutls_certificate_verify_peers2: Likewise.
2919 GNUTLS_CERT_NOT_ACTIVATED: ADDED.
2920 GNUTLS_CERT_EXPIRED: ADDED.
2921 GNUTLS_VERIFY_DISABLE_TIME_CHECKS: ADDED.
2923 * Version 2.6.5 (released 2009-04-11)
2925 ** libgnutls: Added %SSL3_RECORD_VERSION priority string that allows to
2926 specify the client hello message record version. Used to overcome buggy
2927 TLS servers. Report by Martin von Gagern.
2929 ** GnuTLS no longer uses the libtasn1-config script to find libtasn1.
2930 Libtasn1 0.3.4 or later is required.  This is to align with the
2931 upcoming libtasn1 v2.0 release that doesn't have a libtasn1-script.
2933 ** API and ABI modifications:
2934 No changes since last version.
2936 * Version 2.6.4 (released 2009-02-06)
2938 ** libgnutls: Accept chains where intermediary certs are trusted.
2939 Before GnuTLS needed to validate the entire chain back to a
2940 self-signed certificate.  GnuTLS will now stop looking when it has
2941 found an intermediary trusted certificate.  The new behaviour is
2942 useful when chains, for example, contains a top-level CA, an
2943 intermediary CA signed using RSA-MD5, and an end-entity certificate.
2944 To avoid chain validation errors due to the RSA-MD5 cert, you can
2945 explicitly add the intermediary RSA-MD5 cert to your trusted certs.
2946 The signature on trusted certificates are not checked, so the chain
2947 has a chance to validate correctly.  Reported by "Douglas E. Engert"
2948 <deengert@anl.gov> in
2949 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3351>.
2951 ** libgnutls: result_size in gnutls_hex_encode now holds
2952 the size of the result. Report by John Brooks <special@dereferenced.net>.
2954 ** libgnutls: gnutls_handshake when sending client hello during a
2955 rehandshake, will not offer a version number larger than the current.
2956 Reported by Tristan Hill <stan@saticed.me.uk>.
2958 ** libgnutls: Permit V1 Certificate Authorities properly.
2959 Before they were mistakenly rejected even though
2960 GNUTLS_VERIFY_ALLOW_ANY_X509_V1_CA_CRT and/or
2961 GNUTLS_VERIFY_ALLOW_X509_V1_CA_CRT were supplied.  Reported by
2962 "Douglas E. Engert" <deengert@anl.gov> in
2963 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3351>.
2965 ** libgnutls: deprecate X.509 validation chains using MD5 and MD2 signatures.
2966 This is a bugfix -- the previous attempt to do this from internal x509
2967 certificate verification procedures did not return the correct value
2968 for certificates using a weak hash.  Reported by Daniel Kahn Gillmor
2969 <dkg@fifthhorseman.net> in
2970 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3332>,
2971 debugged and patch by Tomas Mraz <tmraz@redhat.com> and Daniel Kahn
2972 Gillmor <dkg@fifthhorseman.net>.
2974 ** libgnutls: Fix compile error with Sun CC.
2975 Reported by Jeff Cai <jeff.cai@sun.com> in
2976 <https://savannah.gnu.org/support/?106549>.
2978 ** API and ABI modifications:
2979 No changes since last version.
2981 * Version 2.6.3 (released 2008-12-12)
2983 ** libgnutls: Fix chain verification for chains that ends with RSA-MD2 CAs.
2984 Reported by Michael Kiefer <Michael-Kiefer@web.de> in
2985 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=507633> forwarded by
2986 Andreas Metzler <ametzler@downhill.at.eu.org> in
2987 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3309>.
2989 ** libgnutls: Fix memory leak in PSK authentication.
2990 Reported by Michael Weiser <michael@weiser.dinsnail.net> in
2991 <http://permalink.gmane.org/gmane.network.gnutls.general/1465>.
2993 ** certtool: Move gcry_control(GCRYCTL_ENABLE_QUICK_RANDOM, 0) call earlier.
2994 It needs to be invoked before libgcrypt is initialized.
2996 ** gnutls-cli: Return non-zero exit code on error conditions.
2998 ** gnutls-cli: Corrected bug which caused a rehandshake request to be ignored.
3000 ** API and ABI modifications:
3001 No changes since last version.
3003 * Version 2.6.2 (released 2008-11-12)
3005 ** libgnutls: Fix crash in X.509 validation code for self-signed certificates.
3006 The patch to fix the security problem GNUTLS-SA-2008-3 introduced a
3007 problem for certificate chains that contained just one self-signed
3008 certificate.  Reported by Michael Meskes <meskes@debian.org> in
3009 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=505279>.
3011 ** API and ABI modifications:
3012 No changes since last version.
3014 * Version 2.6.1 (released 2008-11-10)
3016 ** libgnutls: Fix X.509 certificate chain validation error. [GNUTLS-SA-2008-3]
3017 The flaw makes it possible for man in the middle attackers (i.e.,
3018 active attackers) to assume any name and trick GnuTLS clients into
3019 trusting that name.  Thanks for report and analysis from Martin von
3020 Gagern <Martin.vGagern@gmx.net>.  [CVE-2008-4989]
3022 Any updates with more details about this vulnerability will be added
3023 to <http://www.gnu.org/software/gnutls/security.html>
3025 ** libgnutls: Add missing prototype for gnutls_srp_set_prime_bits.
3026 Reported by Kevin Quick <quick@sparq.org> in
3027 <https://savannah.gnu.org/support/index.php?106454>.
3029 ** libgnutls-extra: Protect internal symbols with static.
3030 Fixes problem when linking certtool statically.  Tiny patch from Aaron
3031 Ucko <ucko@ncbi.nlm.nih.gov>.
3033 ** libgnutls-openssl: Fix patch against X509_get_issuer_name.
3034 It incorrectly returned the subject DN instead of issuer DN in v2.6.0.
3035 Thanks to Thomas Viehmann <tv@beamnet.de> for report.
3037 ** certtool: Print a PKCS #8 key even if it is not encrypted.
3039 ** tests: Make tests compile when using internal libtasn1.
3040 Patch by ludo@gnu.org (Ludovic Courtès).
3042 ** API and ABI modifications:
3043 No changes since last version.
3045 * Version 2.6.0 (released 2008-10-06)
3047 ** libgnutls: Correct printing and parsing of IPv6 addresses.
3049 ** libgnutls-openssl: fix out of bounds access.
3050 Problem in X509_get_subject_name and X509_get_issuer_name.  Tiny patch
3051 from Thomas Viehmann <tv@beamnet.de>.
3053 ** certtool: Use inet_pton for parsing IPv6 addresses.
3055 ** Major changes compared to the v2.4 branch:
3057 *** Added API to replace and update the crypto backend.
3059 *** certtool: can add several subject alternative names via template file.
3061 *** opencdk: Parse (but not decrypt) encrypted secret keys.
3063 *** libgnutls: gnutls_x509_crt_set_subject_alt_name() was added that can
3064 either set or append alternative names. It can also handle binary structures
3065 such as IP addresses.
3067 *** libgnutls: New function to set minimum acceptable SRP bits.
3068 The function is gnutls_srp_set_prime_bits.
3070 *** libgnutls: Add interface to deal with public key and signature algorithms.
3071 The functions are called gnutls_pk_list, gnutls_pk_get_id,
3072 gnutls_sign_list, and gnutls_sign_get_id.
3074 *** libgnutls: New interfaces to get name of public key and signing algorithms.
3075 The functions are gnutls_sign_get_name and gnutls_pk_get_name.
3077 *** libgnutls: New API to get a string corresponding to a error symbol.
3078 The function is gnutls_strerror_name.
3080 *** libgnutls: New API to set the public parameters in a certificate request
3081 *** from a private key.
3082 The function is gnutls_x509_crq_set_key_rsa_raw.
3084 *** libgnutls: New API to set a callback to extract TLS Finished data.
3085 The function to register is gnutls_session_set_finished_function and
3086 it takes a callback of the gnutls_finished_callback_func type.
3088 *** libgnutls: Fix namespace problem with TLS_MASTER_SIZE and TLS_RANDOM_SIZE.
3090 *** libgnutls: New interface to register a new TLS extension handler.
3091 The new function gnutls_ext_register can be used to register handlers
3092 for specific TLS extension types.  The callback functions have the new
3093 types gnutls_ext_recv_func and gnutls_ext_send_func.  A type to
3094 classify TLS extensions, gnutls_ext_parse_type_t, has been added as
3095 well.
3097 *** libgnutls-extra: Add function to work with Libgcrypt in FIPS mode.
3098 The function is gnutls_register_md5_handler.  When libgcrypt is in
3099 FIPS mode, MD5 is disabled, but TLS normally requires use of MD5 in
3100 the PRF.
3102 *** API/ABI changes in GnuTLS 2.6
3103 No functions have been removed or modified.  The library should be
3104 fully backwards compatible on both the source and binary level.
3106 A new header file <gnutls/crypto.h> have been added.  It contains
3107 definitions related to replacing the internal crypto functionality.
3108 All definitions and the header itself is experimental but supported.
3110 We have realized that the symbols TLS_MASTER_SIZE and TLS_RANDOM_SIZE
3111 does not use the normal namespace.  We have added GNUTLS_MASTER_SIZE
3112 and GNUTLS_RANDOM_SIZE, but the old symbols are still defined.
3114 The following functions have been added to libgnutls:
3116 GNUTLS_MASTER_SIZE
3117 GNUTLS_RANDOM_SIZE
3118 gnutls_crypto_bigint_register2
3119 gnutls_crypto_cipher_register2
3120 gnutls_crypto_digest_register2
3121 gnutls_crypto_mac_register2
3122 gnutls_crypto_pk_register2
3123 gnutls_crypto_rnd_register2
3124 gnutls_crypto_single_cipher_register2
3125 gnutls_crypto_single_digest_register2
3126 gnutls_crypto_single_mac_register2
3127 gnutls_ext_register
3128 gnutls_pk_get_id
3129 gnutls_pk_get_name
3130 gnutls_pk_list
3131 gnutls_session_set_finished_function
3132 gnutls_sign_get_id
3133 gnutls_sign_get_name
3134 gnutls_sign_list
3135 gnutls_srp_set_prime_bits:
3136 gnutls_strerror_name
3137 gnutls_x509_crq_set_key_rsa_raw
3138 gnutls_x509_crt_set_crl_dist_points2
3139 gnutls_x509_crt_set_subject_alt_name
3141 The following functions have been added to libgnutls-extra:
3143 gnutls_register_md5_handler
3145 ** API and ABI modifications:
3146 No changes since last version.
3148 * Version 2.5.9 (released 2008-09-29)
3150 ** libgnutls: Fix several memory leaks.
3151 Reported by Sam Varshavchik <mrsam@courier-mta.com>.
3153 ** libgnutls: Fix buffer overrun in gnutls_x509_crt_list_import.
3154 Report and patch by Jonathan Manktelow.
3156 ** libgnutls: crypto.h gnutls_pk_params_st changes allocation strategy.
3157 The parameters are now allocated in the structure itself.
3159 ** doc: Texinfo HTML manual uses a stylesheet to improve readability.
3161 ** tests: Scripts now use EXEEXT properly.
3162 Modern libtool doesn't create wrapper script, so the self tests need
3163 to invoke certtool.exe under MinGW32+Wine.
3165 ** Uses autoconf 2.63, automake 1.10.1, libtool 2.2.6a.
3166 Automake warnings are now also enabled.
3168 ** API and ABI modifications:
3169 gnutls_pk_params_st: MODIFIED
3171 * Version 2.5.8 (released 2008-09-21)
3173 ** certtool: updated so it can add several subject alternative names using
3174 the template file.
3176 ** libgnutls: gnutls_x509_crt_set_subject_alt_name() was added that can
3177 either set or append alternative names. It can also handle binary structures
3178 such as IP addresses.
3180 ** libgnutls: Fix crash in hashing code when using non-libgcrypt handlers.
3182 ** libgnutls: New function to set minimum acceptable SRP bits.
3183 The function is gnutls_srp_set_prime_bits.  Tiny patch by Kevin Quick
3184 <quick@sparq.org> in <https://savannah.gnu.org/support/index.php?106454>.
3186 ** libgnutls: Check for overflows in gnutls_calloc and gnutls_secure_calloc.
3187 Also fix overflows in calls to those functions.  Reported by Werner
3188 Koch <wk@gnupg.org>.
3190 ** libgnutls-extra: Add function to work with Libgcrypt in FIPS mode.
3191 The function is gnutls_register_md5_handler.  When libgcrypt is in
3192 FIPS mode, MD5 is disabled, but TLS normally requires use of MD5 in
3193 the PRF.
3195 ** Opencdk: Add calls to gnutls_assert to ease debugging.
3197 ** Indent code.
3199 ** API and ABI modifications:
3200 gnutls_srp_set_prime_bits: ADDED
3201 gnutls_register_md5_handler: ADDED
3202 gnutls_x509_crt_set_crl_dist_points2: ADDED
3203 gnutls_x509_crt_set_subject_alt_name: ADDED
3205 * Version 2.5.7 (released 2008-09-16)
3207 ** libgnutls: New interfaces to get name of public key and signing algorithms.
3208 The functions are gnutls_sign_get_name and gnutls_pk_get_name.
3210 ** libgnutls: Don't crash when gnutls_credentials_set is called twice.
3212 ** libgnutls: Fix libgnutls shared library version.
3213 It wasn't properly incremented after adding symbols in the last
3214 release.
3216 ** manual: Now mention supported public key and public key signing algorithms.
3218 ** tests/openssl: initialize gnutls before use.
3220 ** tests/setcredcrash: New test to catch regressions of gnutls_credentials_set.
3222 ** GTK-DOC manual: mention new symbols in 2.6.x.  Mention crypto.h functions.
3224 ** API and ABI modifications:
3225 gnutls_sign_get_name: ADDED
3226 gnutls_pk_get_name: ADDED
3228 * Version 2.5.6 (released 2008-09-08)
3230 ** libgnutls: Add interface to deal with public key and signature algorithms.
3231 The functions are called gnutls_pk_list, gnutls_pk_get_id,
3232 gnutls_sign_list, and gnutls_sign_get_id.  Suggested by Sam
3233 Varshavchik <mrsam@courier-mta.com>.
3235 ** libgnutls: Refactor and clean up some code.
3237 ** libgnutls: Fix compile error with Sun CC.
3239 ** gnutls-cli: Improve --list output to include public key and signature algs.
3241 ** gnutls-cli, gnutls-serv: Remove --copyright parameter.
3242 Use standard --version to get license info.
3244 ** gnutls-cli.1: Document all new parameters.
3245 Thanks to James Westby <jw+debian@jameswestby.net>.
3247 ** tests: New self-test pgps2kgnu to test parsing of encrypted secrets.
3248 Contributed by Daniel Kahn Gillmor <dkg-debian.org@fifthhorseman.net>.
3250 ** API and ABI modifications:
3251 gnutls_pk_list: ADDED
3252 gnutls_pk_get_id: ADDED
3253 gnutls_sign_list: ADDED
3254 gnutls_sign_get_id: ADDED
3256 * Version 2.5.5 (released 2008-08-29)
3258 ** libgnutls: New API to get a string corresponding to a error symbol.
3259 The function is gnutls_strerror_name.
3261 ** libgnutls: Fix include paths so that building with internal libtasn1 works.
3262 Reported by "jth.net ApS" <info@jth.net>.
3264 ** libgnutls: Fix segmentation fault when generating private keys.
3265 Reported by Daniel Kahn Gillmor <dkg-debian.org@fifthhorseman.net>.
3267 ** libgnutls: Remove code to import certificate chains in PKCS#7 format.
3268 The code has not worked since v0.9.0 and apparently nobody has missed
3269 it, so we decided to remove the code rather than fix it.  If you have
3270 old certificate chains stored in PKCS#7 format, you can convert them
3271 to a list of PEM certificates by using 'certtool --p7-info'.  Reported
3272 by Christian Grothoff <christian@grothoff.org>.
3274 ** opencdk: Parse (but not decrypt) encrypted secret keys.
3275 Contributed by Daniel Kahn Gillmor <dkg-debian.org@fifthhorseman.net>.
3277 ** libgnutls: Fix many warnings.
3279 ** Included copy of libtasn1 is upgraded to version 1.5.
3281 ** Add French translation, thanks to Nicolas Provost.
3283 ** API and ABI modifications:
3284 gnutls_strerror_name: ADDED
3286 * Version 2.5.4 (released 2008-08-19)
3288 ** Fix secure memory initialization of libgcrypt.
3289 Reported by Joe Orton <joe@manyfish.co.uk> in
3290 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/2992>.
3292 ** Doc fixes.
3293 Reference to NIST SP 800-57 in the manual on key size recommendations.
3294 Added 'Since:' tags to new APIs for gtk-doc.
3296 ** API and ABI modifications:
3297 No changes since last version.
3299 * Version 2.5.3 (released 2008-08-14)
3301 ** libgnutls: New API to set the public parameters in a certificate request
3302 ** from a private key.
3303 The function is gnutls_x509_crq_set_key_rsa_raw.  Inspired by
3304 discussion with "Zach C." <fxchip@gmail.com>.
3306 ** libgnutls: New API to set a callback to extract TLS Finished data.
3307 The function to register is gnutls_session_set_finished_function and
3308 it takes a callback of the gnutls_finished_callback_func type.
3310 ** libgnutls: Drop final comma after GNUTLS_CRT_PRINT_UNSIGNED_FULL in enum.
3311 Reported in <https://savannah.gnu.org/support/?106453>.
3313 ** libgnutls: Fix namespace problem with TLS_MASTER_SIZE and TLS_RANDOM_SIZE.
3314 The new names are GNUTLS_MASTER_SIZE and GNUTLS_RANDOM_SIZE.  The old
3315 names are mapped to the new names in compat.h.  These mappings will
3316 likely be removed more quickly than other mappings in that file due to
3317 the namespace violation.
3319 ** libgnutlsxx: Make it build when SRP is disabled.
3321 ** doc: Add doxygen files in doc/doxygen/.
3323 ** API and ABI modifications:
3324 gnutls_x509_crq_set_key_rsa_raw: ADDED
3325 gnutls_session_set_finished_function: ADDED
3326 gnutls_finished_callback_func: ADDED
3327 GNUTLS_MASTER_SIZE: ADDED
3328 GNUTLS_RANDOM_SIZE: ADDED
3329 TLS_MASTER_SIZE: DEPRECATED
3330 TLS_RANDOM_SIZE: DEPRECATED
3332 * Version 2.5.2 (released 2008-07-08)
3334 ** libgnutls: Fix bug in gnutls_dh_params_generate2.
3335 The prime and generator was swapped.
3337 ** libgnutls: New interface to register a new TLS extension handler.
3338 The new function gnutls_ext_register can be used to register handlers
3339 for specific TLS extension types.  The callback functions have the new
3340 types gnutls_ext_recv_func and gnutls_ext_send_func.  A type to
3341 classify TLS extensions, gnutls_ext_parse_type_t, has been added as
3342 well.
3344 ** Move more code for TLS/IA extension from libgnutls to libgnutls-extra.
3345 This was made possible by using the new gnutls_ext_register interface.
3346 The TLS/IA functionality has only been supported through the
3347 libgnutls-extra library, so it makes sense for the code to belong
3348 there too.
3350 ** API and ABI modifications:
3351 gnutls_ext_recv_func: ADDED
3352 gnutls_ext_send_func: ADDED
3353 gnutls_ext_parse_type_t: ADDED
3354 gnutls_ext_register: ADDED
3356 * Version 2.5.1 (released 2008-07-02)
3358 ** Indent code.
3360 ** API and ABI modifications:
3361 No changes since last version.
3363 * Version 2.5.0 (released 2008-07-02)
3365 ** Port fixes from v2.4.1 release, see below.
3367 ** Added API to replace and update the crypto backend.
3368 The header gnutls/crypto.h is now officially supported, and declares
3369 the symbols below.
3371 ** Rewritten opencdk crypto backend, to use the gnutls internal one.
3373 ** Update gnulib and translations.
3374 The gnulib gc crypto code has been removed since it was never finished
3375 and is no longer even used.  An internal non-libgcrypt crypto
3376 implementation may be added in the future, but we'll decide that later
3379 ** API and ABI modifications:
3380 gnutls_crypto_bigint_register2: ADDED.
3381 gnutls_crypto_cipher_register2: ADDED.
3382 gnutls_crypto_digest_register2: ADDED.
3383 gnutls_crypto_mac_register2: ADDED.
3384 gnutls_crypto_pk_register2: ADDED.
3385 gnutls_crypto_rnd_register2: ADDED.
3386 gnutls_crypto_single_cipher_register2: ADDED.
3387 gnutls_crypto_single_digest_register2: ADDED.
3388 gnutls_crypto_single_mac_register2: ADDED.
3390 * Version 2.4.3 (released 2009-02-06)
3392 ** libgnutls: Accept chains where intermediary certs are trusted.
3393 Before GnuTLS needed to validate the entire chain back to a
3394 self-signed certificate.  GnuTLS will now stop looking when it has
3395 found an intermediary trusted certificate.  The new behaviour is
3396 useful when chains, for example, contains a top-level CA, an
3397 intermediary CA signed using RSA-MD5, and an end-entity certificate.
3398 To avoid chain validation errors due to the RSA-MD5 cert, you can
3399 explicitly add the intermediary RSA-MD5 cert to your trusted certs.
3400 The signature on trusted certificates are not checked, so the chain
3401 has a chance to validate correctly.  Reported by "Douglas E. Engert"
3402 <deengert@anl.gov> in
3403 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3351>.
3405 ** libgnutls: Permit V1 Certificate Authorities properly.
3406 Before they were mistakenly rejected even though
3407 GNUTLS_VERIFY_ALLOW_ANY_X509_V1_CA_CRT and/or
3408 GNUTLS_VERIFY_ALLOW_X509_V1_CA_CRT were supplied.  Reported by
3409 "Douglas E. Engert" <deengert@anl.gov> in
3410 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3351>.
3412 ** libgnutls: deprecate X.509 validation chains using MD5 and MD2 signatures.
3413 This is a bugfix -- the previous attempt to do this from internal x509
3414 certificate verification procedures did not return the correct value
3415 for certificates using a weak hash.  Reported by Daniel Kahn Gillmor
3416 <dkg@fifthhorseman.net> in
3417 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3332>,
3418 debugged and patch by Tomas Mraz <tmraz@redhat.com> and Daniel Kahn
3419 Gillmor <dkg@fifthhorseman.net>.
3421 ** libgnutls: Fix chain verification for chains that ends with RSA-MD2 CAs.
3422 Reported by Michael Kiefer <Michael-Kiefer@web.de> in
3423 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=507633> forwarded by
3424 Andreas Metzler <ametzler@downhill.at.eu.org> in
3425 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3309>.
3427 ** libgnutls: Fix crash in X.509 validation code for self-signed certificates.
3428 The patch to fix the security problem GNUTLS-SA-2008-3 introduced a
3429 problem for certificate chains that contained just one self-signed
3430 certificate.  Reported by Michael Meskes <meskes@debian.org> in
3431 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=505279>.
3433 ** libgnutls: Fix X.509 certificate chain validation error. [GNUTLS-SA-2008-3]
3434 The flaw makes it possible for man in the middle attackers (i.e.,
3435 active attackers) to assume any name and trick GnuTLS clients into
3436 trusting that name.  Thanks for report and analysis from Martin von
3437 Gagern <Martin.vGagern@gmx.net>.  [CVE-2008-4989]
3439 Any updates with more details about this vulnerability will be added
3440 to <http://www.gnu.org/software/gnutls/security.html>
3442 ** libgnutls: Fix buffer overrun in gnutls_x509_crt_list_import.
3443 Report and patch by Jonathan Manktelow.
3445 ** libgnutls: Avoid use of non-thread safe strerror.
3447 ** API and ABI modifications:
3448 No changes since last version.
3450 * Version 2.4.2 (released 2008-09-15)
3452 ** libgnutls: Don't crash when gnutls_credentials_set is called twice.
3454 ** libgnutls: Corrected memory leak in X.509 functions.
3455 Thanks to Colin Leroy <colin@colino.net>.
3457 ** libgnutls: Fix compile error with Sun CC.
3459 ** gnutls-cli.1: Document all new parameters.
3460 Thanks to James Westby <jw+debian@jameswestby.net>.
3462 ** tests/openssl: initialize gnutls before use.
3463 Fixes crash with libgcrypt 1.4.2.  Reported by Ludovic Courtes
3464 <ludovic.courtes@laas.fr>.
3466 ** doc/: Fix texinfo markup for old texinfo versions.
3468 ** Included copy of libtasn1 is upgraded to version 1.5.
3470 ** API and ABI modifications:
3471 No changes since last version.
3473 * Version 2.4.1 (released 2008-06-30)
3475 ** libgnutls: Fix local crash in gnutls_handshake.  [GNUTLS-SA-2008-2]
3476 If the gnutls_handshake function is called for a normal session, which
3477 can happen for re-handshakes, the library would crash because it tried
3478 to hash some data using a libgcrypt handle that had been deallocated.
3479 Report and tiny patch from Tomas Mraz <tmraz@redhat.com>.  Any updates
3480 with more details about this vulnerability will be added to
3481 <http://www.gnu.org/software/gnutls/security.html>
3483 ** libgnutls: Fix memory leaks when doing a re-handshake.
3484 Reported by Sam Varshavchik <mrsam@courier-mta.com> in
3485 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/2928>.
3487 ** Fix compiler warnings.
3488 Reported by Massimo Gaspari <massimo.gaspari@alice.it> in
3489 <http://thread.gmane.org/gmane.network.gnutls.general/1281>.
3491 ** Fix ordering of -I's to avoid opencdk.h conflict with system headers.
3492 Reported by Roman Bogorodskiy <novel@FreeBSD.org> in
3493 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/2930>.
3495 ** srptool: Fix a problem where --verify check does not succeed.
3496 Report and tiny patch by Matthias Koenig <mkoenig@suse.de> in
3497 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/2944>.
3499 ** API and ABI modifications:
3500 No changes since last version.
3502 * Version 2.4.0 (released 2008-06-19)
3504 ** Major changes compared to the v2.2 branch:
3506 *** The OpenPGP sub-system has been improved and now supports subkeys.
3508 *** The PSK sub-system has been improved and now supports password
3509 *** derivation and PSK identity hints.
3510 The password derivation algorithms support is documented in
3511 draft-ietf-netconf-tls-02.txt.
3513 *** The certtool --inder and --outder has been replaced by --inraw and --outraw.
3514 This aligns terminology with OpenPGP, which doesn't use DER encoding.
3515 The old parameters will continue to work for some time.
3517 *** Certtool now confirm passwords and changes permissions of private key files.
3519 *** The default handshake size limit has been increased to 48kb.
3520 It appears as if some valid handshakes are large due to sending many
3521 CA certificates.  (The earlier limit was 16kb.)
3523 *** LZO compression is now disabled by default.
3524 The main reason is that LZO compression in TLS is not standardized,
3525 but license compatiblity issues with minilzo triggered us to make this
3526 decision now.
3528 *** Improvements for cross-compilation to Windows and OpenWRT.
3530 *** The look of the GTK-DOC manual has been improved.
3531 Major developer visible changes compared to the v2.2 branch:
3533 *** Full OpenPGP support is part of libgnutls, licensed under the LGPL.
3535 *** New APIs to access the raw X.509 Subject and Issuer DN's and
3536 *** elements from the certificate credentials structure.
3537 Thanks to Joe Orton.
3539 *** New APIs to improve working with username/passwords and PSK.
3541 *** Names of constants to affect certificate printing changed.
3542 The constants are used for OpenPGP too, which the names didn't
3543 reflect, so the following name change has been made:
3545             Old name                         New name
3546      GNUTLS_X509_CRT_FULL            GNUTLS_CRT_PRINT_FULL
3547      GNUTLS_X509_CRT_ONELINE         GNUTLS_CRT_PRINT_ONELINE
3548      GNUTLS_X509_CRT_UNSIGNED_FULL   GNUTLS_CRT_PRINT_UNSIGNED_FULL
3550 The old names will be mapped to the new names for some time.
3552 *** The function gnutls_openpgp_privkey_get_id has been renamed to
3553 *** gnutls_openpgp_privkey_get_key_id.
3554 A compatibility mapping exists to avoid breaking API backwards
3555 compatibility.
3557 *** Replaced all uses of alloca with malloc and free.
3559 *** We no longer build with -D_REENTRANT -D_THREAD_SAFE.
3560 We have been unable to find a documented rationale for this practice.
3562 *** Of course, many smaller fixes have been made, see the ChangeLog file.
3564 *** API/ABI changes in GnuTLS 2.4
3565 All OpenPGP related functions have been moved from libgnutls-extra to
3566 libgnutls, and several new functions have been added (see below).
3567 Before making the release, we discussed whether moving functions from
3568 libgnutls-extra to libgnutls would require us to increment the ABI
3569 version, but the general opinion was that this would not be required.
3570 All older functions continue to work the same.  We are open to the
3571 possibility that this decision will lead to problem on some platform,
3572 and if it turns out that the Right Thing should have been to increment
3573 the shared library version, we would need to release an update within
3574 the 2.4.x branch that increments the shared library version.
3576 This release adds the following functions:
3578   gnutls_psk_client_get_hint
3579   gnutls_psk_set_server_credentials_hint
3580   gnutls_psk_netconf_derive_key
3582     Used to get/set the PSK identity hint, and derive PSK keys from
3583     passwords a'la netconf.
3585   gnutls_x509_dn_deinit
3586   gnutls_x509_dn_export
3587   gnutls_x509_dn_import
3588   gnutls_x509_dn_init
3590     Used to handle X.509 Certificate DN's directly.
3592   gnutls_hex2bin
3594     Converts a data buffer to hex.  Useful for handling PSK/SRP shared
3595     secrets.
3597   gnutls_certificate_get_x509_cas
3598   gnutls_certificate_get_x509_crls
3599   gnutls_certificate_get_openpgp_keyring
3601     Functions for direct access to credential elements.
3603   gnutls_openpgp_crt_get_auth_subkey
3604   gnutls_openpgp_crt_get_key_id
3605   gnutls_openpgp_crt_get_pk_dsa_raw
3606   gnutls_openpgp_crt_get_pk_rsa_raw
3607   gnutls_openpgp_crt_get_preferred_key_id
3608   gnutls_openpgp_crt_get_revoked_status
3609   gnutls_openpgp_crt_get_subkey_count
3610   gnutls_openpgp_crt_get_subkey_creation_time
3611   gnutls_openpgp_crt_get_subkey_expiration_time
3612   gnutls_openpgp_crt_get_subkey_fingerprint
3613   gnutls_openpgp_crt_get_subkey_id
3614   gnutls_openpgp_crt_get_subkey_idx
3615   gnutls_openpgp_crt_get_subkey_pk_algorithm
3616   gnutls_openpgp_crt_get_subkey_pk_dsa_raw
3617   gnutls_openpgp_crt_get_subkey_pk_rsa_raw
3618   gnutls_openpgp_crt_get_subkey_revoked_status
3619   gnutls_openpgp_crt_get_subkey_usage
3620   gnutls_openpgp_crt_print
3621   gnutls_openpgp_crt_set_preferred_key_id
3622   gnutls_openpgp_keyring_get_crt
3623   gnutls_openpgp_keyring_get_crt_count
3624   gnutls_openpgp_privkey_export
3625   gnutls_openpgp_privkey_export_dsa_raw
3626   gnutls_openpgp_privkey_export_rsa_raw
3627   gnutls_openpgp_privkey_export_subkey_dsa_raw
3628   gnutls_openpgp_privkey_export_subkey_rsa_raw
3629   gnutls_openpgp_privkey_get_fingerprint
3630   gnutls_openpgp_privkey_get_key_id
3631   gnutls_openpgp_privkey_get_pk_algorithm
3632   gnutls_openpgp_privkey_get_preferred_key_id
3633   gnutls_openpgp_privkey_get_revoked_status
3634   gnutls_openpgp_privkey_get_subkey_count
3635   gnutls_openpgp_privkey_get_subkey_creation_time
3636   gnutls_openpgp_privkey_get_subkey_expiration_time
3637   gnutls_openpgp_privkey_get_subkey_fingerprint
3638   gnutls_openpgp_privkey_get_subkey_id
3639   gnutls_openpgp_privkey_get_subkey_idx
3640   gnutls_openpgp_privkey_get_subkey_pk_algorithm
3641   gnutls_openpgp_privkey_get_subkey_revoked_status
3642   gnutls_openpgp_privkey_set_preferred_key_id
3644     New OpenPGP related functions.
3646     The function gnutls_openpgp_crt_get_key_id is the same as the old
3647     from gnutls_openpgp_crt_get_id, see above.
3649 The release also adds a new header file 'gnutls/crypto.h', however it
3650 is currently not used.
3652 ** libgnutls [OpenPGP]: New APIs to retrieve fingerprint from OpenPGP subkeys.
3653 Contributed by Daniel Kahn Gillmor <dkg-debian.org@fifthhorseman.net>.
3655 ** API and ABI modifications:
3656 gnutls_openpgp_crt_get_subkey_fingerprint: ADDED.
3657 gnutls_openpgp_privkey_get_subkey_fingerprint: ADDED.
3659 * Version 2.3.15 (released 2008-06-15)
3661 ** Disable the openpgp-certs self-tests.
3662 It results in failure under Wine and doesn't work on Debian buildds.
3664 ** API and ABI modifications:
3665 No changes since last version.
3667 * Version 2.3.14 (released 2008-06-11)
3669 ** libgnutls [OpenPGP]: Changed OpenPGP verification behaviour.
3670 An OpenPGP certificate is now only considered verified if all the user
3671 IDs are verified.
3673 ** Examples: Make C++ example compile.
3674 Earlier it may have failed with an unresolved reference to strlen.
3676 ** Documentation: Doc fix for gnutls_x509_crt_get_extension_oid.
3677 Reported by Sam Varshavchik <mrsam@courier-mta.com>.
3679 ** API and ABI modifications:
3680 No changes since last version.
3682 * Version 2.3.13 (released 2008-06-07)
3684 ** libgnutls [OpenPGP]: Make OpenPGP handshakes work again.
3686 ** doc/: Add psktool to info index.  Some minor cleanups.
3688 ** tests/: Added non-forking TLS handshake test, see tests/mini.c.
3690 ** tests/: Added libgcrypt.supp which can be used with valgrind.
3691 The file suppresses the known libgcrypt memory leaks, so they aren't
3692 printed when you run valgrind on the gnutls self-tests.  Use it as
3693 follows: valgrind --suppressions=libgcrypt.supp ./x509self or add
3694 '--suppressions=/home/you/src/gnutls/tests/libgcrypt.supp' to your
3695 ~/.valgrindrc file.
3697 ** tests/: Reduce amount of debugging output by default.
3698 Use --verbose for each test to get the full output.
3700 ** tests/: Fix memory leaks in several self-tests.
3701 None of the self tests should be leaking memory when running valgrind
3702 or similar tools.  (Known exceptions are dhepskself, pskself, and
3703 set_pkcs12_cred, which appear likely to be due to memory leaks in the
3704 library.)
3706 ** API and ABI modifications:
3707 No changes since last version.
3709 * Version 2.3.12 (released 2008-06-04)
3711 ** Merge gnutls_with_netconf branch.
3713 *** libgnutls [PSK]: New API to retrieve PSK identity hint in client.
3714 The function is gnutls_psk_client_get_hint.
3716 *** libgnutls [PSK]: New API to set PSK identity hint in server.
3717 The function is gnutls_psk_set_server_credentials_hint.
3719 *** libgnutls [PSK]: Support server key exchange with PSK identity hint.
3720 In the client, the message is parsed and the application can use
3721 gnutls_psk_client_get_hint to retrieve the hint.  In the server, the
3722 message is sent if the application has specified a PSK identity hint
3723 using gnutls_psk_set_server_credentials_hint.
3725 *** libgnutls [PSK]: Support Netconf PSK key derivation.
3726 The function gnutls_psk_netconf_derive_key supports the PSK key
3727 derivation as specified in draft-ietf-netconf-tls-02.txt.  New self
3728 test netconf-psk.c.
3730 *** psktool: Support new --netconf-hint to generate PSK key from password.
3731 Uses the Netconf algorithm to derive PSK key from password.
3733 *** gnutls-serv: Support new --pskhint parameter to set PSK identity hint.
3735 *** gnutls-cli: Always support PSK modes, through a callback.
3736 The callback will derive a PSK key using Netconf algorithm.  It will
3737 print the PSK identity hint to help the user.
3739 *** New PSK example client and server.
3740 See doc/examples/ex-client-psk.c and doc/examples/ex-serv-psk.c.
3742 ** libgnutls: Fix gnutls_x509_crl_set_version on arm platforms.
3743 The code didn't work properly on platforms where 'char' is unsigned,
3744 when you set version 0.  Reported by Laurence Withers
3745 <l@lwithers.me.uk> in
3746 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/2825>.
3748 ** libgnutls-openssl: added RAND_pseudo_bytes API.
3749 Patch from Robert Millan <rmh@aybabtu.com>.
3751 ** API and ABI modifications:
3752 RAND_pseudo_bytes: ADDED to libgnutls-openssl.
3753 gnutls_psk_client_get_hint: ADDED.
3754 gnutls_psk_set_server_credentials_hint: ADDED.
3755 gnutls_psk_netconf_derive_key: ADDED
3757 * Version 2.3.11 (released 2008-05-20)
3759 ** Fix flaw in fix for GNUTLS-SA-2008-1-3.
3760 The flaw would result in incorrectly terminated sessions with the
3761 error "Decryption has failed" when the server sends a small packet
3762 (typically when the session is closed).  Reported by Andreas Metzler
3763 <ametzler@downhill.at.eu.org> in
3764 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/2807>.
3766 ** Don't use gnulib headers when building C++ library.
3767 Fixes builds under Windows.
3769 ** Make umask a requirement.
3770 We don't know of any system that lacks it, even GNU CoreUtils use it
3771 unconditionally.
3773 ** Update gnulib files.
3774 Fixes a problem where it pulled in a replacement for memcmp under
3775 MinGW, which caused the C++ example to fail to build.
3777 ** API and ABI modifications:
3778 No changes since last version.
3780 * Version 2.3.10 (released 2008-05-19)
3782 ** Added wide wildcard hostname matching.
3783 Tiny patch by Jean-Philippe Garcia Ballester.
3785 ** Fix three security vulnerabilities.  [GNUTLS-SA-2008-1]
3786 Thanks to CERT-FI for finding the bugs and providing detailed reports,
3787 which allowed the bugs to be reproduced and fixed easily.  Patches
3788 developed by Simon Josefsson and Nikos Mavrogiannopoulos.  Any updates
3789 with more details about these vulnerabilities will be added to
3790 <http://www.gnu.org/software/gnutls/security.html>
3792 *** [GNUTLS-SA-2008-1-1]
3793 *** libgnutls: Fix crash when sending invalid server name.
3794 The crash can be triggered remotely before authentication, which can
3795 lead to a Daniel of Service attack to disable the server.  The bug
3796 cause gnutls to store more session resumption data than what was
3797 allocated for, thus overwriting unallocated memory.
3799 *** [GNUTLS-SA-2008-1-2]
3800 *** libgnutls: Fix crash when sending repeated client hellos.
3801 The crash can be triggered remotely before authentication, which can
3802 lead to a Daniel of Service attack to disable the server.  The bug
3803 triggers a null-pointer dereference.
3805 *** [GNUTLS-SA-2008-1-3]
3806 *** libgnutls: Fix crash in cipher padding decoding for invalid record lengths.
3807 The crash can be triggered remotely before authentication, which can
3808 lead to a Daniel of Service attack to disable the server.  The bug
3809 cause gnutls to read memory beyond the end of the received record.
3811 ** libgnutlsxx: Updated API according to patches from Eduardo 
3812 Villanueva Che (discussion at
3813 <http://lists.gnu.org/archive/html/gnutls-devel/2007-02/msg00017.html>)
3815 ** Use umask to restrict permissions to owner before creating a file.
3817 ** API and ABI modifications:
3818 No changes since last version.
3820 * Version 2.3.9 (released 2008-05-16)
3822 ** libgnutls: Fix build failures if SRP/OpenPGP is disabled.
3823 Based on report and tiny patches from
3824 <jared.jennings.ctr@eglin.af.mil>, see
3825 <https://savannah.gnu.org/support/index.php?106342>.
3827 ** libgnutls: Translation fixes.
3829 ** gnutls-cli: Fix so that PSK authentication works.
3830 Also improve manual to give example for gnutls-cli PSK authentication.
3832 ** certtool: Encrypting a private key now require a confirmed password.
3833 Before './certtool -k -8' would merely ask for a password once.
3834 Reported by Daniel 'NebuchadnezzaR' Dehennin
3835 <nebuchadnezzar@asgardr.info> see
3836 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=364287>.
3838 ** certtool: When writing private keys to files, change permissions of file.
3839 Now the file which the private key is saved to is chmod'ed 0600.
3840 Reported by martin f krafft <madduck@debian.org> see
3841 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=373169>.
3843 ** guile: Fix -fgnu89-inline test.
3845 ** Removed --enable-profile-mode.
3846 The code linked gnutls with the libfc project (Function Check) which
3847 appears to have been stalled since around 2002.
3849 ** Clean up header file checks by ./configure.
3851 ** Update of gnulib files.
3853 ** API and ABI modifications:
3854 No changes since last version.
3856 * Version 2.3.8 (released 2008-04-29)
3858 ** libgnutls: Increase default handshake packet size limit to 48kb.
3859 The old limit was 16kb and some servers send huge list of trusted CAs,
3860 thus running into the limit.  FYI, applications can further increase
3861 this limit using gnutls_handshake_set_max_packet_length.  Thanks to
3862 Marc Haber <mh+debian-bugs@zugschlus.de> and "Marc F. Clemente"
3863 <marc@mclemente.net> for reporting and providing test servers.
3865 ** libgnutls: Add new error code: GNUTLS_E_HANDSHAKE_TOO_LARGE
3866 Returned when the handshake data size is too large.  Before
3867 GNUTLS_E_MEMORY_ERROR was used, which could be confused with other
3868 error situations.
3870 ** libgnutls: Hide definitions in crypto.h.
3871 We have decided that the APIs defined in crypto.h are not stable
3872 enough for v2.4, so don't use any of those functions.
3874 ** gnutls-cli: exit when hostname doesn't match certificate.
3875 Use --insecure to avoid hostname comparison.
3877 ** certtool: --inder and --outder replaced by --inraw and --outraw.
3878 The reason is to align terminology with OpenPGP, which doesn't use
3879 DER.  The old parameters will continue to work for some time.
3881 ** doc: Add section 'Index of new symbols in 2.4.0' to the GTK-DOC manual.
3883 ** doc: Many cosmetic fixes, to silence (most) gtk-doc warnings.
3885 ** Mingw32: Revert libgcrypt vasprintf work-around added in last release.
3886 Use libgcrypt 1.4.1 or later when building on MinGW32, it removes the
3887 vasprintf symbol from the libgcrypt library which caused problems.
3889 ** Update of gnulib files.
3891 ** tests: New self-test of crypto.h RNG code tests/crypto_rng.
3893 ** API and ABI modifications:
3894 GNUTLS_E_HANDSHAKE_TOO_LARGE: ADDED.
3896 * Version 2.3.7 (released 2008-04-21)
3898 ** opencdk now properly sets the key usage bits into openpgp keys.
3900 ** gnutls-cli: Fix crash on TLS handshake failures.
3901 Reported by "Marc F. Clemente" <marc@mclemente.net> in Debian BTS #466477.
3902 This is similar to <http://bugs.debian.org/429183>.
3904 ** certtool: with --generate-request and newly generated keys, print the key.
3906 ** Build fixes for MinGW.
3907 Missing rpl_fseeko symbol in lib/opencdk/.  Better checks for linking
3908 with -lws2_32 when needed.  Use ASCII only isprint() when printing
3909 X.509 certificate information, to avoid non-ASCII but printable
3910 characters.  Thanks to Massimo Gaspari <massimo.gaspari@alice.it> for
3911 reports.
3913 ** Update internal copy of libtasn1 to version 1.4.
3915 ** API and ABI modifications:
3916 No changes since last version.
3918 * Version 2.3.6 (released 2008-04-17)
3920 ** Make gnutls_x509_crq_sign2 set certificate request version if not set.
3921 ** Improve documentation for gnutls_x509_crq_sign2.
3922 Based on report from "John Brooks" <aspecialj@gmail.com> in
3923 <http://permalink.gmane.org/gmane.network.gnutls.general/1154>.
3925 ** tests/pathlen: run diff without parameters to improve portability.
3926 Based on HPUX build hints in
3927 <http://hpux.cs.utah.edu/hppd/cgi-bin/wwwtar?/hpux/Gnu/gnutls-2.3.4/gnutls-2.3.4-src-11.11.tar.gz+gnutls-2.3.4/HPUX.Install+text>.
3929 ** Don't use %e specifier with strftime, it doesn't work under Windows.
3930 Reported by Massimo Gaspari <massimo.gaspari@alice.it> in
3931 <http://permalink.gmane.org/gmane.network.gnutls.general/1170>.
3933 ** Remove all uses of gnutls_alloca/gnutls_afree.
3934 Use normal gnutls_malloc instead.  One reason is increased portability
3935 to Windows, the other is that several of the uses may be unsafe
3936 because the size of data allocated could be large.  Reported by
3937 Massimo Gaspari <massimo.gaspari@alice.it> in
3938 <http://permalink.gmane.org/gmane.network.gnutls.general/1170>.
3940 ** Build Guile code with -fgnu89-inline only when supported.
3941 Reported by Kris Karas <ktk@enterprise.bidmc.harvard.edu> in
3942 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/2708>.
3944 ** Several GTK-DOC related fixes.
3946 ** Clean up OpenCDK related code.
3947 GnuTLS now requires its internal OpenCDK code rather than the external
3948 GPL library OpenCDK.  Unfortunately, we don't have resources to
3949 maintain an external library (help welcome).
3951 ** API and ABI modifications:
3952 No changes since last version.
3954 * Version 2.3.5 (released 2008-04-14)
3956 ** Build fix for MinGW and --disable-shared.
3957 Reported by Massimo Gaspari <massimo.gaspari@alice.it> in
3958 <http://permalink.gmane.org/gmane.network.gnutls.general/1145>.
3960 ** Document how to generate CRLs.
3961 Suggested by "Rainer Gerhards" <rgerhards@gmail.com>.
3963 ** Documented the --priority option to gnutls-cli and gnutls-serv.
3965 ** Several minor fixes in the OpenPGP interface.
3966 Thanks to Daniel Kahn Gillmor.
3968 ** Fix fopen file descriptor leak in PSK server code.
3969 Thanks to Laurence Withers <l@lwithers.me.uk>, see
3970 <http://lists.gnu.org/archive/html/gnutls-devel/2008-04/msg00002.html>.
3972 ** Translations files not stored directly in git to avoid merge conflicts.
3974 ** New APIs to let applications replace the RNG used.
3975 Update all RNG callers in the code to use the new interface.
3977 ** Guile code now built with -fgnu89-inline to fix inline semantic problem.
3979 ** Update gnulib files.
3981 ** API and ABI modifications:
3982 gnutls_crypto_rnd_register: ADDED
3983 gnutls_rnd_level_t: ADDED
3984 GNUTLS_RND_KEY: ADDED, gnutls_rnd_level_t member
3985 GNUTLS_RND_RANDOM: ADDED, gnutls_rnd_level_t member
3986 GNUTLS_RND_NONCE: ADDED, gnutls_rnd_level_t member
3987 gnutls_crypto_rnd_st: ADDED
3988 GNUTLS_DIG_SHA224: ADDED
3989 GNUTLS_SIGN_RSA_SHA224: ADDED
3990 gnutls_openpgp_crt_get_auth_subkey: MODIFIED
3992 * Version 2.3.4 (released 2008-03-19)
3994 ** Finish renaming of gnutls_certificate_export_x509_cas etc.
3995 They weren't renamed in the public header file.
3997 ** Added functions to register a cipher/mac/digest. This allows to 
3998 override the included ones.
4000 ** Fix a bunch of compiler warnings.
4002 ** API and ABI modifications:
4003 gnutls_crypto_cipher_st: ADDED
4004 gnutls_crypto_mac_st: ADDED
4005 gnutls_crypto_digest_st: ADDED
4006 gnutls_crypto_cipher_register: ADDED
4007 gnutls_crypto_mac_register: ADDED
4008 gnutls_crypto_digest_register: ADDED
4009 GNUTLS_E_CRYPTO_ALREADY_REGISTERED: ADDED
4011 * Version 2.3.3 (released 2008-03-10)
4013 ** Fix build failure in libextra/gnutls_extra.c that needed opencdk.h.
4014 Reported by Roman Bogorodskiy <novel@FreeBSD.org>.
4016 ** No longer compiled using -D_REENTRANT -D_THREAD_SAFE.
4017 We could not find any modern justification for enabling these flags by
4018 default.  If you know of some platform that needs one of the flags to
4019 work properly, please let us know.  (Actually introduced in v2.3.0 but
4020 not documented until now.)
4022 ** Importing many CA certificates are now considerably faster.
4023 This affect gnutls_certificate_set_x509_trust_mem,
4024 gnutls_certificate_set_x509_trust, and
4025 gnutls_certificate_set_x509_trust_file.  The complexity was reduced
4026 from O(2*n^2) to O(n).  When adding 206 files containing 408
4027 certificates, using gnutls_certificate_set_x509_trust_file, the time
4028 dropped from 40 seconds to 0.3 seconds.  Thanks to Edgar Fuß for code
4029 to trigger the problem.  See also
4030 <http://blog.josefsson.org/2008/02/27/real-world-performance-tuning-with-callgrind/>.
4032 ** Clarify documentation for gnutls_x509_crt_set_subject_alternative_name
4033 ** to be explicit that it takes zero terminated data.
4035 ** gnutls-cli --print-cert now print PKCS#3 format Diffie-Hellman parameters.
4037 ** Documentation fixes for the GTK-DOC manual.
4039 ** Fix compilation error related to __FUNCTION__ on some systems.
4040 Reported by Tim Mooney, see
4041 <https://savannah.gnu.org/support/?106267>.
4043 ** Updated translations.
4045 ** Update gnulib files.
4047 ** API and ABI modifications:
4048 gnutls_hex2bin: MODIFIED, uses size_t instead of int for string length,
4049                 and char* instead of void* for output buffer.
4051 * Version 2.3.2 (released 2008-02-26)
4053 ** Fix srcdir!=objdir failure in openpgpself test.
4055 ** Improved API documentation output from GTK-DOC.
4057 ** Added gnutls_x509_dn_export(). Patch by Joe Orton.
4059 ** Renamed gnutls_certificate_export_x509_cas and friends.
4060 See <http://lists.gnu.org/archive/html/gnutls-devel/2008-02/msg00043.html>.
4062 ** Internal header files cleanup.
4064 ** API and ABI modifications:
4065 gnutls_certificate_export_x509_cas: RENAMED to gnutls_certificate_get_x509_cas
4066 gnutls_certificate_export_x509_crls: RENAMED to gnutls_certificate_get_x509_crls
4067 gnutls_certificate_export_openpgp_keyring: RENAMED to gnutls_certificate_get_openpgp_keyring
4068 gnutls_x509_dn_export: ADDED
4070 * Version 2.3.1 (released 2008-02-21)
4072 ** OpenPGP support merged into libgnutls and is now licensed under LGPL.
4073 The included copy of OpenCDK has been stripped down and re-licensed
4074 under the LGPL.
4076 ** Cipher priority string handling now handle strings that starts with NULL.
4077 Thanks to Laurence Withers <l@lwithers.me.uk>.
4079 ** gnutls-cli: When -d is used, also prints RNG information from libgcrypt.
4081 ** Corrected memory leaks in session resuming and DHE ciphersuites. Reported
4082 by Daniel Stenberg.
4084 ** Increased the default certificate verification chain limits and allowed
4085 for checks without limitation.
4087 ** Corrected the behaviour of gnutls_x509_crt_get_subject_alt_name()
4088 and gnutls_x509_crt_get_subject_alt_name() to not null terminate binary
4089 strings and return the proper size.
4091 ** Add section 'On Record Padding' to the manual.
4092 This collects all problems related to record padding with
4093 Nokia/Sony-Ericsson phones that we know about.
4095 ** Several improvements in the OpenPGP authentication.
4096 Now subkeys can be used for authentication, according to
4097 draft-mavrogiannopoulos-rfc5081bis-00.txt.
4099 ** certtool can print information on OpenPGP certificates and keys.
4101 ** Added gnutls_x509_dn_import/init/deinit() to access raw DER DN.
4102 Patch by Joe Orton.
4104 ** Added gnutls_certificate_export_x509_cas and other functions to
4105 export elements from the certificate credentials structure.  Based on
4106 suggestion from Joe Orton.
4108 ** Doc fixes.
4109 Clarify that srp_base64 is not the same as normal base64.
4111 ** Fix non-portable use of brace expansion in makefiles.
4113 ** API and ABI modifications:
4114 gnutls_certificate_export_x509_cas: ADDED
4115 gnutls_certificate_export_x509_crls: ADDED
4116 gnutls_certificate_export_openpgp_keyring: ADDED
4117 gnutls_openpgp_keyid_t: ADDED, instead of hard-coded 'unsigned char[8]'.
4118 gnutls_openpgp_crt_get_key_id: ADDED, obsoletes gnutls_openpgp_crt_get_id.
4119 gnutls_openpgp_crt_get_revoked_status: ADDED
4120 gnutls_openpgp_crt_get_subkey_count: ADDED
4121 gnutls_openpgp_crt_get_subkey_idx: ADDED
4122 gnutls_openpgp_crt_get_subkey_revoked_status: ADDED
4123 gnutls_openpgp_crt_get_subkey_pk_algorithm: ADDED
4124 gnutls_openpgp_crt_get_subkey_creation_time: ADDED
4125 gnutls_openpgp_crt_get_subkey_expiration_time: ADDED
4126 gnutls_openpgp_crt_get_subkey_id: ADDED
4127 gnutls_openpgp_crt_get_subkey_usage: ADDED
4128 gnutls_openpgp_privkey_get_fingerprint: ADDED
4129 gnutls_openpgp_privkey_get_key_id: ADDED
4130 gnutls_openpgp_privkey_get_subkey_count: ADDED
4131 gnutls_openpgp_privkey_get_subkey_idx: ADDED
4132 gnutls_openpgp_privkey_get_subkey_revoked_status: ADDED
4133 gnutls_openpgp_privkey_get_revoked_status: ADDED
4134 gnutls_openpgp_privkey_get_subkey_pk_algorithm: ADDED
4135 gnutls_openpgp_privkey_get_subkey_expiration_time: ADDED
4136 gnutls_openpgp_privkey_get_subkey_id: ADDED
4137 gnutls_openpgp_privkey_get_subkey_creation_time: ADDED
4138 gnutls_openpgp_crt_get_subkey_pk_dsa_raw: ADDED
4139 gnutls_openpgp_crt_get_subkey_pk_rsa_raw: ADDED
4140 gnutls_openpgp_crt_get_pk_dsa_raw: ADDED
4141 gnutls_openpgp_crt_get_pk_rsa_raw: ADDED
4142 gnutls_openpgp_privkey_export_subkey_dsa_raw: ADDED
4143 gnutls_openpgp_privkey_export_subkey_rsa_raw: ADDED
4144 gnutls_openpgp_privkey_export_dsa_raw: ADDED
4145 gnutls_openpgp_privkey_export_rsa_raw: ADDED
4146 gnutls_openpgp_privkey_export: ADDED
4147 gnutls_certificate_set_openpgp_key_file2: ADDED
4148 gnutls_certificate_set_openpgp_key_mem2: ADDED
4149 gnutls_x509_dn_init: ADDED
4150 gnutls_x509_dn_import: ADDED
4151 gnutls_x509_dn_deinit: ADDED
4152 GNUTLS_E_OPENPGP_SUBKEY_ERROR: ADDED
4153 gnutls_hex2bin: ADDED
4154 GNUTLS_CRT_PRINT_FULL: ADDED, same as old GNUTLS_X509_CRT_FULL.
4155 GNUTLS_CRT_PRINT_ONELINE: ADDED, same as old GNUTLS_X509_CRT_ONELINE.
4156 GNUTLS_CRT_PRINT_UNSIGNED_FULL: ADDED, same as
4157                                 old GNUTLS_X509_CRT_UNSIGNED_FULL.
4159 * Version 2.3.0 (released 2008-01-08)
4161 ** LZO compression is now disabled by default.
4162 The reason is that LZO compression is not standardized in TLS.  If you
4163 wish to experiment with it, you will have to supply --with-lzo when
4164 invoking ./configure.  The internal copy of minilzo is no longer
4165 included with GnuTLS, so you will need to install liblzo or liblzo2 on
4166 your system to have --with-lzo to be effective.
4168 ** More than one server name field is now sent to the server properly.
4169 Thanks to mark.phillips@virgin.net.
4171 ** Fixes the post_client_hello_function(). The extensions are now parsed
4172 in a callback friendly way.
4174 ** Fix for certificate selection in servers with certificate callbacks.
4176 ** Updated translations.
4178 ** Update gnulib files.
4180 ** API and ABI modifications:
4181 No changes since last version.
4183 * Version 2.2.5 (released 2008-05-19)
4185 ** Fix flaw in fix for GNUTLS-SA-2008-1-3.
4186 The flaw would result in incorrectly terminated sessions with the
4187 error "Decryption has failed" when the server sends a small packet
4188 (typically when the session is closed).  Reported by Andreas Metzler
4189 <ametzler@downhill.at.eu.org> in
4190 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/2807>.
4192 ** API and ABI modifications:
4193 No changes since last version.
4195 * Version 2.2.4 (released 2008-05-19)
4197 ** Fix three security vulnerabilities.  [GNUTLS-SA-2008-1]
4198 Thanks to CERT-FI for finding the bugs and providing detailed reports,
4199 which allowed the bugs to be reproduced and fixed easily.  Patches
4200 developed by Simon Josefsson and Nikos Mavrogiannopoulos.  Any updates
4201 with more details about these vulnerabilities will be added to
4202 <http://www.gnu.org/software/gnutls/security.html>
4204 *** [GNUTLS-SA-2008-1-1]
4205 *** libgnutls: Fix crash when sending invalid server name.
4206 The crash can be triggered remotely before authentication, which can
4207 lead to a Daniel of Service attack to disable the server.  The bug
4208 cause gnutls to store more session resumption data than what was
4209 allocated for, thus overwriting unallocated memory.
4211 *** [GNUTLS-SA-2008-1-2]
4212 *** libgnutls: Fix crash when sending repeated client hellos.
4213 The crash can be triggered remotely before authentication, which can
4214 lead to a Daniel of Service attack to disable the server.  The bug
4215 triggers a null-pointer dereference.
4217 *** [GNUTLS-SA-2008-1-3]
4218 *** libgnutls: Fix crash in cipher padding decoding for invalid record lengths.
4219 The crash can be triggered remotely before authentication, which can
4220 lead to a Daniel of Service attack to disable the server.  The bug
4221 cause gnutls to read memory beyond the end of the received record.
4223 ** API and ABI modifications:
4224 No changes since last version.
4226 * Version 2.2.3 (released 2008-05-06)
4228 ** Increase default handshake packet size limit to 48kb.
4229 The old limit was 16kb and some servers send huge list of trusted CAs,
4230 thus running into the limit.  FYI, applications can further increase
4231 this limit using gnutls_handshake_set_max_packet_length.  Thanks to
4232 Marc Haber <mh+debian-bugs@zugschlus.de> and "Marc F. Clemente"
4233 <marc@mclemente.net> for reporting and providing test servers.
4235 ** Fix compilation error related to __FUNCTION__ on some systems.
4236 Reported by Tim Mooney, see
4237 <https://savannah.gnu.org/support/?106267>.
4239 ** Documented the --priority option to gnutls-cli and gnutls-serv.
4241 ** Fix fopen file descriptor leak in PSK server code.
4242 Thanks to Laurence Withers <l@lwithers.me.uk>, see
4243 <http://lists.gnu.org/archive/html/gnutls-devel/2008-04/msg00002.html>.
4245 ** Build Guile code with -fgnu89-inline only when supported.
4246 Reported by Kris Karas <ktk@enterprise.bidmc.harvard.edu> in
4247 <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/2708>.
4249 ** Make Camellia encryption work.
4250 Reported by Yoshisato YANAGISAWA <yanagisawa@csg.is.titech.ac.jp> in
4251 <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/2746>.
4253 ** API and ABI modifications:
4254 No changes since last version.
4256 * Version 2.2.2 (released 2008-02-21)
4258 ** Cipher priority string handling now handle strings that starts with NULL.
4259 Thanks to Laurence Withers <l@lwithers.me.uk>.
4261 ** Corrected memory leaks in session resuming and DHE ciphersuites. Reported
4262 by Daniel Stenberg.
4264 ** Increased the default certificate verification chain limits and allowed
4265 for checks without limitation.
4267 ** Corrected the behaviour of gnutls_x509_crt_get_subject_alt_name()
4268 and gnutls_x509_crt_get_subject_alt_name() to not null terminate binary
4269 strings and return the proper size.
4271 ** API and ABI modifications:
4272 No changes since last version.
4274 * Version 2.2.1 (released 2008-01-17)
4276 ** Prevent linking libextra against previously installed libgnutls.
4277 Tiny patch from "Alon Bar-Lev" <alon.barlev@gmail.com>, see
4278 <http://bugs.gentoo.org/show_bug.cgi?id=202269>.
4280 ** Fixes the post_client_hello_function(). The extensions are now parsed
4281 in a callback friendly way.
4283 ** Fix for certificate selection in servers with certificate callbacks.
4285 ** API and ABI modifications:
4286 No changes since last version.
4288 * Version 2.2.0 (released 2007-12-14)
4290 ** Update internal copy of libtasn1 to version 1.2.
4292 ** Certtool --verify-chain now handle inputs larger than 64kb.
4293 This fixes the self-test "rsa-md5-collision" under MinGW+Wine with
4294 recent versions of libgcrypt.  The problem was that Wine with the
4295 libgcrypt RNG generates huge amounts of debugging output.
4297 ** Translation updates.
4298 Added Dutch translation.  Updated Polish and Swedish translation.
4300 ** Major changes compared to the v2.0 branch:
4302 *** SRP support aligned with newly published RFC 5054.
4304 *** OpenPGP support aligned with newly published RFC 5081.
4306 *** Support for DSA2 keys.
4308 *** Support for Camellia cipher.
4310 *** Support for Opaque PRF Input extension.
4312 *** PKCS#8 parser now handle DSA keys.
4314 *** Change from GPLv2 to GPLv3 for command-line tools, libgnutls-extra, etc.
4315 Notice that liblzo2 2.02 is licensed under GPLv2 only.  Earlier
4316 versions, such as 2.01 which is included with GnuTLS, is available
4317 under GPLv2 or later.  If this incompatibility causes problems, we
4318 recommend you to disable LZO using --without-lzo.  LZO compression is
4319 not a standard TLS compression algorithm, so the impact should be
4320 minimal.
4322 *** Functions for disabling record protocol padding.
4323 Works around bugs on Nokia/Ericsson phones.
4325 *** New functions gnutls_priority_set() for setting cipher priorities easily.
4326 Priorities like "COMPAT" also enables other work arounds, such as
4327 disabling padding.
4329 *** Other minor improvements and bug fixes.
4331 ** Backwards incompatible API/ABI changes in GnuTLS 2.2
4332 To adapt to changes in the TLS extension specifications for OpenPGP
4333 and SRP, the GnuTLS API had to be modified.  This means breaking the
4334 API and ABI backwards compatibility.  That is something we try to
4335 avoid unless it is necessary.  We decided to also remove the already
4336 deprecated stub functions for X.509 to XML conversion and TLS
4337 authorization (see below) when we had the opportunity.
4339 Generally, most applications does not need to be modified.  Just
4340 re-compile them against the latest GnuTLS release, and it should work
4341 fine.
4343 Applications that use the OpenPGP or SRP features needs to be
4344 modified.  Below is a list of the modified APIs and discussion of what
4345 the minimal things you need to modify in your application to make it
4346 work with GnuTLS 2.2.
4348 Note that GnuTLS 2.2 also introduces new APIs -- such as
4349 gnutls_set_priority() that is superior to
4350 gnutls_set_default_priority() -- that you may want to start using.
4351 However, using those new APIs is not required to use GnuTLS 2.2 since
4352 the old functions continue are still supported.  This text only
4353 discuss what you minimally have to modify.
4355 *** XML related changes
4356 The function `gnutls_x509_crt_to_xml' has been removed.  It has been
4357 deprecated and only returned an error code since GnuTLS version
4358 1.2.11.  Nobody has complained, so users doesn't seem to miss the
4359 functionality.  We don't know of any other library to convert X.509
4360 certificates into XML format, but we decided (long ago) that GnuTLS
4361 isn't the right place for this kind of functionality.  If you want
4362 help to find some other library to use here, please explain and
4363 discuss your use case on help-gnutls@gnu.org.
4365 *** TLS Authorization related changes
4366 Everything related to TLS authorizations have been removed, they were
4367 only stub functions that returned an error code:
4369  GNUTLS_SUPPLEMENTAL_AUTHZ_DATA
4370  gnutls_authz_data_format_type_t
4371  gnutls_authz_recv_callback_func
4372  gnutls_authz_send_callback_func
4373  gnutls_authz_enable
4374  gnutls_authz_send_x509_attr_cert
4375  gnutls_authz_send_saml_assertion
4376  gnutls_authz_send_x509_attr_cert_url
4377  gnutls_authz_send_saml_assertion_url
4379 *** SRP related changes
4380 The callback gnutls_srp_client_credentials_function has a new
4381 prototype, and its semantic has changed.  You need to rewrite the
4382 callback, see the updated function documentation and SRP example code
4383 (doc/examples/ex-client-srp.c and doc/examples/ex-serv-srp.c) for more
4384 information.
4386 The alert codes GNUTLS_A_MISSING_SRP_USERNAME and
4387 GNUTLS_A_UNKNOWN_SRP_USERNAME are no longer used by the SRP
4388 specification, instead the GNUTLS_A_UNKNOWN_PSK_IDENTITY alert is
4389 used.  There are #define's to map the old names to the new.  You may
4390 run into problems if you have a switch-case with cases for both SRP
4391 alerts, since they are now mapped to the same value.  The solution is
4392 to drop the SRP alerts from such switch cases, as they are now
4393 deprecated in favor of GNUTLS_A_UNKNOWN_PSK_IDENTITY.
4395 *** OpenPGP related changes
4396 The function `gnutls_certificate_set_openpgp_keyserver' have been
4397 removed.  There is no replacement functionality inside GnuTLS.  If you
4398 need keyserver functionality, consider using the GnuPG tools.
4400 All functions, types, and error codes related to OpenPGP trustdb
4401 format have been removed.  The trustdb format is a non-standard
4402 GnuPG-specific format, and we recommend you to use key rings instead.
4403 The following have been removed:
4405  gnutls_certificate_set_openpgp_trustdb
4406  gnutls_openpgp_trustdb_init
4407  gnutls_openpgp_trustdb_deinit
4408  gnutls_openpgp_trustdb_import
4409  gnutls_openpgp_key_verify_trustdb
4410  gnutls_openpgp_trustdb_t
4411  GNUTLS_E_OPENPGP_TRUSTDB_VERSION_UNSUPPORTED
4413 The following functions has an added parameter of the (new) type
4414 `gnutls_openpgp_crt_fmt_t'.  The type specify the format of the data
4415 (binary or base64).  The functions are:
4416  gnutls_certificate_set_openpgp_key_file
4417  gnutls_certificate_set_openpgp_key_mem
4418  gnutls_certificate_set_openpgp_keyring_mem
4419  gnutls_certificate_set_openpgp_keyring_file
4421 To improve terminology and align with the X.509 interface, some
4422 functions have been renamed.  Compatibility mappings exists.  The old
4423 and new names of the affected functions and types are:
4425         Old name                                New name
4426  gnutls_openpgp_key_t                    gnutls_openpgp_crt_t
4427  gnutls_openpgp_key_fmt_t                gnutls_openpgp_crt_fmt_t
4428  gnutls_openpgp_key_status_t             gnutls_openpgp_crt_status_t
4429  GNUTLS_OPENPGP_KEY                      GNUTLS_OPENPGP_CERT
4430  GNUTLS_OPENPGP_KEY_FINGERPRINT          GNUTLS_OPENPGP_CERT_FINGERPRINT
4431  gnutls_openpgp_key_init                 gnutls_openpgp_crt_init
4432  gnutls_openpgp_key_deinit               gnutls_openpgp_crt_deinit
4433  gnutls_openpgp_key_import               gnutls_openpgp_crt_import
4434  gnutls_openpgp_key_export               gnutls_openpgp_crt_export
4435  gnutls_openpgp_key_get_key_usage        gnutls_openpgp_crt_get_key_usage
4436  gnutls_openpgp_key_get_fingerprint      gnutls_openpgp_crt_get_fingerprint
4437  gnutls_openpgp_key_get_pk_algorithm     gnutls_openpgp_crt_get_pk_algorithm
4438  gnutls_openpgp_key_get_name             gnutls_openpgp_crt_get_name
4439  gnutls_openpgp_key_get_version          gnutls_openpgp_crt_get_version
4440  gnutls_openpgp_key_get_creation_time    gnutls_openpgp_crt_get_creation_time
4441  gnutls_openpgp_key_get_expiration_time  gnutls_openpgp_crt_get_expiration_time
4442  gnutls_openpgp_key_get_id               gnutls_openpgp_crt_get_id
4443  gnutls_openpgp_key_check_hostname       gnutls_openpgp_crt_check_hostname
4444  gnutls_openpgp_send_key                 gnutls_openpgp_send_cert
4446 ** API and ABI modifications:
4447 No changes since last version.
4449 * Version 2.1.8 (released 2007-12-10)
4451 ** The GPL version has been changed from version 2 to version 3.
4452 This affects the self-tests, command-line tools, the libgnutls-extra
4453 library, the relevant guile parts, and the build environment.
4455 ** Added gnutls_x509_crt_get_subject_alt_name2().
4457 ** Corrected a segfault when setting an empty gnutls_priority_t
4458 at gnutls_priority_set().
4460 ** Use gettext 0.17 which updates m4/lib-*.m4 macros.
4461 Fixes a problem with spurious -L/usr/lib additions.
4463 ** API and ABI modifications:
4464 gnutls_x509_crt_get_subject_alt_name2: ADD.
4466 * Version 2.1.7 (released 2007-11-29)
4468 ** PKCS #8 parser can now encode/decode DSA keys.
4470 ** Updated gnutls_set_default_priority2() now renamed to
4471 gnutls_priority_set() and gnutls_priority_set_direct() which
4472 accept a string to indicate preferences of ciphersuite parameters.
4474 ** gnutls-cli and gnutls-serv now have a --priority option to set
4475 the priority string.
4477 ** The gnutls_*_convert_priority() functions were deprecated by
4478 the gnutls_priority_set() and gnutls_priority_set_direct().
4480 ** Internal copy of OpenCDK upgraded to version 0.6.6.
4482 ** API and ABI modifications:
4483 gnutls_priority_init: ADD.
4484 gnutls_priority_deinit: ADD.
4485 gnutls_priority_set: ADD.
4486 gnutls_priority_set_direct: ADD.
4487 gnutls_set_default_priority2: RENAMED to gnutls_priority_set_direct()
4488 gnutls_mac_convert_priority: REMOVED
4489 gnutls_compression_convert_priority: REMOVED
4490 gnutls_protocol_convert_priority: REMOVED
4491 gnutls_kx_convert_priority: REMOVED
4492 gnutls_cipher_convert_priority: REMOVED
4493 gnutls_certificate_type_convert_priority: REMOVED
4494 gnutls_set_default_priority: UNDEPRECATED
4495 gnutls_set_default_priority_export: UNDEPRECATED
4497 ** Undocumented API and ABI modifications earlier in the 2.1.x series:
4498 GNUTLS_CIPHER_UNKNOWN: ADD.
4499 GNUTLS_CIPHER_CAMELLIA_128_CBC: ADD.
4500 GNUTLS_CIPHER_CAMELLIA_256_CBC: ADD.
4501 GNUTLS_KX_UNKNOWN: ADD.
4502 GNUTLS_COMP_UNKNOWN: ADD.
4503 GNUTLS_CRT_UNKNOWN: ADD.
4504 gnutls_mac_get_id: ADD.
4505 gnutls_compression_get_id: ADD.
4506 gnutls_cipher_get_id: ADD.
4507 gnutls_kx_get_id: ADD.
4508 gnutls_protocol_get_id: ADD.
4509 gnutls_certificate_type_get_id: ADD.
4510 gnutls_handshake_post_client_hello_func: ADD.
4511 gnutls_certificate_send_x509_rdn_sequence: ADD prototype to gnutls.h.in.
4513 * Version 2.1.6 (released 2007-11-15)
4515 ** Corrected bug in decompression of expanded compression data.
4517 ** Added the --to-p8 option to certtool to convert private keys
4518 to PKCS #8 keys.
4520 ** Introduced the GNUTLS_E_BASE64_UNEXPECTED_HEADER_ERROR error code.
4522 ** gnutls_certificate_set_x509_key_* can now read PKCS #8 unencrypted
4523 private keys.
4525 ** Fixed GNUTLS_E_UNKNOWN_ALGORITHM vs GNUTLS_E_UNKNOWN_HASH_ALGORITHM.
4526 During the 2.1.x series the GNUTLS_E_UNKNOWN_HASH_ALGORITHM error code
4527 was renamed to GNUTLS_E_UNKNOWN_ALGORITHM, unfortunately without being
4528 documented.  This caused some problems (e.g., debian #450854).  To
4529 avoid backwards compatibility problems, this release revert this
4530 change, so that GNUTLS_E_UNKNOWN_HASH_ALGORITHM works just like it has
4531 done in GnuTLS 2.0.x and earlier, and add a new error code
4532 GNUTLS_E_UNKNOWN_ALGORITHM.
4534 ** Fixes several gtk-doc warnings.
4536 ** API and ABI modifications:
4537 GNUTLS_E_UNKNOWN_ALGORITHM: CHANGED.
4538 GNUTLS_E_UNKNOWN_HASH_ALGORITHM: CHANGED.
4539 GNUTLS_E_BASE64_UNEXPECTED_HEADER_ERROR: ADD.
4541 * Version 2.1.5 (released 2007-11-01)
4543 ** Fix PKCS#3 parameter export problem.
4545 ** Improve certtool queries, they now print the default value.
4547 ** Fix ABI version.
4549 ** Update gnulib files.
4551 ** API and ABI modifications:
4552 No changes since last version.
4554 * Version 2.1.4 (released 2007-10-27)
4556 ** Added the --v1 option to certtool, to allow generating X.509
4557 version 1 certificates. 
4559 ** certtool: Add option --disable-quick-random to enable the old behaviour
4560 of using /dev/random to generate keys.
4562 ** Added priority functions that accept strings.
4564 ** Added gnutls_set_default_priority2() which accepts a flag to indicate
4565 priorities preferences.
4567 ** Added gnutls_record_disable_padding() to allow servers talking to 
4568 buggy clients that complain if the TLS 1.0 record protocol padding is
4569 used.
4571 ** Introduced gnutls_session_enable_compatibility_mode() to allow enabling
4572 all supported compatibility options (like disabling padding).
4574 ** The gnutls_certificate_set_openpgp_* functions were modified to include
4575 the format. This makes the interface consistent with the x509 functions.
4577 ** Internal copy of OpenCDK upgraded to version 0.6.5.
4579 ** Update gnulib files.
4581 ** API and ABI modifications:
4582 gnutls_certificate_set_openpgp_key_mem: MODIFIED
4583 gnutls_certificate_set_openpgp_key_file: MODIFIED
4584 gnutls_certificate_set_openpgp_keyring_mem: MODIFIED
4585 gnutls_certificate_set_openpgp_keyring_file: MODIFIED
4586 gnutls_set_default_priority: DEPRECATED
4587 gnutls_set_default_priority_export: DEPRECATED
4588 gnutls_set_default_priority2: ADDED
4589 gnutls_session_enable_compatibility_mode: ADDED
4590 gnutls_record_disable_padding: ADDED
4591 gnutls_mac_convert_priority: ADDED
4592 gnutls_compression_convert_priority: ADDED
4593 gnutls_protocol_convert_priority: ADDED
4594 gnutls_kx_convert_priority: ADDED
4595 gnutls_cipher_convert_priority: ADDED
4596 gnutls_certificate_type_convert_priority: ADDED
4597 gnutls_openpgp_key_t: RENAMED to gnutls_openpgp_crt_t
4598 gnutls_openpgp_key_status_t: RENAMED to gnutls_openpgp_crt_status_t
4599 gnutls_openpgp_send_key: RENAMED to gnutls_openpgp_send_cert
4600 gnutls_openpgp_key_init: RENAMED to gnutls_openpgp_crt_init
4601 gnutls_openpgp_key_import: RENAMED to gnutls_openpgp_crt_import
4602 gnutls_openpgp_key_export: RENAMED to gnutls_openpgp_crt_export
4603 gnutls_openpgp_key_check_hostname: RENAMED to gnutls_openpgp_crt_check_hostname
4604 gnutls_openpgp_key_get_creation_time: RENAMED to gnutls_openpgp_crt_get_creation_time
4605 gnutls_openpgp_key_get_expiration_time: RENAMED to gnutls_openpgp_crt_get_expiration_time
4606 gnutls_openpgp_key_get_fingerprint: RENAMED to gnutls_openpgp_crt_get_fingerprint
4607 gnutls_openpgp_key_get_version: RENAMED to gnutls_openpgp_crt_get_version
4608 gnutls_openpgp_key_get_pk_algorithm: RENAMED to gnutls_openpgp_crt_get_pk_algorithm
4609 gnutls_openpgp_key_get_name: RENAMED to gnutls_openpgp_crt_get_name
4610 gnutls_openpgp_key_deinit: RENAMED to gnutls_openpgp_crt_deinit
4611 gnutls_openpgp_key_get_id: RENAMED to gnutls_openpgp_crt_get_id
4612 gnutls_openpgp_key_get_key_usage: RENAMED to gnutls_openpgp_crt_get_key_usage
4613 gnutls_openpgp_key_verify_ring: RENAMED to gnutls_openpgp_crt_verify_ring
4614 gnutls_openpgp_key_verify_self: RENAMED to gnutls_openpgp_crt_verify_self
4616 * Version 2.1.3 (released 2007-10-17)
4618 ** TLS authorization support removed.
4619 This technique may be patented in the future, and it is not of crucial
4620 importance for the Internet community.  After deliberation we have
4621 concluded that the best thing we can do in this situation is to
4622 encourage society not to adopt this technique.  We have decided to
4623 lead the way with our own actions.
4625 ** Re-enabled the 256 bit ciphers in the default priorities.
4627 ** Corrected bugs in openpgp key verification using a keyring (both in
4628 gnutls and opencdk)
4630 ** API and ABI modifications:
4631 gnutls_certificate_set_openpgp_keyserver: REMOVED
4632 gnutls_authz_data_format_type_t,
4633 gnutls_authz_recv_callback_func,
4634 gnutls_authz_send_callback_func,
4635 gnutls_authz_enable,
4636 gnutls_authz_send_x509_attr_cert,
4637 gnutls_authz_send_saml_assertion,
4638 gnutls_authz_send_x509_attr_cert_url,
4639 gnutls_authz_send_saml_assertion_url: REMOVED.
4640 GNUTLS_SUPPLEMENTAL_USER_MAPPING_DATA: ADDED.  To avoid that the
4641     gnutls_supplemental_data_format_type_t enum type becomes empty.
4643 * Version 2.1.2 (released 2007-10-14)
4645 ** Removed all the trustdb code from openpgp authentication.
4646 We now use only the well-specified keyrings.
4648 ** The 256 bit ciphers are not enabled in the default priorities.
4650 ** Added support for DSA2 using libgcrypt 1.3.0.
4652 ** certtool: Fixed data corruption when using --outder.
4654 ** Removed all the xml related stubs and functions.
4656 ** Added capability to set a callback after the client hello is received
4657 by the server in order to adjust parameters before the handshake.
4659 ** SRP was corrected to adhere to the latest draft (published soon as RFC)
4661 ** Corrected bug which did not allow a server to run without supporting
4662 certificates.
4664 ** Updated the DN parser which now prints wrongly decoded values as hex
4665 strings.
4667 ** certtool: Add option --quick-random.
4668 For generating low security test credentials.
4670 ** API and ABI modifications:
4671 gnutls_x509_crt_to_xml: REMOVED
4672 gnutls_openpgp_key_to_xml: REMOVED
4673 gnutls_openpgp_key_verify_trustdb: REMOVED
4674 gnutls_openpgp_trustdb_init: REMOVED
4675 gnutls_openpgp_trustdb_deinit: REMOVED
4676 gnutls_openpgp_trustdb_import: REMOVED
4677 gnutls_certificate_set_openpgp_trustdb: REMOVED
4678 gnutls_srp_client_credentials_function: CHANGED
4679 gnutls_handshake_set_post_client_hello_function: ADDED
4680 gnutls_mac_get_key_size: ADDED
4681 GNUTLS_E_OPENPGP_TRUSTDB_VERSION_UNSUPPORTED: DEPRECATED.
4682 GNUTLS_A_MISSING_SRP_USERNAME: DEPRECATED
4683 GNUTLS_A_UNKNOWN_SRP_USERNAME: DEPRECATED
4685 * Version 2.1.1 (released 2007-09-24)
4687 ** Added support for Camellia cipher, thanks to Yoshisato YANAGISAWA.
4688 Camellia is only enabled in GnuTLS if the installed libgcrypt has been
4689 compiled with Camellia support.  See the libgcrypt documentation on
4690 how to enable it.  Unconditionally disable it using the configure
4691 option --disable-camellia.  Fixes #1.
4693 ** Properly document in the NEWS file the API change in the last release.
4695 ** API and ABI modifications:
4696 No changes since last version.
4698 * Version 2.1.0 (released 2007-09-20)
4700 ** Support for draft-rescorla-tls-opaque-prf-input-00.txt.
4701 The support is disabled by default.  Since no value has been allocated
4702 by the IANA for this extension yet, you will need to provide one
4703 yourself by invoking './configure --enable-opaque-prf-input=42'.
4704 Fixes #2.
4706 ** Example code: Fix compilation flaw under MinGW.
4708 ** API and ABI modifications:
4709 gnutls_oprfi_callback_func: ADD, new typedef function prototype.
4710 gnutls_oprfi_enable_client: ADD, new function.
4711 gnutls_oprfi_enable_server: ADD, new function.
4713 * Version 2.0.4 (released 2007-11-16)
4715 ** Corrected bug in decompression of expanded compression data.           
4717 ** API and ABI modifications:
4718 No changes since last version.
4720 * Version 2.0.3 (released 2007-11-10)
4722 ** This version backports several fixes from the 2.1.x branch.
4724 ** Fixed PKCS #3 parameter export.
4726 ** Added gnutls_record_disable_padding() to allow servers talking to
4727 buggy clients that complain if the TLS 1.0 record protocol padding is
4728 used.
4730 ** Introduced gnutls_session_enable_compatibility_mode() to allow enabling
4731 all supported compatibility options (like disabling padding).
4733 ** Corrected bug which did not allow a server to run without supporting
4734 certificates.
4736 ** API and ABI modifications:
4737 gnutls_session_enable_compatibility_mode: ADDED
4738 gnutls_record_disable_padding: ADDED
4740 * Version 2.0.2 (released 2007-10-17)
4742 ** TLS authorization support removed.
4743 This technique may be patented in the future, and it is not of crucial
4744 importance for the Internet community.  After deliberation we have
4745 concluded that the best thing we can do in this situation is to
4746 encourage society not to adopt this technique.  We have decided to
4747 lead the way with our own actions.
4749 ** certtool: Fixed data corruption when using --outder.
4751 ** Fix configure-time Guile detection.
4753 ** API and ABI modifications:
4754 GNUTLS_SUPPLEMENTAL_USER_MAPPING_DATA: ADDED.  To avoid that the
4755     gnutls_supplemental_data_format_type_t enum type becomes empty.
4757 * Version 2.0.1 (released 2007-09-20)
4759 ** New directory doc/credentials/ with test credentials.
4760 This collects the test credentials from the web page and from src/.
4761 The script gnutls-http-serv has also been moved to that directory.
4763 ** Update SRP extension type and cipher suite with official IANA values.
4764 This breaks backwards compatibility with SRP in older versions of
4765 GnuTLS, but this is intentional to speed up the adoption of the
4766 official values.  The old values we used were incorrect.
4768 ** Guile: Fix `x509-certificate-dn-oid'
4770 ** API and ABI modifications:
4771 No changes since last version.
4773 * Version 2.0.0 (released 2007-09-04)
4775 ** Included copy of Libtasn1 upgraded to version 1.1.
4777 ** Disable building of some examples if anonymous ciphers are disabled.
4779 ** Don't build examples for disabled features.
4781 ** API and ABI modifications:
4782 No changes since last version.
4784 * Version 1.7.19 (released 2007-08-27)
4786 ** Fix gnutls_error_is_fatal so that positive "errors" are non-critical.
4787 This solves connection problems in mutt, see
4788 <http://bugs.debian.org/439640>.
4790 ** Update gnulib files.
4791 In particular, the getpass module -- with its dependencies on getline,
4792 getdelim, fseeko etc -- where moved from the lgl/ (used by the core
4793 library) directory to the gl/ directory (only used by the command line
4794 tools).  The reason is that getpass is now only used by the
4795 command-line tools, and reducing the number of gnulib modules linked
4796 to the core library helps portability and reduces size.
4798 ** Fix warnings.
4800 ** Disable building of PGP examples if PGP is disabled.
4802 ** Included copy of OpenCDK upgraded to version 0.6.4.
4804 ** API and ABI modifications:
4805 No changes since last version.
4807 * Version 1.7.18 (released 2007-08-16)
4809 ** Install images for the info manual.
4810 This has a side effect of renaming the images.  See
4811 <http://thread.gmane.org/gmane.comp.tex.texinfo.bugs/3533> for
4812 discussions on the approach chosen.
4814 ** Fix pointer mix to variables of different size.
4815 Patch extracted from
4816 <http://cvs.fedora.redhat.com/viewcvs/devel/gnutls/gnutls-1.6.3-incompat-pointers.patch?rev=1.1&view=auto>.
4818 ** Fix warnings during build.
4819 Thanks to Andreas Metzler <ametzler@downhill.at.eu.org>.
4821 ** API and ABI modifications:
4822 No changes since last version.
4824 * Version 1.7.17 (released 2007-08-15)
4826 ** New functions to perform external signing.
4827 Set the signing callback function (of the gnutls_sign_func prototype)
4828 using the gnutls_sign_callback_set function.  In the callback, you may
4829 find the new functions gnutls_x509_privkey_sign_hash and
4830 gnutls_openpgp_privkey_sign_hash useful.  A new function
4831 gnutls_sign_callback_get is also added, to retrieve the function
4832 pointer.  Thanks to "Alon Bar-Lev" <alon.barlev@gmail.com> for
4833 comments and testing.
4835 ** New self test of client and server authenticated X.509 TLS sessions.
4836 See tests/x509self.c and tests/x509signself.c.  The latter also tests
4837 the new external signing callback interface.
4839 ** New errors GNUTLS_E_APPLICATION_ERROR_MIN..GNUTLS_E_APPLICATION_ERROR_MAX.
4840 These two actually describe the outer limits of a range of error codes
4841 reserved to the application.  All of the errors are treated as fatal
4842 by the library (it has to since it doesn't know the semantics of the
4843 error codes).  This can be useful in callbacks, to signal some
4844 application-specific error condition, which will usually eventually
4845 cause some gnutls API to return the same error code as the callback,
4846 which then can be inspected by the application.  Note that error codes
4847 are negative.
4849 ** gnutls_set_default_priority now disable TLS 1.2 by default.
4850 The RFC is not released yet, and we're approaching a major release so
4851 let's not enable it just yet.
4853 ** Fix namespace so that gnutls_*_t is used consistently.
4854 Before, many places in the GnuTLS code used the old deprecated type
4855 names without the '_t' suffix.
4857 ** Build fixes for Guile code.
4858 Patch from Ludovic Courtes <ludovic.courtes@laas.fr>.
4860 ** More documentation fixes.
4861 In particular, the section headings were modified for casing.  By
4862 Ludovic Courtes <ludovic.courtes@laas.fr>.
4864 ** Updated Polish and Swedish translations.
4865 Thanks to Jakub Bogusz <qboosh@pld-linux.org> and Daniel Nylander
4866 <po@danielnylander.se>.
4868 ** API and ABI modifications:
4869 gnutls_sign_func: ADD, new type for sign callback.
4870 gnutls_sign_callback_set: ADD, new function to set sign callback.
4871 gnutls_sign_callback_get: ADD, new function to retrieve sign callback.
4872 gnutls_x509_privkey_sign_hash,
4873 gnutls_openpgp_privkey_sign_hash: ADD, new functions useful in sign callback.
4874 GNUTLS_E_APPLICATION_ERROR_MIN,
4875 GNUTLS_E_APPLICATION_ERROR_MAX: ADD, new CPP #defines for error codes.
4877 * Version 1.7.16 (released 2007-08-07)
4879 ** Fix sanity checks and return values in certificate selection.
4880 In some cases, GnuTLS omitted to report suitable error codes when no
4881 suitable certificate was found.
4883 ** Fix gnutls-cli starttls EOF on Mac OS X.
4884 Thanks to Hal Eden <n.mavrogiannopoulos@gmail.com>.
4886 ** Documentation fixes.
4887 In particular, the section headings were modified for casing.  By
4888 Ludovic Courtes <ludovic.courtes@laas.fr>.
4890 ** Update gnulib files.
4892 ** API and ABI modifications:
4893 No changes since last version.
4895 * Version 1.7.15 (released 2007-07-02)
4897 ** Fix self-tests key-id under mingw32.
4899 ** Test that the Guile header files are recent enough to work.
4900 Before we just tested that the command line tool 'guile' was recent
4901 enough, which may not be sufficient if you still have an old
4902 libguile.h header installed.
4904 ** Guile bindings are now installed under $prefix by default.
4905 Use --without-guile-site-dir to install it under $pkgdatadir/site/
4906 where $pkgdatadir is as returned by "guile-config info pkgdatadir".
4907 Use --with-guile-site-dir=/your/own/path to specify the path manually.
4908 The default, --with-guile-site-dir, will install the Guile bindings
4909 under $datadir/guile/site.  There is a new section 'Guile
4910 Preparations' in the manual that discuss these issues.
4912 ** Fix run-time library path ordering in linking the Guile bindings.
4914 ** Improved manual on downloading, installing, getting help, bug reports etc.
4915 Suggested by Ludovic Courtès <ludovic.courtes@laas.fr>.
4917 ** Add Malay message translations.
4918 Thanks to Sharuzzaman Ahmat Raslan <sharuzzaman@myrealbox.com>.
4920 ** API and ABI modifications:
4921 No changes since last version.
4923 * Version 1.7.14 (released 2007-06-26)
4925 ** Don't enable Guile bindings unless we have Guile 1.8 or later.
4926 Patch from Ludovic Courtès <ludovic.courtes@laas.fr>.
4928 ** Fix memory leak during DSA signature verification.
4929 Patch from Ludovic Courtès <ludovic.courtes@laas.fr>.
4931 ** Fix crash in gnutls-cli when TLS handshake fails.
4932 Reported by Marc Haber <mh+debian-bugs@zugschlus.de> and Andreas
4933 Metzler <ametzler@downhill.at.eu.org> via Debian BTS #429183, see
4934 <http://bugs.debian.org/429183>.
4936 ** Minor OpenPGP fixes in stream_to_datum.
4937 Patch from Timo Schulz <twoaday@freakmail.de> and Ludovic Courtès
4938 <ludovic.courtes@laas.fr>.
4940 ** Fix off-by-one in TLS 1.2 handshake.
4941 Patch from Ludovic Courtès <ludovic.courtes@laas.fr>.
4943 ** Minor Guile binding self-test cleanup.
4944 Patch from Ludovic Courtès <ludovic.courtes@laas.fr>.
4946 ** Update gnulib files.
4948 ** API and ABI modifications:
4949 No changes since last version.
4951 * Version 1.7.13 (released 2007-06-11)
4953 ** OpenCDK copy updated to version 0.6.3.
4955 ** Build fixes for GnuTLS Guile bindings.
4956 Patch from Ludovic Courtès <ludovic.courtes@laas.fr>.
4958 ** Build fix for GTK-DOC manual.
4960 ** Update gnulib files.
4962 ** API and ABI modifications:
4963 No changes since last version.
4965 * Version 1.7.12 (released 2007-06-08)
4967 ** Guile bindings for GnuTLS have been included.
4968 Contributed by Ludovic Courtès <ludovic.courtes@laas.fr>.  There is a
4969 new chapter 'Guile Bindings' in the manual.
4971 ** Have PKCS8 parser return better error codes.
4972 Reported by Nate Nielsen <nielsen-list@memberwebs.com>, see
4973 <http://lists.gnupg.org/pipermail/gnutls-dev/2007-May/001653.html> and
4974 <http://lists.gnupg.org/pipermail/gnutls-dev/2007-May/001654.html>.
4976 ** Fix mem leak for sessions with client authentication via certificates.
4977 Reported by Andrew W. Nosenko <andrew.w.nosenko@gmail.com>, see
4978 <http://lists.gnupg.org/pipermail/gnutls-dev/2007-April/001539.html>.
4980 ** Fix mem leaks.
4981 Reported by Dennis Vshivkov <walrus@amur.ru>, see
4982 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=333050>.  Added
4983 self-test tests/parse_ca.c to test regressions.
4985 ** Fix build failures related to missing images in manual.
4986 Reported by Andreas Metzler <ametzler@downhill.at.eu.org>.
4988 ** Update gnulib files.
4990 ** API and ABI modifications:
4991 No changes since last version.
4993 * Version 1.7.11 (released 2007-05-26)
4995 ** Include opencdk.h in the release.
4996 Reported by Roman Bogorodskiy <novel@FreeBSD.org>.
4998 ** API and ABI modifications:
4999 No changes since last version.
5001 * Version 1.7.10 (released 2007-05-25)
5003 ** New API functions to extract DER encoded X.509 Subject/Issuer DN.
5004 Suggested by Nate Nielsen <nielsen-list@memberwebs.com>.
5006 ** Update of gnulib files.
5008 ** GnuTLS is now developed in GIT instead of CVS.
5009 See <http://repo.or.cz/w/gnutls.git> for a public repository.
5011 ** API and ABI modifications:
5012 gnutls_x509_crt_get_raw_issuer_dn: ADD.
5013 gnutls_x509_crt_get_raw_dn: ADD.
5015 * Version 1.7.9 (released 2007-05-12)
5017 ** X.509 certificates are preferred over OpenPGP keys.
5018 This is a change in the semantics of gnutls_set_default_priority.
5020 ** The included copy of OpenCDK has been updated to 0.6.1.
5021 There has been some API changes in OpenCDK, and the GnuTLS layer have
5022 been modified as well.  Note that while there are API/ABI incompatible
5023 changes in OpenCDK, this does not influence GnuTLS's API/ABI because
5024 its API/ABI have not changed.  From this version on, GnuTLS requires
5025 OpenCDK 0.6.0 or later.
5027 ** Fix build failure caused by missing doc/gnutls-logo.pdf.
5029 ** Change certtool's default serial number from 0 to a time-based value.
5031 ** Fix X.509 signing with RSA-PKCS#1 to set a NULL parameters fields.
5032 Before, we remove the parameters field, which resulted in a slightly
5033 different DER encoding which in turn caused signature verification
5034 failures of GnuTLS-generated RSA certificates in some other
5035 implementations (e.g., GnuPG 2.x's gpgsm).  Depending on which RFCs
5036 you read, this may or may not be correct, but our new behaviour appear
5037 to be consistent with other widely used implementations.
5039 ** Fix mem leaks in gnutls_x509_crt_print.
5041 ** API and ABI modifications:
5042 No changes since last version.
5044 * Version 1.7.8 (released 2007-04-16)
5046 ** Added examples for the authorization extension.
5047 See doc/examples/ex-client-authz.c and doc/examples/ex-serv-authz.c.
5049 ** The examples only use gnutls_set_default_priority().
5050 The exception is when DH_ANON is needed.
5052 ** Improve gnutls_set_default_priority() priorities.
5053 The new approach is for it to try and negotiate all secure and
5054 standard mechanisms available.  Currently, DH_ANON ciphersuites and
5055 LZO compressions are not enabled by default, because they are,
5056 respectively, insecure and non-standardized.  Note that TLS 1.2 will
5057 not be enabled by default in non-experimental release until it has
5058 been approved by the IETF.
5060 ** gnutls-cli and gnutls-serv now uses the library's default priorities.
5061 This means that to get DH_ANON and LZO compression, you'll need to
5062 specify that manually using '--kx anon' or '--comp lzo'.
5064 ** Minor fixes to the human display format of X.509 certificates.
5066 ** New APIs to extract Distinguished Name's from X.509 certificates.
5067 Based on patch from Howard Chu <hyc@symas.com>.
5069 ** Improved library searching for opencdk.
5070 It will now add the appropriate -R or -Wl,-rpath flags as necessary.
5071 The deprecated opencdk.m4 is no longer used.
5073 ** New APIs to list supported algorithms in the library.
5074 The APIs are gnutls_cipher_list, gnutls_mac_list,
5075 gnutls_compression_list, gnutls_protocol_list,
5076 gnutls_certificate_type_list, gnutls_kx_list, and
5077 gnutls_cipher_suite_info.  Suggested by Howard Chu <hyc@symas.com>.
5079 ** The gnutls_x509_crt_get_key_id API now handle non-RSA/DSA keys.
5081 ** New configure option --disable-tls-authorization to disable tls-authz.
5083 ** Fix prototype for `gnutls_psk_set_client_credentials'.
5084 The last parameter was renamed from 'flags' to 'format' and the type
5085 changed from 'unsigned int' to 'gnutls_psk_key_flags' (an enum type),
5086 which shouldn't cause any ABI changes.  Reported by ludo@chbouib.org
5087 (Ludovic Courtès).
5089 ** Fix allocation in gnutls_certificate_set_openpgp_key.
5090 Tiny patch from ludo@chbouib.org (Ludovic Courtès).
5092 ** API and ABI modifications:
5093 gnutls_x509_dn_t: ADD.
5094 gnutls_x509_ava_st: ADD.
5095 gnutls_x509_crt_get_subject,
5096 gnutls_x509_crt_get_issuer: ADD.
5097 gnutls_x509_dn_get_rdn_ava: ADD.
5098 gnutls_cipher_list: ADD.
5099 gnutls_mac_list: ADD.
5100 gnutls_compression_list: ADD.
5101 gnutls_protocol_list: ADD.
5102 gnutls_certificate_type_list: ADD.
5103 gnutls_kx_list: ADD.
5104 gnutls_cipher_suite_info: ADD.
5106 * Version 1.7.7 (released 2007-02-22)
5108 ** Support for supplemental handshake messages and authorization data.
5109 Supplemental data is described in RFC 4680 and the authorization
5110 extensions in draft-housley-tls-authz-extns-07.
5112 ** Support for authorization data in gnutls-cli and gnutls-serv.
5113 New parameters --authz-x509-attr-cert and --authz-saml-assertion.
5115 ** Fix for gnutls_x509_crt_check_hostname.
5116 Before it would have reported that the certificate matched a hostname
5117 when it did not have any dNSName or any CN field.  Report and tiny
5118 patch from "Richard W.M. Jones" <rjones@redhat.com>.
5120 ** New self test for RFC 2818 comparison in gnutls_x509_crt_check_hostname.
5121 Tests regressions of the bug, and several other features.
5123 ** GnuTLS now matches URI's with IP Addresses against iPAddress SAN's.
5124 Before there were no support for iPAddress SAN's during comparison.
5126 ** New API to print information about CRL's.
5127 The function is gnutls_x509_crl_print.
5129 ** New API to extract signature value from CRL's.
5130 The function is gnutls_x509_crl_get_signature.
5132 ** Support for directoryName Subject Alternative Name's.
5133 The gnutls_x509_crt_get_subject_alt_name function returns the DN as a
5134 string in the provided buffer.
5136 ** Internal improvements to certtool.
5137 It uses gnutls_x509_crl_print to print CRL information.  It uses some
5138 more gnulib modules to simplify error handling.
5140 ** API and ABI modifications:
5141 GNUTLS_HANDSHAKE_SUPPLEMENTAL: ADD, new gnutls_handshake_description_t element.
5142 gnutls_supplemental_data_format_type_t: ADD.
5143 gnutls_authz_data_format_type_t: ADD.
5144 gnutls_supplemental_get_name: ADD.
5145 gnutls_authz_recv_callback_func,
5146 gnutls_authz_send_callback_func: ADD, callback prototypes.
5147 gnutls_authz_enable: ADD.
5148 gnutls_authz_send_x509_attr_cert,
5149 gnutls_authz_send_saml_assertion,
5150 gnutls_authz_send_x509_attr_cert_url,
5151 gnutls_authz_send_saml_assertion_url: ADD.
5152 GNUTLS_SAN_DN: ADD, new gnutls_x509_subject_alt_name_t element.
5153 gnutls_x509_crl_print: ADD.
5154 gnutls_x509_crl_get_signature: ADD.
5156 * Version 1.7.6 (released 2007-02-12)
5158 ** Support for 'otherName' Subject Alternative Names.
5159 The existing API gnutls_x509_crt_get_subject_alt_name may now return
5160 the new type GNUTLS_SAN_OTHERNAME together with the otherName value.
5161 To find out the otherName OID (necessary for proper parsing of the
5162 value), use the new API gnutls_x509_crt_get_subject_alt_othername_oid.
5163 For known OIDs, gnutls_x509_crt_get_subject_alt_othername_oid will
5164 return "virtual" SAN values, e.g., GNUTLS_SAN_OTHERNAME_XMPP to
5165 simplify OID matching.  Suggested by Matthias Wimmer <m@tthias.eu>.
5167 ** Certtool can print otherName SAN values for certificates.
5168 For known otherName OIDs (currently only id-on-xmppAddr as defined by
5169 RFC 3920), it will also print the name.
5171 ** Fix TLS 1.2 RSA signing in servers.
5172 Before it used the old-style MD5+SHA1 signature, but the TLS
5173 signatures should be normal PKCS#1 signatures.  FYI, we use and
5174 require that DigestInfo parameters are present and NULL for TLS 1.2.
5176 ** Add APIs to access X.509 extensions sequentially.
5177 The existing APIs gnutls_x509_crt_get_extension_oid() and
5178 gnutls_x509_crt_get_extension_by_oid() does not permit callers to
5179 inspect the extensions in the order defined by the certificate.
5181 ** Add API to extract signature value from X.509 certificates.
5182 The function is gnutls_x509_crt_get_signature.
5184 ** Fix crash when generating proxy certificates in batch mode.
5185 If you don't specify a proxy policy in batch mode, it will use
5186 id-ppl-inheritALL.
5188 ** Add API to print information about X.509 certificates.
5189 The function is gnutls_x509_crt_print.
5191 ** Certtool uses the new API gnutls_x509_crt_print to print certificate info.
5192 One consequence of this is that the output syntax has changed
5193 slightly.  Some more fields are printed.
5195 ** Doc fixes.
5197 ** API and ABI modifications:
5198 gnutls_x509_crt_print: ADD
5199 gnutls_certificate_print_formats_t: ADD, new enum.
5200 gnutls_x509_crt_get_signature: ADD.
5201 gnutls_x509_crt_get_extension_data: ADD.
5202 gnutls_x509_crt_get_extension_info: ADD.
5203 gnutls_x509_crt_get_subject_alt_othername_oid: ADD.
5204 GNUTLS_SAN_OTHERNAME: ADD, new gnutls_x509_subject_alt_name_t element.
5205 GNUTLS_SAN_OTHERNAME_XMPP: ADD, new gnutls_x509_subject_alt_name_t element.
5207 * Version 1.7.5 (released 2007-02-06)
5209 ** Servers won't negotiate SRP RSA/DSS cipher suites if no SRP credential
5210 ** is set.
5212 ** Default behaviour for the gnutls-cli and gnutls-serv tools improved.
5214 ** Fix --list output for gnutls-cli and gnutls-serv.
5215 Mention TLS1.2, SHA512 etc.
5217 ** Manual contains new section on setting up a test HTTP server.
5218 A server set up following those descriptions are available online via
5219 <http://www.gnutls.org/server.html>.
5221 ** Update of gnulib files.
5223 ** API and ABI modifications:
5224 No changes since last version.
5226 * Version 1.7.4 (released 2007-02-05)
5228 ** Support for RSA signing using SHA-256/384/512.
5229 A new self test "sha2" tries to build a long X.509 certificate chain
5230 testing all new hashes.
5232 ** The gnutls-serv tool now use static DH parameters if none are supplied.
5234 ** Discuss proxy certificates in the manual.
5236 ** Improve bibliographical citations in the manual.
5238 ** Update of gnulib files.
5240 ** Fix certtool template handling of pathLenConstraints.
5241 It now defaults to -1 instead of 0, which causes the field to be
5242 missing unless the template specify it.
5244 ** API and ABI modifications:
5245 GNUTLS_MAC_SHA256,
5246 GNUTLS_MAC_SHA384,
5247 GNUTLS_MAC_SHA512: New gnutls_mac_algorithm_t values.
5248 GNUTLS_DIG_SHA256,
5249 GNUTLS_DIG_SHA384,
5250 GNUTLS_DIG_SHA512: New gnutls_digest_algorithm_t values.
5251 GNUTLS_SIGN_RSA_SHA256,
5252 GNUTLS_SIGN_RSA_SHA384,
5253 GNUTLS_SIGN_RSA_SHA512: New gnutls_sign_algorithm_t values.
5255 * Version 1.7.3 (released 2007-02-01)
5257 ** New option to certtool: --generate-proxy.
5258 This will generate a Proxy Certificate from an end entity certificate.
5259 Proxy Certificates are documented in RFC 3820.  You will need to
5260 specify the proxy certificate's private key with --load-privkey, the
5261 user certificate with --load-certificate and the private key used to
5262 sign the new proxy certificate with --load-ca-privkey.  Certtool will
5263 query for proxy path length and the policy language OID.  Currently
5264 only OIDs that have an empty policy are supported (which includes the
5265 two OIDs defined by RFC 3820).
5267 ** Certtool --certificate-info now prints information for Proxy Certificates.
5268 Before the proxy extension was just printed as DER encoded data.
5270 ** New APIs to set proxy subject names and get/set proxy cert extension.
5272 ** Fix parsing of pathLenConstraints in BasicConstraints with missing cA.
5274 ** Added self-test to test for regressions of pathLenConstraint bug.
5275 Incidentally, this also test (some) other regressions or changes in
5276 the output from certtool --certificate-info.
5278 ** When certtool generates CA certificates, pressing enter on the path
5279 ** length constraint query will now remove the field.
5280 Before it set the path length constraint to 0, which is a rather poor
5281 default.
5283 ** Certtool now print times in UTC when printing certificate/CRL info.
5285 ** Add better fix to work around C++ compiler bug on Mac OS X.
5286 Reported and tiny patch provided by Matthias Scheler <tron@NetBSD.org>.
5288 ** Fix import of ASCII armored OpenPGP keys.
5289 Patch by ludovic.courtes@laas.fr (Ludovic Courtès).
5291 ** Update of gnulib files.
5293 ** API and ABI modifications:
5294 gnutls_x509_crt_set_proxy_dn: ADD.
5295 gnutls_x509_crt_set_proxy: ADD.
5296 gnutls_x509_crt_get_proxy: ADD.
5298 * Version 1.7.2 (released 2007-01-14)
5300 ** Certtool now print the value of the pathLenConstraints field for certs.
5302 ** Certtool now query for path length constraints when generating CA certs.
5303 For batch uses, the certtool configuration name is "path_len".
5304 Suggested by Sascha Ziemann <sascha.ziemann@secunet.com>.
5306 ** Add new API to get/set pathLenConstraint in the Basic Constraints.
5307 The new functions gnutls_x509_crt_get_basic_constraints and
5308 gnutls_x509_crt_set_basic_constraints provide a superset of the
5309 functionality in the old gnutls_x509_crt_get_ca_status and
5310 gnutls_x509_crt_set_ca_status (respectively), but the old functions
5311 will continue to be supported.
5313 ** Add new API in OpenCDK to extract public/secret OpenPGP key to S-expr.
5314 The functions are cdk_pubkey_to_sexp and cdk_seckey_to_sexp.  A proper
5315 OpenCDK release with this patch will be made soon, which should bump
5316 the OpenCDK version number.  Patch by Mario Lenz <mario.lenz@gmx.net>.
5318 ** Certtool --to-p12 can now store more than one certificate in the blob.
5319 Before it could only store one certificate, but now it will read and
5320 store as many certificate there are from the --load-certificate file.
5321 Suggested by Sascha Ziemann <sascha.ziemann@secunet.com>.
5323 ** Clean up separation of gnutls and gnutls-extra for OpenPGP.
5324 In particular, the OpenPGP function variables are no longer part of
5325 the exported libgnutls interface, and no header files from
5326 libgnutls-extra (GPL) are needed by libgnutls (LGPL).  The variables
5327 were never intended for non-internal purposes, and thus this does not
5328 imply a change in the external API/ABI.
5330 ** Print URL to gaa when missing, and fix srcdir!=builddir for GAA files.
5331 Reported by ludovic.courtes@laas.fr (Ludovic Courtès).
5333 ** GnuTLS no longer uses -mms-bitfields --enable-runtime-pseudo-reloc.
5334 Before these parameters were set to make GnuTLS build under mingw32,
5335 however, they appear to no longer be necessary.
5337 ** A minor fix to the C++ library to make it build.
5338 Reported by Pavlov Konstantin <thresh@altlinux.ru>.
5340 ** Update of gnulib files.
5342 ** API and ABI modifications:
5343 gnutls_x509_crt_get_basic_constraints: ADD.
5344 gnutls_x509_crt_set_basic_constraints: ADD.
5345 cdk_pubkey_to_sexp: ADD (in opencdk).
5346 cdk_seckey_to_sexp: ADD (in opencdk).
5348 * Version 1.7.1 (released 2006-12-28)
5350 ** TLS 1.2 server side fix.
5351 The Certificate Request sent did not contain the list of supported
5352 hashes field, thus violating the protocol.  It will now contain an
5353 empty list.  Reported by ludovic.courtes@laas.fr (Ludovic Courtès).
5355 ** TLS 1.2 DSA signature verification fix.
5356 Reported by ludovic.courtes@laas.fr (Ludovic Courtès).
5358 ** Fix the list of trusted CAs that server's send to clients.
5359 Before, the list contained issuer DN's instead of subject DN's of the
5360 trusted CAs.  Reported by Max Kellermann <max@duempel.org>.
5362 ** Fix gnutls_certificate_set_x509_crl to initialize the CRL before using it.
5363 Also added a self-test in tests/certificate_set_x509_crl.c to test the
5364 function.  Reported by Max Kellermann <max@duempel.org>.
5366 ** Encode UID fields in DN's as DirectoryString.
5367 Before GnuTLS encoded and parsed UID fields as IA5String.  This was
5368 incorrect, it should have used DirectoryString.  Now it will use
5369 DirectoryString for the UID field, but for backwards compatibility it
5370 will also accept IA5String UID's.  Reported by Max Kellermann
5371 <max@duempel.org>.
5373 ** Improve out-of-sourcedir builds from CVS.
5374 Reported by ludovic.courtes@laas.fr (Ludovic Courtès).
5376 ** Bootstrap tools changed.
5377 We now require autoconf 2.61, automake 1.10, and gettext 0.16, when
5378 building GnuTLS from CVS.  Libtool 1.5.22 is used.
5380 ** Fixed a syntax error in lib/gnutls.asn.
5381 Reported by Paul Millar <p.millar@physics.gla.ac.uk>.
5383 ** Added German translation of GnuTLS messages.
5385 ** Update of gnulib files.
5387 ** API and ABI modifications:
5388 No changes since last version.
5390 * Version 1.7.0 (released 2006-11-29)
5392 ** The default protocol priority try TLS 1.1 and TLS 1.2 too.
5393 The details is that the protocol priority set by
5394 `gnutls_set_default_priority' has been changed from TLS 1.0 and SSL
5395 3.0 to TLS 1.2, TLS 1.1, TLS 1.0 and SSL 3.0.
5397 ** Preliminary support for TLS 1.2.
5398 The client has been successfully tested against
5399 https://www.mikestoolbox.org:4433/.
5401 ** Anonself test now print a lot of debugging info, including TLS version.
5403 ** Doc fixes in OpenCDK, to avoid some gtk-doc warnings.
5405 ** Update of gnulib files.
5407 ** API and ABI modifications:
5408 GNUTLS_TLS1_2: New gnutls_protocol_t enum member.
5410 *** Pulled up from stable 1.6.x branch:
5412 ** Fix ./configure failure with non-GCC compilers.
5413 This fixes the following error message:
5414 configure: error: conditional "HAVE_LD_OUTPUT_DEF" was never defined.
5415 Reported by "Michael C. Vergallen" <mvergall@telenet.be>.
5417 * Version 1.6.3 (released 2007-05-26)
5419 ** New API functions to extract DER encoded X.509 Subject/Issuer DN.
5420 Suggested by Nate Nielsen <nielsen-list@memberwebs.com>.  Backported
5421 from the 1.7.x branch, see
5422 <http://lists.gnu.org/archive/html/help-gnutls/2007-05/msg00029.html>.
5424 ** Have PKCS8 parser return better error codes.
5425 Reported by Nate Nielsen <nielsen-list@memberwebs.com>, see
5426 <http://lists.gnupg.org/pipermail/gnutls-dev/2007-May/001653.html> and
5427 <http://lists.gnupg.org/pipermail/gnutls-dev/2007-May/001654.html>.
5429 ** Fix mem leak for sessions with client authentication via certificates.
5430 Reported by Andrew W. Nosenko <andrew.w.nosenko@gmail.com>, see
5431 <http://lists.gnupg.org/pipermail/gnutls-dev/2007-April/001539.html>.
5433 ** Fix building of 'tlsia' self test.
5434 Earlier some gcc are known to build tlsia linking to
5435 $prefix/lib/libgnutls-extra.so rather than the libgnutls-extra.so in
5436 the build directory, even though command line parameters look OK.
5437 Changing order of some parameters fixes it.
5439 ** API and ABI modifications:
5440 gnutls_x509_crt_get_raw_issuer_dn: ADD.
5441 gnutls_x509_crt_get_raw_dn: ADD.
5443 * Version 1.6.2 (released 2007-04-18)
5445 ** Fix X.509 signing with RSA-PKCS#1 to set a NULL parameters fields.
5446 Before, we remove the parameters field, which resulted in a slightly
5447 different DER encoding which in turn caused signature verification
5448 failures of GnuTLS-generated RSA certificates in some other
5449 implementations (e.g., GnuPG 2.x's gpgsm).  Depending on which RFCs
5450 you read, this may or may not be correct, but our new behaviour appear
5451 to be consistent with other widely used implementations.
5453 ** Regenerate the PKIX ASN.1 syntax tree.
5454 For some reason, after changing the ASN.1 type of ldap-UID in the last
5455 release, the generated C file built from the ASN.1 schema was not
5456 refreshed.  This can cause problems when reading/writing UID
5457 components inside X.500 Distinguished Names.  Reported by devel
5458 <dev001@pas-world.com>.
5460 ** Updated translations.
5462 ** API and ABI modifications:
5463 No changes since last version.
5465 * Version 1.6.1 (released 2006-12-28)
5467 ** Fix the list of trusted CAs that server's send to clients.
5468 Before, the list contained issuer DN's instead of subject DN's of the
5469 trusted CAs.  Reported by Max Kellermann <max@duempel.org>.
5471 ** Fix gnutls_certificate_set_x509_crl to initialize the CRL before using it.
5472 Reported by Max Kellermann <max@duempel.org>.
5474 ** Encode UID fields in DN's as DirectoryString.
5475 Before GnuTLS encoded and parsed UID fields as IA5String.  This was
5476 incorrect, it should have used DirectoryString.  Now it will use
5477 DirectoryString for the UID field, but for backwards compatibility it
5478 will also accept IA5String UID's.  Reported by Max Kellermann
5479 <max@duempel.org>.
5481 ** Fix ./configure failure with non-GCC compilers.
5482 This fixes the following error message:
5483 configure: error: conditional "HAVE_LD_OUTPUT_DEF" was never defined.
5484 Reported by "Michael C. Vergallen" <mvergall@telenet.be>.
5486 ** API and ABI modifications:
5487 No changes since last version.
5489 * Version 1.6.0 (released 2006-11-17)
5491 ** No changes since 1.5.5.
5492 The major changes compared to the 1.4.x branch are:
5494 *** A GnuTLS C++ library is part of the official distribution.
5495 Currently there are no examples or documentation, but hopefully this
5496 will change.  See gnutlsxx.h for the API.
5498 *** Windows is a supported platform.
5499 There are, however, two know bugs.  One is related to select() in
5500 command line tools (not, nota bene, in the library), the other is a
5501 problem with libgcrypt that causes delays.  Help is needed to resolve
5502 those issues, so we feel we can't delay the release because of this.
5504 *** New APIs for custom push/pull function error reporting.
5505 The new APIs are gnutls_transport_set_errno and
5506 gnutls_transport_set_global_errno.  See the release notes for version
5507 1.5.4 for more information.
5509 *** Self tests are run under valgrind, if available.  See --disable-valgrind.
5511 * Version 1.5.5 (released 2006-11-16)
5513 ** Correctly bump shared library version after adding new APIs.
5514 This was forgotten in the last release.
5516 ** Fix unsigned vs signed problem in ex-x509-info.c example.
5517 Reported by Tim Kosse <tim.kosse@filezilla-project.org>.
5519 ** Fix the rsa-md5-collision self test to work for MinGW+Wine.
5521 ** Update of gnulib files.
5523 ** API and ABI modifications:
5524 No changes since last version.
5526 * Version 1.5.4 (released 2006-11-07)
5528 ** New API functions to set errno in push/pull functions.
5529 Under Windows, setting the errno variable in a push/pull replacement
5530 may end up setting the wrong errno variable, and GnuTLS send/recv
5531 functions become confused about the real errno returned from a failed
5532 push/pull function.  Therefor, we have added two APIs to set the errno
5533 variable used by GnuTLS.  The APIs can also help to keep things
5534 thread-safe, by avoiding potentially global variables.  Typically,
5535 instead of setting errno in your push/pull function, you will call one
5536 of these functions.  It is recommended to use
5537 gnutls_transport_set_errno, but if you don't have the session variable
5538 easily accessible in the push/pull replacement function, you can use
5539 gnutls_transport_set_global_errno.  Suggested by Tim Kosse
5540 <tim.kosse@filezilla-project.org>.
5542 void gnutls_transport_set_errno (gnutls_session_t session, int err);
5543 void gnutls_transport_set_global_errno (int err);
5545 ** When calling `recv' or `send' Windows errors are handled properly.
5546 The Windows recv/send functions doesn't use errno, and GnuTLS now use
5547 WSAGetLastError to access the error condition instead.
5549 ** Several OpenPGP API fixes.
5550 All suggested by ludovic.courtes@laas.fr (Ludovic Courtès).  The most
5551 important fix is to change the return value of
5552 gnutls_openpgp_privkey_get_pk_algorithm and
5553 gnutls_openpgp_key_get_pk_algorithm from 'int' to
5554 'gnutls_pk_algorithm_t', which is an enum type (and thus API/ABI
5555 compatible with 'int').
5557 ** When a GnuTLS server receive a SSLv2 Client Hello for an unknown TLS
5558 ** version, try to negotiate the highest version support by the GnuTLS server,
5559 ** instead of the lowest.
5560 Reported by <Pasi.Eronen@nokia.com>.
5562 ** Replace old constructs with use of gnulib modules.
5563 For example, we can now assume unistd.h, sys/stat.h, sys/socket.h in
5564 the code.  If the headers doesn't exist on the target system, gnulib
5565 will make sure its replacement header files are used instead.
5567 ** Fix SOVERSION computation for *.def files.
5568 This fixes build errors similar to "No rule to make target
5569 `libgnutls-`expr', needed by `all-am'." when building for Windows.
5571 ** gnutls_check-version uses strverscmp from gnulib.
5573 ** Update of gnulib files.
5575 ** API and ABI modifications:
5576 gnutls_transport_set_errno: ADD
5577 gnutls_transport_set_global_errno: ADD
5579 * Version 1.5.3 (released 2006-10-26)
5581 ** Add new self-test of RSA-MD5 signature chains.
5582 Note that we already, since GnuTLS 1.2.9, reject RSA-MD5 signatures
5583 when verifying X.509 chains.  The code is in tests/rsa-md5-collision/
5584 and is based on the work by Marc Stevens et al, see
5585 <http://www.win.tue.nl/hashclash/TargetCollidingCertificates/>.
5587 ** Re-factor self tests.
5589 ** The include copy of Libtasn1 is updated to version 0.3.7.
5591 ** The included copy of OpenCDK is updated to version 0.5.11.
5593 ** Fix the filename of the *.def file on Windows after library version bump.
5595 ** Separated the gnulib directory into one for LGPL modules and one for GPL.
5596 This allows the GPL'd part of GnuTLS to take advantage of the GPL'd
5597 gnulib modules.  Earlier we could only use the LGPL'ed module from
5598 gnulib, because two gnulib directories in the same project didn't
5599 work.
5601 ** API and ABI modifications:
5602 No changes since last version.
5604 * Version 1.5.2 (released 2006-10-03)
5606 ** Decrement the shared library version back to 13 (as in the 1.4.x branch).
5607 Note that if you installed 1.5.0 or 1.5.1, they will have a higher
5608 shared library version than this version, so you'll have to remove
5609 them and possibly relink your applications.  The reason for this is
5610 that no API/ABI changes have been made since the 1.4.x branch, and
5611 that incrementing the shared library version was a mistake.  Reported
5612 by Andreas Metzler <ametzler@downhill.at.eu.org>.
5614 ** Fix off-by-one error when computing length to malloc.
5615 The code is used by gnutls_openpgp_add_keyring_file and
5616 gnutls_openpgp_add_keyring_mem.  Reported by "Adam Langley"
5617 <agl@imperialviolet.org>.
5619 ** Add version script for the GnuTLS C++ library.
5620 Reported by Andreas Metzler <ametzler@downhill.at.eu.org>.
5622 ** Fix the C++ compiler detection logic.
5623 Reported by Andreas Metzler <ametzler@downhill.at.eu.org>.
5625 ** Update of gnulib files.
5627 ** API and ABI modifications:
5628 No changes since last version.
5630 * Version 1.5.1 (released 2006-09-21)
5632 ** Fix PKCS#1 verification to avoid a variant of Bleichenbacher's
5633 ** Crypto 06 rump session attack.
5634 In particular, we check that the digestAlgorithm.parameters field is
5635 missing or empty, to avoid that it can contain "garbage" that may be
5636 used to alter the numeric properties of the signature.  See
5637 <http://www.imc.org/ietf-openpgp/mail-archive/msg14307.html> (which is
5638 not exactly the same as the problem we fix here).  Reported by Yutaka
5639 OIWA <y.oiwa@aist.go.jp>.
5641 See GNUTLS-SA-2006-4 on http://www.gnutls.org/security.html for more
5642 up to date information.
5644 ** Add self test to test for above flaw.
5646 ** Fix gnutls-cli-debug regarding resume support detection.
5647 Earlier, if the session-id from the server had a length of 0, it would
5648 indicate that the server supports resumption, which isn't the case.
5649 Reported by Kataja Kai <kai.kataja@op.fi>.
5651 ** Fix building of examples on FreeBSD by including netinet/in.h.
5652 Reported by Roman Bogorodskiy <novel@FreeBSD.org>.
5654 ** Fix certtool bug that caused the private key to not be loaded when
5655 generating a certificate with --load-request, which in turn triggered
5656 another unrelated bug in gnutls_x509_crt_sign2 (also fixed).  Reported
5657 by Sascha Ziemann <sascha.ziemann@secunet.com>.
5659 ** gnutls-cli and gnutls-serv works on Windows.
5660 The problem was the select() call that doesn't work on file
5661 descriptors (stdin) on Windows.  We borrowed some code from plibc to
5662 solve this.  It appears to be somewhat unreliable though.
5664 ** Autoconf 2.60 is now used.
5666 ** API and ABI modifications:
5667 No changes since last version.
5669 * Version 1.5.0 (released 2006-08-13)
5671 ** Change SRP and Cert-Type extensions to match IANA registry.
5673 ** Fixed bug in OpenPGP authentication handshake.
5675 ** Improvements for building under MinGW.
5676 Provides internal inet_ntop and inet_pton functions and arpa/inet.h
5677 header.  Calls WSAStartup and WSACleanup in gnutls_global_init and
5678 gnutls_global_deinit, respectively.  Loads getaddrinfo and getnameinfo
5679 at run-time from ws2_32.dll, and falls back on a simple replacement if
5680 it is not available.  Builds the library with -mms-bitfields
5681 -Wl,--enable-runtime-pseudo-reloc.  Links with --output-def, to
5682 create *.def files, which are installed.
5684 ** The examples now (conditionally) include config.h and link to gnulib.
5685 No other source changes were necessary, so the examples should
5686 continue to be possible to use stand-alone without any autoconf or
5687 gnulib stuff.
5689 ** Added C++ header "gnutlsxx.h" and library "libgnutlsxx".
5690 You may unconditionally disable it with --disable-cxx.  See
5691 includes/gnutls/gnutlsxx.h and lib/gnutlsxx.cpp for the
5692 implementation.
5694 ** Made command line tool '--version' behave according to GNU Standards.
5695 This enables 'make distcheck' to succeed.
5697 ** OpenCDK updated to 0.5.9 to fix some problems with OpenPGP support.
5699 ** Make --without-included-libtasn1 work.
5700 Reported by Daniel Black <dragonheart@gentoo.org>.
5702 ** Fix a crash (strcmp() on a NULL value) in the certificate verification logic.
5703 See http://www.gnu.org/software/gnutls/security.html regardging
5704 GNUTLS-SA-2006-2 for more up to date information.  Reported by
5705 satyakumar <satyam_kkd@hyd.hellosoft.com>.
5707 ** API and ABI modifications:
5708 No changes since last version.
5710 * Version 1.4.5 (released 2006-11-06)
5712 ** When a GnuTLS server receive a SSLv2 Client Hello for an unknown TLS
5713 ** version, try to negotiate the highest version support by the GnuTLS server,
5714 ** instead of the lowest.
5715 Reported by <Pasi.Eronen@nokia.com>.
5717 ** Fix typo in doc/examples/ex-serv-pgp.c.
5718 Reported by Adam Langley" <agl@imperialviolet.org>.
5720 ** API and ABI modifications:
5721 No changes since last version.
5723 * Version 1.4.4 (released 2006-09-12)
5725 ** Relax the test that caught signatures that exploit the variant of
5726 ** Bleichenbacher's Crypto 06 rump session attack on our
5727 ** verification logic flaw.
5728 In particular, we now permit the digestAlgorithm.parameters field to
5729 be present but empty, whereas in 1.4.3 we actually checked that the
5730 field was absent.
5732 ** Revert the removal of debug information for the GNUTLS-SA-2006-3 problem.
5733 The messages are only printed in debug mode, which is not recommended
5734 for normal use, and thus logging this situation cannot be abused as an
5735 oracle in typical recommended situations.
5737 ** API and ABI modifications:
5738 No changes since last version.
5740 * Version 1.4.3 (released 2006-09-08)
5742 ** Fix PKCS#1 verification to avoid a variant of Bleichenbacher's
5743 ** Crypto 06 rump session attack.
5744 In particular, we check that the digestAlgorithm.parameters field is
5745 empty, to avoid that it can contain "garbage" that may be used to
5746 alter the numeric properties of the signature.  See
5747 <http://www.imc.org/ietf-openpgp/mail-archive/msg14307.html> (which is
5748 not exactly the same as the problem we fix here).  Reported by Yutaka
5749 OIWA <y.oiwa@aist.go.jp>.
5751 See GNUTLS-SA-2006-4 on http://www.gnutls.org/security.html for more
5752 up to date information.
5754 ** Fix PKCS#1 decryption to avoid Bleichenbacher's Crypto 98 attack.
5755 See <http://www.bell-labs.com/user/bleichen/papers/pkcs.ps.gz>.
5756 Reported by Werner Koch <wk@gnupg.org>.
5758 See GNUTLS-SA-2006-3 on http://www.gnutls.org/security.html for more
5759 up to date information.
5761 ** Fix crash in gnutls_x509_crt_sign2 if passed a NULL issuer_key.
5763 ** API and ABI modifications:
5764 No changes since last version.
5766 * Version 1.4.2 (released 2006-08-12)
5768 ** Fix a crash (strcmp() on a NULL value) in the certificate verification logic.
5769 This can happen if you call gnutls_certificate_verify_peers2 and have
5770 a certain mix of local CA certificates and the peer send special
5771 certificates, that together trigger certain behaviour.  It is not
5772 known at this point whether the crash can be triggered without the
5773 special local CA certificate, and thus turn this into a remote crash
5774 of clients that verify server certificates when they talk to a server
5775 with the special server certificate.  See GNUTLS-SA-2006-2 on
5776 http://www.gnu.org/software/gnutls/security.html for more up to date
5777 information.  Reported by satyakumar <satyam_kkd@hyd.hellosoft.com>.
5779 ** Change SRP and Cert-Type extensions to match IANA registry.
5781 ** OpenCDK updated to 0.5.9 to fix some problems with OpenPGP support.
5783 ** Make --without-included-libtasn1 work.
5784 Reported by Daniel Black <dragonheart@gentoo.org>.
5786 ** API and ABI modifications:
5787 No changes since last version.
5789 * Version 1.4.1 (released 2006-06-14)
5791 ** Replaced inactive ifdefs to enable openpgp support in test programs.
5793 ** Fixed bug in OpenPGP authentication handshake.
5795 ** Fixed typographical in man pages.
5797 ** Build fixes of the manual.
5799 ** Added Swedish translation.
5801 ** API and ABI modifications:
5802 No changes since last version.
5804 * Version 1.4.0 (released 2006-05-15)
5806 ** Remove GnuTLS 0.8.x compatibility functions.
5808 ** The libgcrypt RNG is initialized in gnutls_global_init().
5810 ** TLS/IA API changes from Emile van Bergen.
5811 A dummy credential structure is not needed now, if you wish to use the
5812 low-level TLS/IA API, simply call gnutls_ia_enable to enable TLS/IA on
5813 a session.
5815 ** The self-tests are now run under valgrind, if it is installed.
5817 ** Libtasn1 is updated to 0.3.4, and that version is now required.
5819 ** The command line tools now use getaddrinfo and support IPv6.
5821 ** API and ABI modifications:
5822 _gnutls_x509_get_raw_crt_activation_time,
5823 _gnutls_x509_get_raw_crt_expiration_time: Removed.
5824 gnutls_ia_require_inner_phase: Removed, replaced by gnutls_ia_enable.
5825 gnutls_ia_enable: Added.
5827 * Version 1.3.5 (released 2006-03-08)
5829 ** Error messages are now translated using GNU Gettext.
5831 ** The function gnutls_x509_crt_to_xml now return an internal error.
5832 This means that the code to convert X.509 certificates to XML format
5833 does not work any more.  The reason is that the function called
5834 libtasn1 internal functions.  It seems unclean for libtasn1 to export
5835 the APIs needed here.  Instead it would be better to implement XML
5836 support inside libtasn1 properly.  If you need this functionality
5837 strongly, please consider looking into implementing this suggested
5838 approach instead.  As a workaround, you may also modify lib/x509/xml.c
5839 (change '#if 1' to '#if 0') and build using --with-included-libtasn1.
5841 ** Libraries are now built with libtool's -no-undefined.
5842 This helps producing libraries for Windows using mingw32.
5844 ** Doc fixes to explain that gnutls_record_send can block.
5846 ** Libtasn1 0.3.1 or later is now required.
5847 The include copy has been updated too.
5849 ** gnutls-cli can now recognize services and port numbers with the -p option.
5851 ** API and ABI modifications:
5852 No changes since last version.
5854 * Version 1.3.4 (released 2006-02-09)
5856 ** Fix read of out bounds bug in DER parser.
5857 Reported by Evgeny Legerov <admin@gleg.net>, and debugging help from
5858 Protover SSL.  Libtasn1 0.2.18 is now required, which contains the
5859 previous bug fix.  The included libtasn1 version in GnuTLS has been
5860 updated.
5862 ** Fixed bug in non-blocking gnutls_bye(). gnutls_record_send() will no 
5863 longer invalidate a session if the underlying send fails, but it will 
5864 prevent future writes. That is to allow reading the already received data.
5865 Patches and bug reports by Yoann Vandoorselaere <yoann@prelude-ids.org>
5867 ** Corrected bugs in gnutls_certificate_set_x509_crl() and
5868 gnutls_certificate_set_x509_trust(), that caused memory corruption if 
5869 more than one certificates were added. Report and patch by Max Kellermann.
5871 ** Fix build problems of OpenCDK on AIX.
5872 Thanks to "Heiden, John" <JHeiden@UTNet.UToledo.Edu>.
5874 ** API and ABI modifications:
5875 No changes since last version.
5877 * Version 1.3.3 (released 2006-01-12)
5879 ** New API to access the TLS master secret.
5880 When possible, you should use the TLS PRF functions instead.
5881 Suggested by Jouni Malinen <jkmaline@cc.hut.fi>.
5883 ** Improved handling when multiple libraries use GnuTLS at the same time.
5884 Now gnutls_global_init() can be called multiple times, and
5885 gnutls_global_deinit() will only deallocate the structure when it has
5886 been called as many times as gnutls_global_init() was called.
5888 ** Added a self test of TLS resume functionality.
5890 ** Fix crash in TLS resume code, caused by TLS/IA changes.
5892 ** Documentation fixes about thread unsafety, prompted by
5893 ** discussion with bryanh@giraffe-data.com (Bryan Henderson).
5894 In particular, gnutls_global_init() and gnutls_global_deinit() are not
5895 thread safe.  Careful callers may want to protect the call using a
5896 mutex.  The problem could also be ignored, which would cause a memory
5897 leak under rare conditions when two threads invoke the function
5898 roughly at the same time.
5900 ** Add 'const' keywords in various places, from Frediano ZIGLIO.
5902 ** The code was indented again, including the external header files.
5904 ** API and ABI modifications:
5905 New functions to retrieve the master secret value:
5906   gnutls_session_get_master_secret
5908 Add a 'const' keyword to existing API:
5909   gnutls_x509_crq_get_challenge_password
5911 * Version 1.3.2 (released 2005-12-15)
5913 ** GnuTLS now support TLS Inner application (TLS/IA).
5914 This is per draft-funk-tls-inner-application-extension-01.  This
5915 functionality is added to libgnutls-extra, so it is licensed under the
5916 GNU General Public License.
5918 ** New APIs to access the TLS Pseudo-Random-Function (PRF).
5919 The PRF is used by some protocols building on TLS, such as EAP-PEAP
5920 and EAP-TTLS.  One function to access the raw PRF and one to access
5921 the PRF seeded with the client/server random fields are provided.
5922 Suggested by Jouni Malinen <jkmaline@cc.hut.fi>.
5924 ** New APIs to acceess the client and server random fields in a session.
5925 These fields can be useful by protocols using TLS.  Note that these
5926 fields are typically used as input to the TLS PRF, and if this is your
5927 intended use, you should use the TLS PRF API that use the
5928 client/server random field directly.  Suggested by Jouni Malinen
5929 <jkmaline@cc.hut.fi>.
5931 ** Internal type cleanups.
5932 The uint8, uint16, uint32 types have been replaced by uint8_t,
5933 uint16_t, uint32_t.  Gnulib is used to guarantee the presence of
5934 correct types on platforms that lack them.  The uint type have been
5935 replaced by unsigned.
5937 ** API and ABI modifications:
5938 New functions to invoke the TLS Pseudo-Random-Function (PRF):
5939   gnutls_prf
5940   gnutls_prf_raw
5942 New functions to retrieve the session's client and server random values:
5943   gnutls_session_get_server_random
5944   gnutls_session_get_client_random
5946 New function, to perform TLS/IA handshake:
5947   gnutls_ia_handshake
5949 New function to decide whether to do a TLS/IA handshake:
5950   gnutls_ia_handshake_p
5952 New functions to allocate a TLS/IA credential:
5953   gnutls_ia_allocate_client_credentials
5954   gnutls_ia_free_client_credentials
5955   gnutls_ia_allocate_server_credentials
5956   gnutls_ia_free_server_credentials
5958 New functions to handle the AVP callback:
5959   gnutls_ia_set_client_avp_function
5960   gnutls_ia_set_client_avp_ptr
5961   gnutls_ia_get_client_avp_ptr
5962   gnutls_ia_set_server_avp_function
5963   gnutls_ia_set_server_avp_ptr
5964   gnutls_ia_get_server_avp_ptr
5966 New functions, to toggle TLS/IA application phases:
5967   gnutls_ia_require_inner_phase
5969 New function to mix session keys with inner secret:
5970   gnutls_ia_permute_inner_secret
5972 Low-level API (used internally by gnutls_ia_handshake):
5973   gnutls_ia_endphase_send
5974   gnutls_ia_send
5975   gnutls_ia_recv
5977 New functions that can be used after successful TLS/IA negotiation:
5978   gnutls_ia_generate_challenge
5979   gnutls_ia_extract_inner_secret
5981 Enum type with TLS/IA modes:
5982   gnutls_ia_mode_t
5984 Enum type with TLS/IA packet types:
5985   gnutls_ia_apptype_t
5987 Enum values for TLS/IA alerts:
5988   GNUTLS_A_INNER_APPLICATION_FAILURE
5989   GNUTLS_A_INNER_APPLICATION_VERIFICATION
5991 New error codes, to signal when an application phase has finished:
5992   GNUTLS_E_WARNING_IA_IPHF_RECEIVED
5993   GNUTLS_E_WARNING_IA_FPHF_RECEIVED
5995 New error code to signal TLS/IA verify failure:
5996   GNUTLS_E_IA_VERIFY_FAILED
5998 * Version 1.3.1 (released 2005-12-08)
6000 ** Support for DHE-PSK cipher suites has been added.
6001 This method offers perfect forward secrecy.
6003 ** Fix gnutls-cli STARTTLS hang when SIGINT is sent too quickly, thanks to
6004 Otto Maddox <ottomaddox@fastmail.fm> and Nozomu Ando <nand@mac.com>.
6006 ** Corrected a bug in certtool for 64 bit machines. Reported
6007 by Max Kellermann <max@duempel.org>.
6009 ** New function to set a X.509 private key and certificate pairs, and/or
6010 CRLs, from an PKCS#12 file, suggested by Emile van Bergen
6011 <emile@e-advies.nl>.
6013 The integrity of the PKCS#12 file is protected through a password
6014 based MAC; public-key based signatures for integrity protection are
6015 not supported.  PKCS#12 bags may be encrypted using password derived
6016 symmetric keys, public-key based encryption is not supported.  The
6017 PKCS#8 keys may be encrypted using passwords.  The API use the same
6018 password for all operations.  We believe that any more flexibility
6019 create too much complexity that would hurt overall security, but may
6020 add more PKCS#12 related APIs if real-world experience indicate
6021 otherwise.
6023 ** gnutls_x509_privkey_import_pkcs8 now accept unencrypted PEM PKCS#8 keys,
6024 reported by Emile van Bergen <emile@e-advies.nl>.
6025 This will enable "certtool -k -8" to parse those keys.
6027 ** Certtool now generate keys in unencrypted PKCS#8 format for empty passwords.
6028 Use "certtool -p -8" and press press enter at the prompt.  Earlier,
6029 certtool would have encrypted the key using an empty password.
6031 ** Certtool now accept --password for --key-info and encrypted PKCS#8 keys.
6032 Earlier it would have prompted the user for it, even if --password was
6033 supplied.
6035 ** Added self test of PKCS#8 parsing.
6036 Unencrypted and encrypted (pbeWithSHAAnd3-KeyTripleDES-CBC and
6037 pbeWithSHAAnd40BitRC2-CBC) formats are tested.  The test is in
6038 tests/pkcs8.
6040 ** API and ABI modifications:
6041 New function to set X.509 credentials from a PKCS#12 file:
6042   gnutls_certificate_set_x509_simple_pkcs12_file
6044 New gnutls_kx_algorithm_t enum type:
6045   GNUTLS_KX_DHE_PSK
6047 New API to return session data (basically same as gnutls_session_get_data):
6048   gnutls_session_get_data2
6050 New API to set PSK Diffie-Hellman parameters:
6051   gnutls_psk_set_server_dh_params
6053 * Version 1.3.0 (2005-11-15)
6055 ** Support for TLS Pre-Shared Key (TLS-PSK) ciphersuites have been added.
6056 This add several new APIs, see below.  Read the updated manual for
6057 more information.  A new self test "pskself" has been added, that will
6058 test this functionality.
6060 ** The session resumption data are now system independent.
6062 ** The code has been re-indented to conform to the GNU coding style.
6064 ** Removed the RIPEMD ciphersuites.
6066 ** Added a discussion of the internals of gnutls in manual.
6068 ** Fixes for Tru64 UNIX 4.0D that lack MAP_FAILED, from Albert Chin.
6070 ** Remove trailing comma in enums, for IBM C v6, from Albert Chin.
6072 ** Make sure config.h is included first in a few files, from Albert Chin.
6074 ** Don't use C++ comments ("//") as they are invalid, from Albert Chin.
6076 ** Don't install SRP programs and man pages if --disable-srp-authentication,
6077 from Albert Chin.
6079 ** API and ABI modifications:
6080 New gnutls_kx_algorithm_t key exchange type: GNUTLS_KX_PSK
6082 New gnutls_credentials_type_t credential type:
6083   GNUTLS_CRD_PSK
6085 New credential types:
6086   gnutls_psk_server_credentials_t
6087   gnutls_psk_client_credentials_t
6089 New functions to allocate PSK credentials:
6090   gnutls_psk_allocate_client_credentials
6091   gnutls_psk_free_client_credentials
6092   gnutls_psk_free_server_credentials
6093   gnutls_psk_allocate_server_credentials
6095 New enum type for PSK key flags:
6096   gnutls_psk_key_flags
6098 New function prototypes for credential callback:
6099   gnutls_psk_client_credentials_function
6100   gnutls_psk_server_credentials_function
6102 New function to set PSK username and key:
6103   gnutls_psk_set_client_credentials
6105 New function to set PSK passwd file:
6106   gnutls_psk_set_server_credentials_file
6108 New function to extract PSK user in server:
6109   gnutls_psk_server_get_username
6111 New functions to set PSK callback:
6112   gnutls_psk_set_server_credentials_function
6113   gnutls_psk_set_client_credentials_function
6115 Use size_t instead of int for output size parameter:
6116   gnutls_srp_base64_encode
6117   gnutls_srp_base64_decode
6119 * Version 1.2.11 (2006-05-11)
6120 - The function gnutls_x509_crt_to_xml is not supported any more, and
6121   return an internal error.  The reason is that the function called
6122   internal libtasn1 functions which are no longer exported from
6123   libtasn1.
6124 - Updated libtasn1 requirement to 0.3.4 and refreshed internal mintiasn1.
6125 - Updated gnulib compatibility files.
6126 - Fixed _gnutls_x509_get_raw_crt_expiration_time and
6127   _gnutls_x509_get_raw_crt_activation_time to return (time_t)-1 on errors.
6128 - API and ABI modifications:
6129   No changes since last version.
6131 * Version 1.2.10 (2006-02-09)
6132 - Fix read out bounds bug in DER parser.  Reported by Evgeny Legerov
6133   <admin@gleg.net>, and debugging help from Protover SSL.
6134 - Libtasn1 0.2.18 is now required (contains the previous bug fix).
6135   The included version has been updated too.
6136 - Fix gnutls-cli STARTTLS hang when SIGINT is sent too quickly, thanks to
6137   Otto Maddox <ottomaddox@fastmail.fm> and Nozomu Ando <nand@mac.com>.
6138 - Corrected a bug in certtool for 64 bit machines. Reported
6139   by Max Kellermann <max@duempel.org>.
6140 - Corrected bugs in gnutls_certificate_set_x509_crl() and
6141   gnutls_certificate_set_x509_trust(), that caused memory corruption if
6142   more than one certificates were added. Report and patch by Max Kellermann.
6143 - Fixed bug in non-blocking gnutls_bye(). gnutls_record_send() will no 
6144   longer invalidate a session if the underlying send fails, but it will 
6145   prevent future writes. That is to allow reading the already received data.
6146   Patches and bug reports by Yoann Vandoorselaere <yoann@prelude-ids.org>
6148 * Version 1.2.9 (2005-11-07)
6149 - Documentation was updated and improved.
6150 - RSA-MD2 is now supported for verifying digital signatures.
6151 - Due to cryptographic advances, verifying untrusted X.509
6152   certificates signed with RSA-MD2 or RSA-MD5 will now fail with a
6153   GNUTLS_CERT_INSECURE_ALGORITHM verification output.  For
6154   applications that must remain interoperable, you can use the
6155   GNUTLS_VERIFY_ALLOW_SIGN_RSA_MD2 or GNUTLS_VERIFY_ALLOW_SIGN_RSA_MD5
6156   flags when verifying certificates.  Naturally, this is not
6157   recommended default behaviour for applications.  To enable the
6158   broken algorithms, call gnutls_certificate_set_verify_flags with the
6159   proper flag, to change the verification mode used by
6160   gnutls_certificate_verify_peers2.
6161 - Make it possible to send empty data through gnutls_record_send,
6162   to align with the send(2) API.
6163 - Some changes in the certificate receiving part of handshake to prevent
6164   some possible errors with non-blocking servers.
6165 - Added numeric version symbols to permit simple CPP-based feature
6166   tests, suggested by Daniel Stenberg <daniel@haxx.se>.
6167 - The (experimental) low-level crypto alternative to libgcrypt used
6168   earlier (Nettle) has been replaced with crypto code from gnulib.
6169   This leads to easier re-use of these components in other projects,
6170   leading to more review and simpler maintenance.  The new configure
6171   parameter --with-builtin-crypto replace the old --with-nettle, and
6172   must be used if you wish to enable this functionality.  See README
6173   under "Experimental" for more information.  Internally, GnuTLS has
6174   been updated to use the new "Generic Crypto" API in gl/gc.h.  The
6175   API is similar to the old crypto/gc.h, because the gnulib code were
6176   based on GnuTLS's gc.h.
6177 - Fix compiler warning in the "anonself" self test.
6178 - API and ABI modifications:
6179 gnutls_x509_crt_list_verify: Added 'const' to prototype in <gnutls/x509.h>.
6180                              This doesn't reflect a change in behaviour,
6181                              so we don't break backwards compatibility.
6182 GNUTLS_MAC_MD2: New gnutls_mac_algorithm_t value.
6183 GNUTLS_DIG_MD2: New gnutls_digest_algorithm_t value.
6184 GNUTLS_VERIFY_ALLOW_SIGN_RSA_MD2,
6185 GNUTLS_VERIFY_ALLOW_SIGN_RSA_MD5: New gnutls_certificate_verify_flags values.
6186                                   Use when calling
6187                                   gnutls_x509_crt_list_verify,
6188                                   gnutls_x509_crt_verify, or
6189                                   gnutls_certificate_set_verify_flags.
6190 GNUTLS_CERT_INSECURE_ALGORITHM: New gnutls_certificate_status_t value,
6191                                 used when broken signature algorithms
6192                                 is used (currently RSA-MD2/MD5).
6193 LIBGNUTLS_VERSION_MAJOR,
6194 LIBGNUTLS_VERSION_MINOR,
6195 LIBGNUTLS_VERSION_PATCH,
6196 LIBGNUTLS_VERSION_NUMBER: New CPP symbols, indicating the GnuTLS
6197                           version number, can be used for feature existence
6198                           tests.
6200 * Version 1.2.8 (2005-10-07)
6201 - Libgcrypt 1.2.2 is required to fix a bug for forking GnuTLS servers.
6202 - Don't install the auxilliary libexamples library used by the
6203   examples in doc/examples/ on "make install", report and tiny patch
6204   from Thomas Klausner <tk@giga.or.at>.
6205 - If you pass a X.509 CA or PGP trust database to the command line
6206   tool, it will now abort the connection if the server certificate
6207   validation fails.  Use the parameter --insecure to continue even
6208   after certificate validation failures.  Inspired from discussion
6209   with Alexander Kotelnikov <sacha@myxomop.com>.
6210 - The test for socklen_t has been moved to gnulib.
6211 - Link failures for duplicate or missing "program_name" symbol has been fixed,
6212   patch from Martin Lambers <marlam@marlam.de>.
6213 - The command line tool and the examples no longer uses mmap or bzero,
6214   to make them more portable, patch from Martin Lambers
6215   <marlam@marlam.de>.
6216 - Made the PKCS #12 API handle null passwords. Based on patch by
6217   Anton Altaparmakov <aia21@cam.ac.uk>.
6218 - The GTK-DOC manual should build with current released tools.
6219   (But a copy of the output is included, so the tools are not required.)
6220 - The inet_ntop function is now used through gnulib.
6221 - API and ABI modifications:
6222   No changes since last version.
6224 * Version 1.2.7 (2005-09-09)
6225 - The GnuTLS and GnuTLS-extra libraries are now built with versioned symbols.
6226 - Certtool now complains when reading out-of-range X.509 serial
6227   numbers, suggested by Fran <e_agf@yahoo.es>.
6228 - Certtool now uses the readline library (when available) when reading
6229   X.509 serial numbers.
6230 - Fixed build problems in getpass on uClibc and Mingw32 platforms.
6231 - Fixed compile warning regarding socklen_t on Mingw32, reported by
6232   Martin Lambers <marlam@marlam.de>.
6233 - Fixed examples in doc/examples/, suggested by Fran <e_agf@yahoo.es>.
6234 - Gnulib is now used for the core library, enabling future code cleanups.
6235 - The gnutls-cli tool now use gnutls_certificate_verify_peers2,
6236   suggested by Daniel Stenberg <daniel@haxx.se>.
6237 - Doc fixes for gnutls_transport_set_push and gnutls_transport_set_pull.
6238 - Minilibtasn1 is now 0.2.17 (removed optional use of C99 macros).
6239 - Disable zlib support if zlib.h is not present.
6240 - A number of internal cleanups.
6241 - API and ABI modifications:
6242   No changes since last version.
6244 * Version 1.2.6 (2005-07-16)
6245 - MiniLZO updated to version 2.01 and moved to separate directory.
6246 - Collision between system LZO header files and MiniLZO header file
6247   fixed, reported by Matthias Urlichs <smurf@smurf.noris.de>.
6248 - Will now test for liblzo functionality in liblzo2 too, reported by
6249   Thomas Klausner <tk@giga.or.at>.
6250 - Minilibtasn1 is now 0.2.14 (no code changes).
6251 - Some code changes to avoid GTK-DOC warnings.
6252 - API and ABI modifications:
6253   No changes since last version.
6255 * Version 1.2.5 (2005-07-03)
6256 - More builddir != srcdir fixes, reported by Mike Castle
6257   <dalgoda@ix.netcom.com>.
6258 - Fixed off-by-one bug in the size parameter of gnutls_x509_crt_get*_dn,
6259   reported by Adam Langley <alangley@gmail.com>.
6260 - Corrected some stuff in minilzo detection. Pointed out by 
6261   Sergey Lipnevich.
6262 - MiniLZO updated to version 2.00.
6263 - gnutls_x509_crt_list_import now accept a DER formatted CRL.
6264 - API and ABI modifications:
6265   No changes since last version.
6267 * Version 1.2.4 (2005-05-28)
6268 - Corrected some bugs that could affect 64 bit systems.
6269 - Some corrections in the header files to include the prototype
6270   of memmem properly (affected 64 bit systems). Report and patch
6271   by Yoann Vandoorselaere <yoann@prelude-ids.org>.
6272 - Introduced the --fix-key option to certtool, which can be used to
6273   regenerate the (optional) parameters in a private key. It should
6274   be used together with --key-info.
6275 - Corrected a bug in certificate chain verification that could lead
6276   to marking a trusted chain as non trusted, if the last certificate in
6277   the chain was a self signed one.
6278 - Gnulib portability files were updated.
6279 - License were updated to reflect new FSF address.
6280 - API and ABI modifications:
6281   No changes since last version.
6283 * Version 1.2.3 (2005-04-28)
6284 - Corrected bug in record packet parsing that could lead
6285   to a denial of service attack.
6286 - Corrected bug in RSA key export. Previously exported keys
6287   can be fixed using certtool. Use certtool -k <infile >outfile
6288 - API and ABI modifications:
6289     gnutls_x509_privkey_fix(): Add.
6291 * Version 1.2.2 (2005-04-25)
6292 - gnutls_error_to_alert() now considers
6293   GNUTLS_E_UNEXPECTED_HANDSHAKE_PACKET.
6294 - Fixed error in session resuming that could cause a crash in a session.
6295 - Fixed pkcs12 friendly name and local key identifier decoding.
6296 - Internal cleanups, removed duplicate typedef/struct definitions,
6297   and made source code include external include file, to check
6298   function prototypes during compile time.
6299 - API and ABI modifications:
6300   No changes since last version.  At least not intentional, but due
6301   to the include header changes, there may be inadvertant changes,
6302   please let us know if you find any.
6304 * Version 1.2.1 (2005-04-04)
6305 - gnutls_bye() will no longer fail when RDWR is used and application
6306   data are available for reading.
6307 - Added more strict checks for the SRP parameters (g,n), when they
6308   are not in the included list.
6309 - Added warning to certtool when MD5 is being used for digital
6310   signatures.
6311 - Optimizations ("-O2 -finline-functions") are not enabled by default,
6312   instead the standard autoconf defaults are used.  Use `./configure
6313   CFLAGS="-O2 -finline-functions"' to get the old optimizations.
6314 - Added the option --get-dh-params to certtool, in order to get the
6315   parameters included in the library primes and generators.
6316 - Improved the semantics of GNUTLS_VERIFY_ALLOW_X509_V1_CA_CRT, to
6317   allow only trusted Version 1 CAs and introduced
6318   GNUTLS_VERIFY_ALLOW_ANY_X509_V1_CA_CRT which has the old semantics.
6319 - Nettle self tests now build properly, reported by Pierre
6320   <pierre42d@9online.fr>.
6321 - Eliminated some memory leaks in DHE and RSA-EXPORT cipher suites.
6322   Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
6323 - If the library has been compiled with features disabled, a warning is 
6324   issued during the compilation of any program.
6325 - API and ABI modifications:
6326     gnutls_x509_crt_list_import(): Add
6327     gnutls_x509_crq_get_attribute_by_oid(): Add.
6328     gnutls_x509_crq_set_attribute_by_oid(): Add
6329     gnutls_x509_crt_set_extension_by_oid(): Add.
6330     GNUTLS_VERIFY_ALLOW_X509_V1_CA_CRT: Modify semantics.
6331     GNUTLS_VERIFY_ALLOW_ANY_X509_V1_CA_CRT: Add, old behaviour.
6333 * Version 1.2.0 (2005-01-27)
6334 - Added the definitions and OIDs for the RIPEMD-160 hash algorithm.
6335 - Introduced gnutls_x509_crt_sign2(), gnutls_x509_crq_sign2() and 
6336   gnutls_x509_crl_sign2().
6337 - Fixed license header in source code files.
6339 * Version 1.1.23 (2005-01-18)
6340 - It is now possible to generate PKCS#12 structures without private
6341   keys using "certtool --to-p12", suggested by Fabian Fagerholm
6342   <fabbe@paniq.net>.
6343 - Certtool now prints information for the RSA and DSA parameters of
6344   certificates and private keys.
6345 - Corrected the write of CRL distribution points.
6346 - The certificate chain verification function now checks certificates
6347   in the reverse order to minimize the spent resources.
6348 - Corrected several bugs found by Marcin Garski <mgarski@post.pl>
6349 - The functions gnutls_x509_crl_get_issuer_dn, gnutls_x509_crq_get_dn,
6350   gnutls_x509_crt_get_issuer_dn, gnutls_x509_crt_get_dn, and
6351   gnutls_x509_rdn_get now set *sizeof_buf to the buffer length that is
6352   required, instead of the string length.  That is, the value has been
6353   incremented by 1 to account for the terminating zero. Reported by
6354   Martin Lambers <marlam@web.de>.
6355 - Debug output shouldn't crash on platforms that doesn't handle NULL
6356   printf %s values.  Reported by Michael.Ringe@aachen.utimaco.de.
6357 - Sync included copy of libtasn1 with version 0.2.13.
6358 - Client X.509 authenticated connections via gnutls-cli should now work again.
6360 * Version 1.1.22 (2004-11-04)
6361 - Replace GNU LD version script with Libtool -export-symbols-regex,
6362   from Joe Orton <joe@manyfish.co.uk>.
6363 - Documentation improvements.
6364 - Code indented using 'indent -i4 -kr'.
6365 - The API manual is included in Devhelp format.  (Was in last release too,
6366   but the NEWS entry was forgotten.)
6367 - The OpenSSL compatibility code now use the internal crypto interface.
6368 - Added simple self test of OpenSSL compatibility library.
6369 - Internally, libtool convenience libraries are used.
6370 - Cleanups to configure.ac.
6372 * Version 1.1.21 (2004-10-27)
6373 - Print DN of certificates with unknown characters in them, but in hexform
6374   only.
6375 - Added second precision to the X.509 parsing and generation functions.
6376 - Corrected bug in _gnutls_x509_get_dn_oid(), and returns the
6377   actual OID.
6378 - Add parameter --la-file to libgnutls-config and libgnutls-extra-config,
6379   tiny patch contributed by Joe Orton <joe@manyfish.co.uk>.
6380 - Add pkg-config meta files, suggested by Stéphane LOEUILLET
6381   <stephane.loeuillet@tiscali.fr>.
6382 - Fix memory initializaion bug in gnutls_certificate_set_x509_trust,
6383   tiny patch by Aleix Conchillo Flaque <aleix@member.fsf.org>.
6384 - Add self test of PKCS#12 functionality in "certtool", based on test
6385   vectors from Joe Orton <joe@manyfish.co.uk>.
6386 - Fix library order in libgnutls*-config --libs output, to permit
6387   static linking, reported by Yoann Vandoorselaere
6388   <yoann@prelude-ids.org>.
6390 * Version 1.1.20 (2004-10-12)
6391 - Fix compile problem in gl/getpass.c on some systems.
6393 * Version 1.1.19 (2004-10-07)
6394 - Fix memory leak in gnutls_certificate_verify_peers and
6395   gnutls_certificate_free_credentials, report and patch by Simon
6396   Posnjak <simon.posnjak@cetrtapot.si>.
6397 - Fix crash in `certtool --to-p12 --load-privkey foo', i.e. exporting
6398   a key and no certificate to PKCS#12.
6399 - Fix objdir != srcdir builds, reported by "Gerrit P. Haase"
6400   <gp@familiehaase.de>.
6401 - Fixes faulty getpass implementation in libextra/opencdk/, reported
6402   by Yoann Vandoorselaere <yoann@prelude-ids.org>.
6403 - Uses memmem instead of strnstr in lib/.
6404 - Using more GNULib portability files, although not yet inside lib/.
6405 - Added gnutls_certificate_verify_peers to gnutls/compat.h.
6406   Nikos deprecated gnutls_certificate_verify_peers in favor of
6407   gnutls_certificate_verify_peers2 earlier in the 1.1 branch.
6408 - Improvements to the manual.
6409 - Add new example "ex-rfc2818" for certificate verification, from Nikos.
6410 - Known bug: the library require snprintf.  This has not yet been
6411   fixed, but will be handled via GNULib later on.
6413 * Version 1.1.18 (2004-08-24)
6414 - Corrected handling of certificate with dates after year 2038.
6415 - Corrected DER decoder which could incorrectly treat input as BER and fail.
6416 - Correct certtool --smime-to-p7 end of line character handling.
6417 - Added example client and server for anonymous authentication.
6418 - Added self test that tests anonymous TLS client and server.
6419 - Added self tests of Nettle and generic crypto layer.
6420 - Added API reference manual in HTML format in doc/reference/ using GTK-DOC.
6421   Online version at <http://www.gnu.org/software/gnutls/reference/>.
6422 - Assume C89 or better; removed checks for size_t, ptrdiff_t and time_t.
6423 - Man pages for API functions are included.
6425 * Version 1.1.17 (2004-08-18)
6426 - Bug fix of padding string in RSA PKCS#1 v1.5 type 2 encryption,
6427   reported by Robey Pointer <robey@danger.com>.
6428 - Generic crypto interface for secret key ciphers, hashes and randomness added.
6429   See section "Experimental" within section "COMPILATION ISSUES" in README.
6430 - Removed length limit on passwords read by 'certtool'.
6431 - Documentation fixes.
6433 * Version 1.1.16 (2004-08-15)
6434 - Fix missing gnulib linker parameter when building certtool.
6435 - Add gnulib module 'progname', needed by module 'error'.
6436 - Improve building with srcdir != objdir.
6438 * Version 1.1.15 (2004-08-15)
6439 - Certtool has simplistic --smime-to-p7 to translate RFC 2633 messages into
6440   PKCS #7 format.
6441 - Ported to Mac OS X / Darwin.
6442 - Ported to FreeBSD.
6444 * Version 1.1.14 (2004-08-09)
6445 - Documentation converted to Texinfo format.
6446 - Bug fix of test suite.
6447 - Configure now print build information, used by Autobuild.
6449 * Version 1.1.13 (2004-08-05)
6450 - Added simple self test suite.
6452 * Version 1.1.12 (2004-08-02)
6453 - Updated the SRP authentication to conform to the
6454   latest (yet unreleased) draft. Unfortunately this breaks
6455   compatibility with previous versions.
6456 - Changed the makefiles to be more portable.
6457 - SRP ciphersuites were moved to the gnutls library.
6458 - Added some default limits in the verification of certificate
6459   chains, to avoid denial of service attacks. Also added 
6460   gnutls_certificate_set_verify_limits() to override them.
6461   Issue pointed out by Patrik Hornik <patrik@hornik.sk>.
6462 - Added gnutls_certificate_verify_peers2().
6464 * Version 1.1.11 (2004-07-16)
6465 - Added the '_t' suffix to all exported symbols.
6466 - Fixed bug in RSA encryption, report and patch by Martijn Koster 
6467   <mak@greenhills.co.uk>.
6468 - Corrected a bug in certificate verification. Pointed out by
6469   Yoann Vandoorselaere <yoann@prelude-ids.org>
6470 - Added the GNUTLS_VERIFY_DO_NOT_ALLOW_SAME flags to the
6471   verification functions.
6472 - The ephemeral DH and RSA parameters are no longer stored in the
6473   session resume DB.
6474 - Do not free the SRP (prime and generator) parameters obtained from the 
6475   callback if they are the static ones defined in extra.h
6476 - Eliminated some memory leaks. Reported by Yoann Vandoorselaere.
6478 * Version 1.1.10 (2004-06-12)
6479 - Added gnutls_sign_algorithm_get_name() and gnutls_pk_algorithm_get_name()
6480 - Corrected bug in TLS renegotiation.
6481 - Corrected bug in OpenPGP key loading using a callback.
6482 - gnutls-srpcrypt was renamed to srptool
6483 - Allow handshake requests by the client.
6484 - Automatically disable certificate types that do not have corresponding
6485   certificates.
6486 - Added gnutls_auth_client_get_type() and gnutls_auth_server_get_type()
6487 - Opencdk library is being included if not found.
6488 - certtool can now add ip address SAN extension.
6489 - certtool has now support for more X.520 DN attribute types.
6490 - Better handling of EOF in gnutls_record_recv().
6491 - _gnutls_deinit() is no longer used. Sessions are not
6492   automatically removed any more, on abnormal termination.
6493 - Corrected session resuming in SRP ciphersuites.
6494 - Updated to conform to the latest srp draft (draft-ietf-tls-srp-07)
6495 - Added new functions to allow access to the ephemeral
6496   Diffie Hellman parameters.
6497 - Added the functions gnutls_x509_crt_get_pk_rsa_raw() and
6498   gnutls_x509_crt_get_pk_dsa_raw() to retrieve parameters from certificates.
6499 - Added the functions gnutls_dh_get_group(), gnutls_dh_get_pubkey() and
6500   gnutls_rsa_export_get_pubkey() to retrieve parameters of the DH or
6501   RSA-EXPORT key exchange.
6502 - Some fixes in the session resuming code.
6503 - Added gnutls_openpgp_keyring_check_id().
6505 * Version 1.1.9 (2004-04-14)
6506 - Added support for authority key identifier and the extended key usage
6507   X.509 extension fields. The certtoool was updated to support them.
6508 - The RC2 cipher is no more included. The one in libgcrypt is now used.
6509 - Added batch support to certtool. Now it can use templates.
6511 * Version 1.1.8 (2004-04-07)
6512 - Implemented all the tests for the SRP group parameters in
6513   client side. This may lead to incompatibility with very
6514   old gnutls servers.
6515 - Corrected bug in RSA parameters handling which could cause
6516   unexpected crashes.
6517 - Optimized the copying of rsa_params.
6519 * Version 1.1.7 (2004-03-29)
6520 - Added gnutls_certificate_set_params_function() and 
6521   gnutls_anon_set_params_function() that set the RSA or DH
6522   parameters using a callback.
6523 - Added functions gnutls_rsa_params_cpy(), gnutls_dh_params_cpy()
6524   and gnutls_x509_privkey_cpy().
6525 - Corrected a compilation issue when opencdk was installed in a
6526   non standard directory.
6527 - Deprecated: gnutls_srp_server_set_select_function(), 
6528   gnutls_certificate_client_set_select_function(), gnutls_srp_server_set_select_function().
6530 * Version 1.1.6 (2004-02-24)
6531 - Several bug fixes, by Arne Thomassen.
6532 - Fixed a bug where 'server name' extension was always sent.
6534 * Version 1.1.5 (2004-01-06)
6535 - Added the gnutls_sign_algorithm type.
6537 * Version 1.1.4 (2004-01-04)
6538 - Improved gnutls-cli's SRP behaviour in SRP ciphersuites.
6539   If they are of highest priority then the abbreviated handshake
6540   is used.
6541 - Removed all references of missing files.
6542 - Changed handshake behaviour to send the lowest TLS version
6543   when an unsupported version was advertized. The current behaviour
6544   is to send the maximum version we support.
6545 - Corrected problem printing the DC attributes in a DN.
6547 * Version 1.1.3 (2003-12-30)
6548 - Implemented TLS 1.1 (and also obsoleted the TLS 1.0 CBC protection
6549   hack).
6551 * Version 1.1.2 (2003-12-28)
6552 - Added CRL verification functionality to certtool.
6553 - Corrected the CRL distribution point extension handling.
6555 * Version 1.1.1 (2003-12-26)
6556 - Added PKCS #7 support to certtool utility.
6557 - Added support for reading and generating CRL distribution
6558   points extensions in certificates.
6559 - Added support for generating CRLs in the library and the
6560   certtool utility.
6561 - Added support for the Subject Key ID PKIX extension.
6563 * Version 1.1.0 (2003-12-21)
6564 - The error codes GNUTLS_E_NO_TEMPORARY_DH_PARAMS and GNUTLS_E_NO_TEMPORARY_RSA_PARAMS
6565   are no longer returned by the handshake function. Ciphersuites that
6566   require temporary parameters are removed when such parameters do not exist.
6567 - Added the callbacks gnutls_certificate_client_retrieve_function() and
6568   gnutls_certificate_server_retrieve_function(), to allow a client or a server
6569   to specify certificates for the handshake without storing them to the
6570   credentials structure.
6571 - Added support for generating and exporting DSA private keys.
6572 - Added gnutls_x509_crt_set_key_usage() and certtool can now set the
6573   certificate's key usage.
6574 - Added gnutls_openpgp_key_get_key_usage().
6576 * Version 1.0.25 (2005-04-27)
6577 - Corrected bug in record packet parsing that could lead
6578   to a denial of service attack.
6579 - Corrected bug in RSA key export.
6581 * Version 1.0.24 (2005-01-18)
6582 - Corrected several bugs found by Marcin Garski <mgarski@post.pl>
6584 * Version 1.0.23 (2004-11-13)
6585 - Replace GNU LD version script with Libtool -export-symbols-regex,
6586   from Joe Orton <joe@manyfish.co.uk>.
6587 - Copy libtasn1 has been updated to version 0.2.11.
6588 - Corrected the write of CRL distribution points.
6589 - It is now possible to generate PKCS#12 structures without private
6590   keys using "certtool --to-p12", suggested by Fabian Fagerholm
6591   <fabbe@paniq.net>.
6593 * Version 1.0.22 (2004-10-28)
6594 - Print DN of certificates with unknown characters in them, but in hexform
6595   only.
6596 - Corrected bug in _gnutls_x509_get_dn_oid(), and returns the
6597   actual OID.
6598 - Added second precision to the X.509 parsing functions.
6599 - Add parameter --la-file to libgnutls-config and libgnutls-extra-config,
6600   tiny patch contributed by Joe Orton <joe@manyfish.co.uk>.
6601 - Add pkg-config meta files, suggested by Stéphane LOEUILLET
6602   <stephane.loeuillet@tiscali.fr>.
6603 - Fix memory initializaion bug in gnutls_certificate_set_x509_trust,
6604   tiny patch by Aleix Conchillo Flaque <aleix@member.fsf.org>.
6605 - Fix certtool --password for PKCS #12, back ported from 1.1.x branch.
6606 - Fix library order in libgnutls*-config --libs output, to permit
6607   static linking, reported by Yoann Vandoorselaere
6608   <yoann@prelude-ids.org>.
6610 * Version 1.0.21 (2004-10-07)
6611 - Fix memory leak in gnutls_certificate_verify_peers and
6612   gnutls_certificate_free_credentials, report and patch by Simon
6613   Posnjak <simon.posnjak@cetrtapot.si>.
6614 - Fix crash in `certtool --to-p12 --load-privkey foo', i.e. exporting
6615   a key and no certificate to PKCS#12.
6616 - Fix objdir != srcdir builds, reported by "Gerrit P. Haase"
6617   <gp@familiehaase.de>.
6618 - Avoid redefining getpass if system already has it, reported by
6619   Yoann Vandoorselaere <yoann@prelude-ids.org>.
6620 - Add new example "ex-rfc2818" for certificate verification, from Nikos.
6621 - Known bug: the library require snprintf.
6623 * Version 1.0.20 (2004-08-18)
6624 - Bug fix of padding string in RSA PKCS#1 v1.5 type 2 encryption,
6625   reported by Robey Pointer <robey@danger.com>.
6627 * Version 1.0.19 (2004-08-09)
6628 - Bug fix of test suite.
6630 * Version 1.0.18 (2004-08-05)
6631 - Added simple self test suite.
6633 * Version 1.0.17 (2004-08-02)
6634 - Updated the SRP authentication to conform to the
6635   latest (yet unreleased) draft. Unfortunately this breaks
6636   compatibility with previous versions.
6637 - Changed the makefiles to be more portable.
6638 - Added some default limits in the verification of certificate
6639   chains, to avoid denial of service attacks. Also added 
6640   gnutls_certificate_set_verify_limits() to override them.
6641   Issue pointed out by Patrik Hornik <patrik@hornik.sk>.
6642 - Added gnutls_certificate_verify_peers2().
6644 * Version 1.0.16 (2004-07-10)
6645 - Do not free the SRP (prime and generator) parameters obtained from the 
6646   callback if they are the static ones defined in extra.h.
6647 - Eliminated some memory leaks. Reported by Yoann Vandoorselaere.
6648 - Some fixes in the makefiles.
6650 * Version 1.0.15 (2004-06-29)
6651 - Fixed bug in RSA encryption, report and patch by Martijn Koster 
6652   <mak@greenhills.co.uk>.
6653 - Corrected a bug in certificate verification. Pointed out by
6654   Yoann Vandoorselaere <yoann@prelude-ids.org>.
6656 * Version 1.0.14 (2004-06-12)
6657 - Automatically disable certificate types that do not have corresponding
6658   certificates.
6659 - Updates in the documentation.
6660 - certtool can now add ip address SAN extension.
6661 - certtool has now support for more X.520 DN attribute types.
6662 - Opencdk library is being included if not found.
6663 - Added gnutls_openpgp_keyring_check_id().
6664 - Corrected a serious bug in the included libtasn1 library.
6665 - Corrected session resuming in SRP ciphersuites.
6666 - Updated to conform to the latest srp draft (draft-ietf-tls-srp-07)
6667 - Added the functions gnutls_x509_crt_get_pk_rsa_raw() and
6668   gnutls_x509_crt_get_pk_dsa_raw() to retrieve parameters from certificates.
6669 - Some fixes in the session resuming code.
6671 * Version 1.0.13 (2004-04-29)
6672 - Some complilation fixes.
6673 - Added the --xml parameter to the certtool utility.
6675 * Version 1.0.12 (2004-04-23)
6676 - Corrected bug in OpenPGP key loading using a callback.
6677 - Renamed gnutls-srpcrypt to srptool
6678 - Allow handshake requests by the client.
6679 * Things backported from the development branch:
6680 - Added support for authority key identifier and the extended key usage
6681   X.509 extension fields. The certtoool was updated to support them.
6682 - Added batch support to certtool. Now it can use templates.
6683 - The RC2 cipher is no more included. The one in libgcrypt is now used.
6685 * Version 1.0.11 (2004-04-17)
6686 - Added gnutls_sign_algorithm_get_name() and gnutls_pk_algorithm_get_name()
6687 - Corrected bug in TLS renegotiation.
6689 * Version 1.0.10 (2004-04-03)
6690 - Corrected bug in RSA parameters handling which could cause
6691   unexpected crashes.
6692 - Corrected bug in SSL 3.0 authentication.
6694 * Version 1.0.9 (2004-03-29)
6695 - Added gnutls_certificate_set_params_function() and 
6696   gnutls_anon_set_params_function() that set the RSA or DH
6697   parameters using a callback.
6698 - Added functions gnutls_rsa_params_cpy(), gnutls_dh_params_cpy()
6699   and gnutls_x509_privkey_cpy().
6700 - Corrected a compilation issue when opencdk was installed in a
6701   non standard directory.
6702 - Documented the changes need in multi-threaded application due
6703   to the new libgcrypt.
6705 * Version 1.0.8 (2004-02-28)
6706 - Corrected bug in mutual certificate authentication in SSL 3.0.
6708 * Version 1.0.7 (2004-02-25)
6709 - Implemented TLS 1.1 (and also obsoleted the TLS 1.0 CBC protection
6710   hack).
6711 - Some updates in the documentation.
6713 * Version 1.0.6 (2004-02-12)
6714 * Backported things from the development branch (while maintaining
6715   backwards compatibility):
6716 - Improved gnutls-cli's SRP behaviour in SRP ciphersuites.
6717   If they are of highest priority then the abbreviated handshake
6718   is used.
6719 - The error codes GNUTLS_E_NO_TEMPORARY_DH_PARAMS and GNUTLS_E_NO_TEMPORARY_RSA_PARAMS
6720   are no longer returned by the handshake function. Ciphersuites that
6721   require temporary parameters are removed when such parameters do not exist.
6722 - Added the callbacks gnutls_certificate_client_retrieve_function() and
6723   gnutls_certificate_server_retrieve_function(), to allow a client or a server
6724   to specify certificates for the handshake without storing them to the
6725   credentials structure.
6726 - Added support for generating and exporting DSA private keys.
6728 * Version 1.0.5 (2004-02-11)
6729 - Fixed a bug where 'server name' extension was always sent.
6730 * Backported things from the development branch:
6731 - Added CRL verification functionality to certtool.
6732 - Corrected the CRL distribution point extension handling.
6733 - Added PKCS #7 support to certtool utility.
6734 - Added support for reading and generating CRL distribution
6735   points extensions in certificates.
6736 - Added support for generating CRLs in the library and the
6737   certtool utility.
6738 - Added support for the Subject Key ID PKIX extension.
6739 - Added the gnutls_sign_algorithm type.
6741 * Version 1.0.4 (2004-01-04)
6742 - Changed handshake behaviour to send the lowest TLS version
6743   when an unsupported version was advertized. The current behaviour
6744   is to send the maximum version we support.
6745 - certtool no longer asks the password in unencrypted private
6746   keys.
6747 - The source is now compiled to use the reentrant libc functions.
6749 * Version 1.0.3 (2003-12-21)
6750 - Corrected bug in gnutls_bye() which made it return an error code
6751   of INVALID_REQUEST instead of success.
6752 - Corrected a bug in the GNUTLS_KEY key usage definitions.
6754 * Version 1.0.2 (2003-12-18)
6755 - Corrected a bug in the RSA key generation. This was
6756   generating unusable RSA keys.
6758 * Version 1.0.1 (2003-12-10)
6759 - Some minor fixes in the makefiles. They now include CFLAGS
6760   from libgcrypt or opencdk if installed in a non standard directory.
6761 - Fixed the SRP detection test in gnutls-cli-debug.
6762 - Added gnutls_rsa_params_export_pkcs1() and gnutls_rsa_params_import_pkcs1().
6764 * Version 1.0.0 (2003-12-04)
6765 - Exported the static SRP group parameters.
6766 - Some fixes in the certificate authenticated SRP ciphersuites.
6767 - Improved the support for draft-ietf-tls-srp-05. The two-phase
6768   handshake is now fully supported without any interaction with
6769   the application layer (except for a callback).
6771 * Version 0.9.99 (2003-11-28)
6772 - Some fixes in the gnutls.h header for the gnutls_server_name_set()
6773   and gnutls_server_name_get() prototypes.
6774 - Exported the gnutls_x509_privkey_sign_data(), gnutls_x509_privkey_verify_data() 
6775   and gnutls_x509_crt_verify_data().
6776 - Some fixes in the openpgp authentication.
6777 - Removed the Twofish cipher.
6779 * Version 0.9.98 (2003-11-16)
6780 - The openssl compatibility layer was moved to gnutls-openssl
6781   library instead of being included in the gnutls-extra library.
6782 - Added the RIPEMD ciphersuites defined in draft-ietf-tls-openpgp-keys-04.
6783 - Building with openpgp support is now mandatory.
6784 - gnutls4 compatibility header is no longer included by default in
6785   gnutls.h.
6786 - gnutls8 function usage yelds a deprecation warning in gcc3.
6787 - gnutls_x509_*_set_dn_by_oid() and gnutls_x509_*_get_*_dn_by_oid()
6788   functions have a raw_flag parameter added.
6789 - Added gnutls_x509_*_get_dn_oid() and gnutls_x509_crt_get_extension_oid()
6790   functions which return the available OIDs.
6792 * Version 0.9.97 (2003-11-11)
6793 - The certtool utility can now generate PKCS #12 structures
6794   without specifying a certificate.
6795 - Added capability to read CRLs to certtool.
6796 - Corrected some functions which return GNUTLS_E_SHORT_MEMORY_BUFFER
6797   to properly set the required buffer size.
6798 - Corrected a bug in libgcrypt detection.
6800 * Version 0.9.96 (2003-11-09)
6801 - Some changes to allow compilation with mingw32.
6802 - Several code cleanups.
6804 * Version 0.9.95 (2003-11-02)
6805 - Improved the verification functions. Added new verification
6806   output flags and removed the unused and redundant ones.
6807 - Improved the OpenPGP key support.
6808 - The prime utility was removed, and its functionality was moved
6809   to certtool.
6811 * Version 0.9.94 (2003-10-30)
6812 - Added manpages for the included programs.
6813 - Documented and improved the certtool utility. 
6814 - Added PKCS #12 support to certtool utility.
6816 * Version 0.9.93 (2003-10-26)
6817 - Corrected some compilation issues.
6818 - Improved the certtool command line utility.
6820 * Version 0.9.92 (2003-10-25)
6821 - The RFC2818 hostname verification is now case insensitive.
6822 - Added support for generating X.509 certificates.
6823 - Added the certtool, a tool for generating X.509 certificates
6825 * Version 0.9.91 (2003-10-17)
6826 - Fixed a compilation issue in the openpgp authentication part.
6828 * Version 0.9.90 (2003-10-08)
6829 - Updated the openpgp key API (depends on the unreleased new
6830   opencdk).
6832 * Version 0.9.8 (2003-10-02)
6833 - Updated the SRP implementation to follow the latest draft
6834   (draft-ietf-tls-srp-05).
6835 - Improved the gnutls-cli behaviour in error handling,
6836   and added a check for the peer's hostname.
6837 - Use versioned symbols in the library (where available).
6838 - RIJNDAEL ciphersuites were renamed to AES.
6840 * Version 0.9.7 (2003-08-25)
6841 - The tex files are now included in the distribution.
6842 - The library can now decrypt PKCS #12 files encrypted with
6843   the RC2-40 cipher.
6844 - The missing rfc2818_hostname object is now included.
6845 - Several corrections and bug fixes in the library by 
6846   Arne Thomassen <arne@arne-thomassen.de>.
6847 - CR is now allowed in the base64 decoder.
6849 * Version 0.9.6 (2003-06-28)
6850 - Added gnutls_x509_privkey_get_key_id() and gnutls_x509_crt_get_key_id()
6851   functions which return a unique (per public key) ID. These can
6852   be used to check if the private key corresponds to a given certificate.
6853 - Corrections in the TLS layer openpgp certificate packet parser.
6854 - Corrected a bug in the record layer buffering, which affected
6855   the case where external pull function was used. Report and patch
6856   by Sergey Poznyakoff <gray@Mirddin.farlep.net>.
6857 - Corrected a bug in gnutls-srpcrypt where a non allocated variable
6858   was freed.
6859 - SRP programs are now built by default.
6860 - Added API to read and write to PKCS #12 structures. Prototypes
6861   in gnutls/pkcs12.h.
6862 - The gnutls_transport_ptr type was changed to a pointer type (void*).
6864 * Version 0.9.5 (2003-04-06)
6865 - Several improvements in the PKCS #7 handling
6866 - Eliminated several hard coded constants in MPI parameters.
6868 * Version 0.9.4 (2003-03-28)
6869 - Corrected a parsing error in the Certificate request message.
6870 - Corrected behaviour when a certificate request message is received.
6871   Now a certificate packet is always sent, and in SSL 3.0 cipher suites
6872   a no_certificate alert is sent instead.
6873 - Added functionality to generate PKCS #7 structures (with certificates).
6875 * Version 0.9.3 (2003-03-24)
6876 - Support for MD2 was dropped. 
6877 - Improved the error logging functions, by adding a level, and
6878   by allowing debugging messages just by increasing the level.
6879 - The diffie Hellman ciphersuites are now of higher priority than
6880   the plain RSA.
6881 - The RSA premaster secret version check can no longer be disabled.
6882 - Implemented the counter measure discussed in the paper "Attacking
6883   RSA-based Sessions in SSL/TLS", against the attack described in the
6884   same paper.
6885 - Added the functions: gnutls_handshake_get_last_in(), 
6886   gnutls_handshake_get_last_out().
6887 - The gnutls_certificate_set_rsa_params() was renamed to 
6888   gnutls_certificate_set_rsa_export_params().
6889 - Added the new functions: gnutls_certificate_set_x509_key()
6890   gnutls_certificate_set_x509_trust(), gnutls_certificate_set_x509_crl(),
6891   gnutls_x509_crt_export(), gnutls_x509_crl_export().
6892 - Added support for encoding and decoding PKCS #8 2.0 encrypted 
6893   RSA private keys.
6895 * Version 0.9.2 (2003-03-15)
6896 - Some corrections in the memory mapping code (file is unmapped after 
6897   it is read).
6898 - Added support for PKCS#10 certificate requests generation.
6900 * Version 0.9.1 (2003-03-12)
6901 - Corrected a bug in 64 bit architectures, which affected the
6902   serial number calculation in the record layer.
6903 - Added gnutls_certificate_free_keys() which deletes all the
6904   private keys and certificates from the credentials structure.
6905 - Corrected a broken buffer check in _gnutls_io_read_buffered(),
6906   which caused some unexpected packet length errors. Report and patch
6907   by Ian Peters <itp@ximian.com>.
6908 - Added ability to generate RSA keys.
6909 - Increased the maximum parameter size in order to read some large keys
6910   by some CAs. Patch by Ian Peters <itp@ximian.com>.
6911 - Added an strnstr() function and the requirement in some functions to
6912   use null terminated PEM structures is no more.
6913 - Use mmap() if available to read files.
6914 - Fixed a memory leak in SRP code reported by Rupert Kittinger 
6915   <r.kittinger@efkon.com>.
6917 * Version 0.9.0 (2003-03-03)
6918 - This version is not binary compatible with the previous ones.
6919 - The library notifies the application on empty and illegal SRP usernames, 
6920   so that proper notification (via an alert) is sent to the peer.
6921 - Added ability to send some messages back to the application using
6922   the gnutls_global_set_log_function().
6923 - gnutls_dh_params_generate() and gnutls_rsa_params_generate() now use 
6924   gnutls_malloc() to allocate the output parameters.
6925 - Added support for MD2 algorithm in certificate signature verification.
6926 - The RSA and DH parameter generation interface was changed. Added
6927   ability to import and export from and to PKCS3 structures. This 
6928   was needed to read parameters generated using the openssl dhparam tool.
6929 - Several changes in the temporary (DH/RSA) parameter codebase. No DH 
6930   parameters are now included in the library. Also the credentials structure 
6931   can now hold only one temporary parameter of a kind.
6932 - Added a new Certificate, CRL, Private key and PKCS7 structures handling 
6933   API, defined in gnutls/x509.h
6934 - Added gnutls_certificate_set_verify_flags() function to allow setting the 
6935   verification flags in the credentials structure. They will be used in the
6936   *verify_peers functions.
6937 - Added protection against the new TLS 1.0 record layer timing attack.
6938 - Added support for Certificate revocation lists. Functions defined
6939   in gnutls/x509.h
6940 - The only functions that were removed are:
6941   gnutls_x509_certificate_to_xml()
6942   gnutls_x509_extract_dn_string()
6943 - Ported to libtasn1 0.2.x
6945 * Version 0.8.1 (2003-01-22)
6946 - Improved the SRP support, to prevent attackers guessing the
6947   available usernames by brute force.
6948 - Improved the SRP detection in gnutls-cli-debug
6949 - Some fixes which now allow compilation.
6951 * Version 0.8.0 (2003-01-20)
6952 - Added gnutls_x509_extract_dn_string() which returns a 
6953   distinguished name in a single string.
6954 - Added gnutls_openpgp_extract_key_name_string() which returns
6955   an openpgp user ID in a single string.
6956 - Added gnutls_x509_extract_certificate_ca_status() which returns
6957   the CA status of the given certificate.
6958 - Added SRP-6 support. Follows draft-ietf-tls-srp-04.
6959 - If libtasn1 is not present in the system, it is included in 
6960   the main gnutls library.
6961 - If liblzo is present in the system, then the included minilzo
6962   will not be used, and libgnutls-extra will depend on liblzo.
6963 - GNUTLS_E_PARSING_ERROR error code was replaced by GNUTLS_E_BASE64_DECODING_ERROR, 
6964   and GNUTLS_E_SRP_PWD_PARSING_ERROR. GNUTLS_E_ASCII_ARMOR_ERROR was also 
6965   replaced by GNUTLS_E_BASE64_DECODING_ERROR.
6967 * Version 0.6.0 (2002-12-08)
6968 - Added "gnutls/compat4.h" header. This is included in gnutls.h
6969   to emulate the old 0.4.x API.
6970 - Example programs are now stored in doc/examples/
6971 - Several improvements and updates in the documentation.
6972 - Added the certificate authenticated SRP cipher suites.
6973 - gnutls_x509_extract_certificate_dn_string() was updated to return
6974   an RFC2253 conforming string.
6975 - Added the SRP related functions:
6976    gnutls_srp_verifier()
6977    gnutls_srp_base64_encode()
6978    gnutls_srp_base64_decode()
6979 - Added the function gnutls_srp_set_server_credentials_function()
6980   to allow retrieving SRP parameters from an external backend - other
6981   than password files.
6982 - Added the function gnutls_openpgp_set_recv_key_function()
6983   which can be used to set a callback, to get OpenPGP keys.
6984 - Exported the functions:
6985    gnutls_malloc()
6986    gnutls_free()
6987   which should be used by callback functions.
6988 - Changed the semantics of gnutls_pem_base64_encode_alloc()
6989   and gnutls_pem_base64_decode_alloc(). In the default case
6990   were the gnutls library is used with malloc/realloc/free,
6991   these are binary compatible.
6993 * Version 0.5.11 (2002-11-05)
6994 - Some fixes in 'gnutls-cli' client program to prevent some segmentation 
6995   faults at exit.
6996 - Example programs found in the documentation can now be generated by
6997   running "make examples" in doc/tex directory.
6998 - Added more descriptive error strings, to gnutls_strerror().
6999 - Documented error codes, and the function reference list is now sorted.
7000 - Optimized buffering code.
7001 - gnutls_x509_extract_certificate_dn_string() was rewritten.
7002 - Added GNUTLS_E_SHORT_MEMORY_BUFFER error code, which is returned in the
7003   case where the memory buffer provided is not long enough.
7004 - Depends on the new OpenCDK 0.3.2.
7006 * Version 0.5.10 (2002-10-13)
7007 - Updated documentation.
7008 - Added server name extension. This allows clients to specify the
7009   name of the server they connect to. Useful to HTTPS.
7010 - Several corrections in the code base, mostly in signed/unsigned,
7011   checkings.
7013 * Version 0.5.9 (2002-10-10)
7014 - Corrected some code which worked fine in gcc 3.2, but not with any
7015   other compiler.
7016 - Updated 'gnutls-cli' with the '--starttls' option, to allow testing
7017   starttls implementations.
7018 - Added gnutls_x509_extract_key_pk_algorithm() function which extracts
7019   the private key type, of a DER encoded key.
7020 - Added gnutls_x509_extract_certificate_dn_string() which returns the 
7021   certificate's distinguished name in a single string.
7022 - Added gnutls_set_default_priority() and gnutls_set_default_export_priority()
7023   functions, to avoid calling all the *_priority() functions if the defaults
7024   are acceptable.
7025 - Added int gnutls_x509_check_certificates_hostname() which check whether
7026   the given hostname matches the owner of the given X.509 certificate.
7028 * Version 0.5.8 (2002-09-25)
7029 - Updated documentation.
7030 - Added gnutls_record_get_direction() which replaces the obsolete
7031   gnutls_handshake_get_direction().
7032 - Added function to convert error codes to alert descriptions
7033 - Added LZO compression
7035 * Version 0.5.7 (2002-09-11)
7036 - Some fixes in the memory allocation functions (realloc).
7037 - Improved the string functions used in XML certificate generation.
7038 - Removed dependency on libgdbm.
7039 - Corrected bug in gnutls_dh_params_set() which affected
7040   gnutls_dh_params_deinit().
7041 - Corrected bug in session resuming code in server side.
7043 * Version 0.5.6 (2002-09-06)
7044 - Corrected bugs in SRP implementation, which prevented gnutls 
7045   to interoperate with other implementations. (interoperability testing
7046   was done by David Taylor)
7047 - Corrected bug in cert_type extension.
7048 - Corrected extension type checks which used an 8 bit extension size,
7049   instead of 16 bits.
7050 - Added versioning in the XML output of certificate functions.
7051 - Removed the X.509 test suite.
7053 * Version 0.5.5 (2002-09-03)
7054 - Updated the SRP implementation to the latest draft. The blowfish
7055   crypt implementation was removed, since the new draft does not allow
7056   other hash algorithms except for the srpsha. 
7057 - Renamed all the constructed types in order to have more consistent
7058   names. 
7059 - Improved the certificate and key read functions. Now they can read 
7060   the certificate and the private key from the same file.
7061 - Updated and corrected documentation.
7063 * Version 0.5.4 (2002-08-27)
7064 - Fixes in TLS 1.0 PRF and SSL3 random functions.
7065 - gnutls_handshake_set_exportable_detection() was obsoleted.
7066 - Added gnutls_openpgp_extract_key_id() which returns the key ID.
7067 - Corrected bug in DHE key exchange
7068 - Added support for temporary RSA keys which are needed for the
7069   export cipher suites.
7070 - Added the TLS_RSA_EXPORT_ARCFOUR_40_MD5 ciphersuite.
7072 * Version 0.5.3 (2002-08-23)
7073 - No changes. Replaces the tarball of 0.5.2 which accidentally contained
7074   code from the unstable branch.
7076 * Version 0.5.2 (2002-08-22)
7077 - Added an error code that is returned in clients which connect
7078   to export only servers. This must be enabled using the
7079   gnutls_handshake_set_exportable_detection() function.
7080 - Updated openssl compatibility layer.
7081 - Added gnutls_handshake_get_direction() function which returns
7082   the state of the handshake when interrupted.
7084 * Version 0.5.1 (2002-07-17)
7085 - Corrected the m4 macros which used <gnutls.h> instead of
7086   <gnutls/gnutls.h>
7087 - Documentation fixes
7088 - Added gnutls_transport_set_ptr2() function, which accepts two
7089   different pointers, to be used while receiving, and 
7090   while sending data.
7091 - Semantic changes in gnutls_record_set_max_size(). The requested
7092   size is now immediately enforced at the output buffers.
7093 - gnutls_global_init_extra() now fails if the library versions do
7094   not match.
7095 - Fixes in client and server example programs. Null encryption can
7096   be used in these programs, to assist in debuging.
7097 - Fixes in zlib compression code.
7099 * Version 0.5.0 (2002-07-06)
7100 - Added X.509 certificate tests in tests/ directory
7101 - Removed stubs for SRP and Anonymous authentication. They served
7102   no purpose since they are always included, unless it was requested
7103   not to do so.
7104 - Added gnutls_handshake_set_private_extensions() function. This
7105   function can be used to enable private (gnutls specific) cipher suites
7106   and compression algorithms.
7107 - Added check for C99 macro support by the compiler.
7108 - Added functions gnutls_b64_encode_fmt2() and gnutls_b64_decode_fmt2()
7109 - Added the new libtasn1 library.
7110 - Removed the gdbm backend. Applications are now responsible for the
7111   session resuming backend. The gnutls-serv application contains an
7112   simple example on how to use gdbm for resuming.
7113 - Headers for the gnutls library are now installed in $(includedir)/gnutls
7114 - Added an OpenSSL compatible interface (with some limitations).
7115 - Added functions to convert DER encoded certificates to XML format.
7117 * Version 0.4.4 (2002-06-24)
7118 - Corrected bug in PKCS-1 RSA encryption which prevented gnutls to encrypt
7119   using keys of some specific size.
7121 * Version 0.4.3 (2002-05-23)
7122 - The gnutls-extra library now compiles fine, if the opencdk library is
7123   not present.
7124 - Several bug fixes.
7125 - Added gnutls_global_set_mem_func() function, to set the memory allocation
7126   functions, if other than the defaults are to be used.
7127 - The default memory allocation functions are now the ones in libc.
7129 * Version 0.4.2 (2002-05-21)
7130 - Separated ASN.1 structures parser documentation and TLS library
7131   documentation.
7132 - Added gnutls_handshake_set_rsa_pms() function, which disables the
7133   version check in RSA premaster secret.
7134 - Added gnutls_session_is_resumed() function, which reports if a session
7135   is a resumed one.
7136 - Added gnutls_state_set_ptr() and gnutls_state_get_ptr() functions, to
7137   assist in callback functions.
7138 - Replaced the included 1024 bit prime for Diffie Hellman, with a new
7139   random one.
7140 - Relicensed the library under the GNU Lesser General Public License
7141 - Added gnutls-extra library which contains the GPL covered code of gnutls.
7143 * Version 0.4.1 (2002-04-07)
7144 - Now uses alloca() for temporary variables
7145 - Optimized RSA signing
7146 - Added functions to return the peer's certificate activation and
7147   expiration time.
7148 - Corrected time function's behaviour (the time value returned no longer
7149   relate to local timezone).
7151 * Version 0.4.0 (2002-04-01)
7152 - Added support for RFC2630 (PKCS7) X.509 certificate sets
7153 - Added new functions: gnutls_x509_extract_certificate_pk_algorithm(),
7154   gnutls_openpgp_extract_key_pk_algorithm().
7155 - Several optimizations in the Handshake protocol
7156 - Several optimizations in RSA algorithm
7157 - Unified the return values because of small buffers.
7159 * Version 0.3.92 (2002-03-23)
7160 - Updated documentation
7161 - Combined error codes of ASN.1 parser and gnutls
7162 - Removed GNUTLS_CERT_TRUSTED from the CertificateStatus enumeration
7163 - Added protection against CBC chosen plaintext attack (disabled by default)
7164 - Improved and optimized compression support
7166 * Version 0.3.91 (2002-03-03)
7167 - Added gnutls-cli-debug program
7168 - Corrections in session resumption
7169 - Rehandshake can now handle negotiation of different authentication
7170   type.
7171 - gnutls-cli, gnutls-serv, gnutls-srpcrypt and gnutls-cli-debug are 
7172   now being installed.
7174 * Version 0.3.90 (2002-02-24)
7175 - Handshake messages are not kept in memory any more. Now we use 
7176   less memory during a handshake
7177 - Added support for certificates with DSA parameters
7178 - Added DHE_DSS cipher suites
7179 - Key exchange methods changed so they do not depend on the 
7180   certificate type. Added certificate type negotiation TLS extension.
7181 - Added openpgp key support (EXPERIMENTAL)
7182 - Improved Diffie Hellman key exchange support.
7183 - Bug fixes in the RSA key exchange.
7184 - Added check for the requested TLS extensions
7185 - TLS extensions now use a 16 bit type field.
7186 - Added a minimal string library to assist in ASN.1 parsing
7187 - Changes in ASN.1 parser to work with the new bison
7188 - Added gnutls_x509_extract_subject_alt_name(), which deprecates 
7189   gnutls_x509_extract_subject_dns_name()
7190 - gnutls_x509_set_trust_(file/mem) can now be called multiple times
7191 - gnutls_srp_server_set_cred_file() can now be called multiple times
7193 * Version 0.3.5 (2002-01-25)
7194 - Corrected the RSA key exchange method, to avoid attacks against
7195   PKCS-1 formating.
7197 * Version 0.3.4 (2002-01-20)
7198 - Corrected bugs in DHE_RSA key exchange method
7200 * Version 0.3.3 (2002-01-19)
7201 - Added gnutls_x509pki_verify_certificate()
7202 - Added gnutls_x509pki_set_trust_mem() and gnutls_x509pki_set_key_mem()
7203 - Bug fixes in srpcrypt (based on patch by Marc Huber)
7204 - Bug fixes in the Handshake protocol (based on patch by Guillaume Morin)
7205 - Corrected library versioning
7207 * Version 0.3.2 (2002-01-05)
7208 - Corrected bug which did not allow a client to accept multiple CA names
7209 - Added gnutls_fingerprint()
7210 - Added gnutls_x509pki_extract_certificate_serial()
7211 - Added gnutls_b64_encode_fmt() and gnutls_b64_decode_fmt()
7212 - Corrected behaviour in version advertizing
7213 - Updated documentation
7214 - Prefixed all types in gnutls.h with 'GNUTLS_' to avoid namespace collisions
7216 * Version 0.3.1 (2001-12-21)
7217 - Corrections in the configuration files
7218 - Fixes a bug in anonymous authentication
7220 * Version 0.3.0 (2001-12-17)
7221 - Corrected bug in new integer formatting (now we use the old format again)
7222 - Several corrections and usual cleanups
7224 * Version 0.2.91 (2001-12-10)
7225 - Fixes in MPI handling (fixes possible bug with signed integers)
7226 - Removed name indication extension
7227 - Added gnutls_transport_get_ptr() and gnutls_db_get_ptr()
7228 - Optimizations in server certificate callback.
7229 - Fixes in anonymous authentication
7230 - Corrections in client ciphersuite selection
7232 * Version 0.2.90 (2001-12-07)
7233 - gnutls_handshake(), gnutls_read() etc. functions no longer require
7234   the 'SOCKET cd' argument. This argument is set using the function
7235   gnutls_set_transport_ptr().
7236 - introduced gnutls_x509pki_get_peer_certificate_list(). This function returns
7237   a list containing peer's certificate and issuers DER encoded.
7238 - Updated X.509 certificate handling API
7239 - Added callback to select the server certificate
7240 - More consistent function naming (changes in several function names)
7241 - Buffer overflow checking in ASN.1 structures parser
7242 - Updated documentation
7244 * Version 0.2.11 (2001-11-16)
7245 - Changed the meaning of GNUTLS_E_REHANDSHAKE value. If this value
7246   is returned, then the caller should perform a handshake or send
7247   an alert to the peer.
7248 - Made receive buffer dynamic. Normally if no large chunks are received
7249   it occupies less space.
7250 - Added max_record_size extension
7251 - Bugfixes in session handling
7252 - Improved non blocking IO support in the Handshake Protocol
7253 - Usual bugfixes and cleanups
7254 - Documentation updated (includes ASN.1 documentation)
7256 * Version 0.2.10 (2001-11-05)
7257 - Corrected bugs and improved non blocking IO
7258 - Added hooks to use external database to store sessions
7259 - Usual cleanups
7261 * Version 0.2.9 (2001-10-27)
7262 - AUTH_INFO types and structures were moved to library internals
7263 - AUTH_FAILED is no longer returned in SRP authentication
7264   (any fatal error in SRP means auth failed)
7265 - Introduced GNUTLS_E_INTERRUPTED
7266 - Added support for non blocking IO
7267 - gnutls_recv() and gnutls_send() are now obsolete
7268 - Changed semantics of gnutls_rehandshake()
7270 * Version 0.2.4 (2001-10-12)
7271 - Better handling of X.509 certificate extensions
7272 - Added DHE_RSA ciphersuites
7273 - Updated the Name Indication (dnsname) extension
7274 - Improvements in Diffie Hellman primes handling
7276 * Version 0.2.3 (2001-09-19)
7277 - Memory optimizations in gnutls_recv()
7278 - Fixed several memory leaks
7279 - Added ability to specify callback for x509 client certificate selection
7280 - Better documentation
7282 * Version 0.2.2 (2001-08-21)
7283 - Several bugfixes (library and documentation)
7285 * Version 0.2.1 (2001-08-07)
7286 - SRP fixes
7288 * Version 0.2.0 (2001-08-07)
7289 - Partial support for X.509v3 Certificate extensions.
7290 - Added Internal memory handlers
7291 - Removed gnutls_x509_set_cn()
7292 - Added X.509 client authentication
7293 - Several bug fixes and protocol fixes
7295 * Version 0.1.9 (2001-07-30)
7296 - Corrected bug(s) in ChangeCipherSpec packet (fixes renegotiate)
7297 - SRP is updated to conform to the newest draft.
7298 - Added support for DNSNAME extension.
7299 - Reentracy fixes in ASN.1 Parsing.
7300 - Optimizations in hash/hmac functions
7301 - (Error) message handling has changed
7302 - Better Protocol Version handling
7303 - Added X.509 Certificate Verification
7304 - gnutls_read() semantics are now closer to read(2) - added EOF
7305 - Documented some part of gnutls in doc/tex/ using Latex
7307 * Version 0.1.4 (2001-06-22)
7308 - Corrected (srp) base64 encoding.
7309 - Changed bcrypt algorithm to include username.
7310 - Added RSA Ciphersuites (no certificate checking).
7311 - Fixes in SSL 2.0 client hello parsing.
7312 - Added ASN.1 and DER parsers.
7313 - Bugfixes in session resuming
7314 - Updated Ciphersuite selection algorithm
7315 - Added internal representation of X.509 structures.
7316 - Added global state
7318 * Version 0.1.3 (2001-06-01)
7319 - Updated API (and the way it is documented - we use inline documentation)
7320 - Added function to access alert messages.
7321 - Added support for renegotiating parameters.
7322 - Better and Faster Resume Database handling.
7323 - Several bugfixes
7325 * Version 0.1.2 (2001-05-14)
7326 - Updated API
7327 - Fixes in extension handling
7329 * Version 0.1.1 (2001-05-13)
7330 - Added compatibility with Stanford's libsrp library
7332 * Version 0.1.0 (2001-05-09)
7333 - Added SSL 2.0 client hello support
7334 - GNUTLS is a gnu library
7335 - Added support for TLS extensions.
7336 - Added support for SRP
7338 * Version 0.0.7 (2001-01-11)
7339 - Added server side session resuming (using gdbm)
7340 - Added twofish algorithm
7342 * Version 0.0.6 (2000-12-20)
7343 - Added client side session resuming
7344 - Better documentation (check doc/API)
7345 - Better socket handling (gnutls can be used with select())
7346 - Some primitive support for non blocking IO and socket options has been added.
7348 * Version 0.0.5 (2000-12-07)
7349 - Added Compression (using ZLIB)
7350 - Added SSL 3.0 support
7352 ----------------------------------------------------------------------
7353 Copying and distribution of this file, with or without modification,
7354 are permitted in any medium without royalty provided the copyright
7355 notice and this notice are preserved.