summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2016-01-08 09:47:14 +0100
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2016-01-08 09:47:14 +0100
commitb3b5db319d4246e4735017cc423b92175f713a89 (patch)
tree76078b0f20b5929c732a4ea1be8f89c01f6df605 /lib
parentca77f95657dded59202c4fa7cf67fa59ff393b8c (diff)
downloadgnutls-b3b5db319d4246e4735017cc423b92175f713a89.tar.gz
Revert "ARCFOUR is disabled from the default priority strings"
This reverts commit 76be7bda79d6785eeab3ef8e96db026ad7aac9c3.
Diffstat (limited to 'lib')
-rw-r--r--lib/gnutls_priority.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/gnutls_priority.c b/lib/gnutls_priority.c
index dc83193267..c71237f567 100644
--- a/lib/gnutls_priority.c
+++ b/lib/gnutls_priority.c
@@ -343,6 +343,7 @@ static const int kx_priority_secure[] = {
};
static const int cipher_priority_performance_default[] = {
+ GNUTLS_CIPHER_ARCFOUR_128,
GNUTLS_CIPHER_AES_128_GCM,
GNUTLS_CIPHER_AES_256_GCM,
GNUTLS_CIPHER_CAMELLIA_128_GCM,
@@ -368,6 +369,7 @@ static const int cipher_priority_normal_default[] = {
GNUTLS_CIPHER_CAMELLIA_128_CBC,
GNUTLS_CIPHER_CAMELLIA_256_CBC,
GNUTLS_CIPHER_3DES_CBC,
+ GNUTLS_CIPHER_ARCFOUR_128,
0
};