summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2013-08-30 16:55:14 +0300
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2013-08-30 16:55:14 +0300
commit1b3b05505559d39a748190dd9ae105c2fb3c5658 (patch)
tree7e3ec412852641ade34b45adac28b3c8d789ea3d
parent2cf66dab46b52ed71faa5b6711e664326d218de2 (diff)
downloadgnutls-1b3b05505559d39a748190dd9ae105c2fb3c5658.tar.gz
arcfour is restored in the top of the performance priority.
-rw-r--r--lib/gnutls_priority.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gnutls_priority.c b/lib/gnutls_priority.c
index 29281a69d7..d0085858ce 100644
--- a/lib/gnutls_priority.c
+++ b/lib/gnutls_priority.c
@@ -354,11 +354,11 @@ static const int kx_priority_secure[] = {
* them over anything else.
*/
static const int cipher_priority_performance[] = {
+ GNUTLS_CIPHER_ARCFOUR_128,
GNUTLS_CIPHER_AES_128_GCM,
GNUTLS_CIPHER_AES_128_CBC,
GNUTLS_CIPHER_AES_256_GCM,
GNUTLS_CIPHER_AES_256_CBC,
- GNUTLS_CIPHER_ARCFOUR_128,
GNUTLS_CIPHER_CAMELLIA_128_CBC,
GNUTLS_CIPHER_CAMELLIA_256_CBC,
GNUTLS_CIPHER_3DES_CBC,