]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
Reword the websocket TLS cipher list
authorTravis Cross <tc@traviscross.com>
Wed, 5 Mar 2014 21:37:11 +0000 (21:37 +0000)
committerTravis Cross <tc@traviscross.com>
Wed, 5 Mar 2014 21:37:30 +0000 (21:37 +0000)
This generates an identical list of cipher suites, but this commit
restates the cipher spec to be more similar to the way we state it
elsewhere.

libs/sofia-sip/libsofia-sip-ua/tport/tport_type_ws.c

index a6cb2ba85bbcc99a47001e2f6c040d7c37ddc1d1..c943ee0317bc9a5de310d88d19976cd566abfe67 100644 (file)
@@ -395,7 +395,7 @@ static int tport_ws_init_primary_secure(tport_primary_t *pri,
          goto done;
   }
 
-  SSL_CTX_set_cipher_list(wspri->ssl_ctx, "HIGH:!DSS:!aNULL@STRENGTH");
+  SSL_CTX_set_cipher_list(wspri->ssl_ctx, "!eNULL:!aNULL:!DSS:HIGH:@STRENGTH");
 
   ret = tport_ws_init_primary(pri, tpn, ai, tags, return_culprit);