]> git.ipfire.org Git - thirdparty/gnutls.git/commitdiff
*** empty log message ***
authorNikos Mavrogiannopoulos <nmav@gnutls.org>
Sun, 1 Sep 2002 10:02:36 +0000 (10:02 +0000)
committerNikos Mavrogiannopoulos <nmav@gnutls.org>
Sun, 1 Sep 2002 10:02:36 +0000 (10:02 +0000)
NEWS
lib/gnutls_state.c
src/common.c

diff --git a/NEWS b/NEWS
index e14f8873d0302385e0a177f0462a4814f0ef301d..477a56298b8e152c67a3c364a5929ff11fb833bc 100644 (file)
--- 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.
 
index 6bb815413d7e1b06d0322e1ed31f93287b62b381..1c66e17a4498f1da442ddef1cb8a9ec597417813 100644 (file)
@@ -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)
 {
index 0fa2c4fb3bbcbd4a8359dc1299bc8a5c96b78bef..f6ef4c517976cfd52a89f45e094078f2393095ad 100644 (file)
@@ -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");