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.
* 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)
{
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");