[Help-gnutls] Re: SMTP TLS & Thunderbird

Simon Josefsson simon at josefsson.org
Wed Mar 7 12:07:23 CET 2007


Simon Josefsson <simon at josefsson.org> writes:

>   static const int cipher_priority[] = {
>     GNUTLS_CIPHER_AES_128_CBC,
>     GNUTLS_CIPHER_AES_256_CBC,
>     GNUTLS_CIPHER_3DES_CBC,
>     GNUTLS_CIPHER_ARCFOUR_128,
>     /* GNUTLS_CIPHER_ARCFOUR_40: Insecure, don't add! */
>     0
>   };

It was suggested to alter this into:

  static const int cipher_priority[] = {
    GNUTLS_CIPHER_AES_256_CBC,
    GNUTLS_CIPHER_AES_128_CBC,
    GNUTLS_CIPHER_3DES_CBC,
    GNUTLS_CIPHER_ARCFOUR_128,
    /* GNUTLS_CIPHER_ARCFOUR_40: Insecure, don't add! */
    0
  };

And this has been installed in CVS.

/Simon





More information about the Gnutls-help mailing list