changed cipher suite spec
authorFelix Morgner <felix.morgner@gmail.com>
Sat, 31 Jan 2015 11:48:16 +0000 (12:48 +0100)
committerFelix Morgner <felix.morgner@gmail.com>
Sat, 31 Jan 2015 12:12:21 +0000 (13:12 +0100)
I will need to work on that, but for now, this works

src/ssli_gnutls.c

index 5120390685daa66ac68a3f960f1179d594bffce1..dfe2f2eeb47628fde849950c9d1608ce54b2a0c0 100644 (file)
@@ -2,10 +2,12 @@
 #include "conf.h"
 #include "log.h"
 
+#include <stdlib.h>
+
 static gnutls_dh_params_t dhParameters;
 static gnutls_certificate_credentials_t certificate;
 
-static const char * ciphers = "NONE:+CTYPE-X.509:+DHE-RSA:+RSA:+AES-256-CBC:+AES-128-CBC:+SHA256:+SHA1:+VERS-TLS-ALL:+COMP-ALL:+SIGN-DSA-SHA256:+SIGN-DSA-SHA1";
+static const char * ciphers = "NORMAL";
 static gnutls_priority_t cipherCache;
 
 void initializeCertificate()