Reword the websocket TLS cipher list

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.
This commit is contained in:
Travis Cross 2014-03-05 21:37:11 +00:00
parent 6a3dcc9e0f
commit 1990d10057
1 changed files with 1 additions and 1 deletions

View 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);