From: Nikos Mavrogiannopoulos Date: Sun, 1 Sep 2002 10:02:36 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: gnutls_0_5_5~14 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dd211d7a49f5259b52275d35ac7851490de12874;p=thirdparty%2Fgnutls.git *** empty log message *** --- diff --git a/NEWS b/NEWS index e14f8873d0..477a56298b 100644 --- a/NEWS +++ b/NEWS @@ -4,14 +4,15 @@ Version 0.5.5 for other hash algorithms except for the srpsha. - Renamed all the constructed types in order to have more consistent names. -- Improved the certificate and key read functions. +- Improved the certificate and key read functions. Now they can read + the certificate and the private key from the same file. Version 0.5.4 (27/08/2002) - Fixes in TLS 1.0 PRF and SSL3 random functions. - gnutls_handshake_set_exportable_detection() was obsoleted. - Added gnutls_openpgp_extract_key_id() which returns the key ID. - Corrected bug in DHE key exchange -- Added support temporary RSA keys which is needed for the +- Added support for temporary RSA keys which are needed for the export cipher suites. - Added the TLS_RSA_EXPORT_ARCFOUR_40_MD5 ciphersuite. diff --git a/lib/gnutls_state.c b/lib/gnutls_state.c index 6bb815413d..1c66e17a44 100644 --- a/lib/gnutls_state.c +++ b/lib/gnutls_state.c @@ -498,6 +498,9 @@ void gnutls_record_set_cbc_protection(gnutls_session session, int prot) * like TWOFISH, will be available. This is because these algorithms * are not yet defined in any RFC or even internet draft. * + * Enabling the private ciphersuites when talking to other than gnutls + * servers and clients, may cause interoperability problems. + * **/ void gnutls_handshake_set_private_extensions(gnutls_session session, int allow) { diff --git a/src/common.c b/src/common.c index 0fa2c4fb3b..f6ef4c5179 100644 --- a/src/common.c +++ b/src/common.c @@ -260,7 +260,7 @@ int print_info(gnutls_session session) void print_cert_info(gnutls_session session) { - printf( " - Certificate type: "); + printf( "- Certificate type: "); switch (gnutls_certificate_type_get(session)) { case GNUTLS_CRT_X509: printf("X.509\n");