1
0
Derivar 0

FIX: load a full certificate chain and not just the first one

Este cometimento está contido em:
Juan José Gutiérrez de Quevedo Pérez 2014-09-08 10:07:48 +02:00
ascendente 7728f8dae0
cometimento 45c1fdbf33
1 ficheiros modificados com 1 adições e 1 eliminações

Ver ficheiro

@ -59,7 +59,7 @@ Socket::Socket():fd(-1)
if(!ssl_ctx_server)
throw Exception(_("Error creating SSL context"),__FILE__,__LINE__);
/* load certificate */
if(SSL_CTX_use_certificate_file(ssl_ctx_server,cfg.getCertificateFile().c_str(),SSL_FILETYPE_PEM)==-1)
if(SSL_CTX_use_certificate_chain_file(ssl_ctx_server,cfg.getCertificateFile().c_str())==-1)
throw Exception(_("Error loading certificate"),__FILE__,__LINE__);
/* load private key */
if(SSL_CTX_use_PrivateKey_file(ssl_ctx_server,cfg.getPrivateKeyFile().c_str(),SSL_FILETYPE_PEM)==-1)