SSL handshake is not working when compiled in Ubuntu 14
问题 This is the flow I use to setup my HTTPS server with SSL. It works perfectly on Windows, OS X and Ubuntu 13 . But it's failing to work on Ubuntu 14 only and I don't know why. It's not the full code once it's very big, but I can complete with more details if necessary. SSL_library_init(); m_sslContext = SSL_CTX_new( SSLv23_server_method() ); SSL_CTX_use_certificate_chain_file( m_sslContext, "path/to/certificate.crt" ); SSL_CTX_use_PrivateKey_file( m_sslContext, "path/to/privatekey.pem", SSL