libevent-server: Disable SSLv3

This commit is contained in:
Tatsuhiro Tsujikawa 2014-11-27 21:40:34 +09:00
parent 770cfcaae9
commit 5d59adc52b
1 changed files with 2 additions and 1 deletions

View File

@ -103,7 +103,8 @@ static SSL_CTX* create_ssl_ctx(const char *key_file, const char *cert_file)
ERR_error_string(ERR_get_error(), NULL)); ERR_error_string(ERR_get_error(), NULL));
} }
SSL_CTX_set_options(ssl_ctx, SSL_CTX_set_options(ssl_ctx,
SSL_OP_ALL | SSL_OP_NO_SSLv2 | SSL_OP_NO_COMPRESSION | SSL_OP_ALL | SSL_OP_NO_SSLv2 | SSL_OP_NO_SSLv3 |
SSL_OP_NO_COMPRESSION |
SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION); SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION);
ecdh = EC_KEY_new_by_curve_name(NID_X9_62_prime256v1); ecdh = EC_KEY_new_by_curve_name(NID_X9_62_prime256v1);