ipartola / hawkeye

An simple and fast USB webcam MJPEG streaming server.
Other
206 stars 28 forks source link

HTTPS negotiation with deprecated SSL3 #12

Closed hyppoCom closed 6 years ago

hyppoCom commented 6 years ago

Chrome says the HTTPS cipher is not secure enough. I changed security.c as follows and Chrome stop complaining, using TLS1.2 instead of the deprecated SSL3: I changed


to
__*ctx = SSL_CTX_new(TLSv1_2_server_method());__
and commented out the line with ciphers list
// SSL_CTX_set_cipher_list(ctx, SSL_CIPHERS);