From: Nikos Mavrogiannopoulos Date: Wed, 2 Dec 2015 17:40:28 +0000 (+0100) Subject: gnutls-cli: don't use RSA ciphersuites to test chacha20 as they are not defined X-Git-Tag: gnutls_3_5_0~504 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=db9ea6da7224c3d8795cd0752d70e1642d0be4f5;p=thirdparty%2Fgnutls.git gnutls-cli: don't use RSA ciphersuites to test chacha20 as they are not defined --- diff --git a/src/benchmark-tls.c b/src/benchmark-tls.c index d5349179dd..3622097e64 100644 --- a/src/benchmark-tls.c +++ b/src/benchmark-tls.c @@ -54,7 +54,7 @@ const char *side = ""; #define PRIO_ARCFOUR_128_MD5 "NONE:+VERS-TLS1.0:+ARCFOUR-128:+MD5:+SIGN-ALL:+COMP-NULL:+RSA" #define PRIO_AES_GCM "NONE:+VERS-TLS1.2:+AES-128-GCM:+AEAD:+SIGN-ALL:+COMP-NULL:+RSA" #define PRIO_AES_CCM "NONE:+VERS-TLS1.2:+AES-128-CCM:+AEAD:+SIGN-ALL:+COMP-NULL:+RSA" -#define PRIO_CHACHA_POLY1305 "NONE:+VERS-TLS1.2:+CHACHA20-POLY1305:+AEAD:+SIGN-ALL:+COMP-NULL:+RSA" +#define PRIO_CHACHA_POLY1305 "NONE:+VERS-TLS1.2:+CHACHA20-POLY1305:+AEAD:+SIGN-ALL:+COMP-NULL:+ECDHE-RSA:+CURVE-ALL" #define PRIO_CAMELLIA_CBC_SHA1 "NONE:+VERS-TLS1.0:+CAMELLIA-128-CBC:+SHA1:+SIGN-ALL:+COMP-NULL:+RSA" static const int rsa_bits = 3072, ec_bits = 256;