Skip to content

Commit

Permalink
get rid of toxic OP_ALL option, disable SSLv3 by default
Browse files Browse the repository at this point in the history
  • Loading branch information
azet committed Jun 11, 2015
1 parent c444d95 commit 936b761
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hitch.c
Original file line number Diff line number Diff line change
Expand Up @@ -773,7 +773,7 @@ SSL_CTX *make_ctx(const char *pemfile) {
SSL_CTX *ctx;
RSA *rsa;

long ssloptions = SSL_OP_NO_SSLv2 | SSL_OP_ALL |
long ssloptions = SSL_OP_NO_SSLv2 | SSL_OP_NO_SSLv3 |
SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION;

#ifdef SSL_OP_NO_COMPRESSION
Expand Down

0 comments on commit 936b761

Please sign in to comment.