我希望我的 C/C++ 客户端通过 SSL 对服务器进行身份验证。我首先从服务器下载了证书文件
openssl s_client -showcerts -connect www.openssl.org:443 </dev/null 2>/dev/null | openssl x509 -outform PEM > mycertfile.pem
然后在我的应用程序中,我执行以下 API 调用(伪代码):
// Register the error strings for libcrypto & libssl
SSL_load_error_strings();
// Register the available ciphers and digests
SSL_library_init();
// New context saying we are a client, and using SSL 2 or 3
ctx = SSL_CTX_new(SSLv23_client_method());
// load the certificate
if(!SSL_CTX_load_verify_locations(ctx, "mycertfile.pem", 0))
...
// Create an SSL struct for the connection
ssl = SSL_new(ctx);
// Connect the SSL struct to our pre-existing TCP/IP socket connection
if (!SSL_set_fd(ssl, sd))
...
// Initiate SSL handshake
if(SSL_connect(ssl) != 1)
...
// form this point onwards the SSL connection is established and works
// perfectly, I would be able to send and receive encrypted data
// **Crucial point now**
// Get certificate (it works)
X509 *cert = SSL_get_peer_certificate(ssl);
if(cert) {
// the below API returns code 19
const long cert_res = SSL_get_verify_result(ssl);
if(cert_res == X509_V_OK) {
printf("Certificate verified!\n");
}
X509_free(cert);
}
如果我不介意检查证书并且我只是对加密连接感兴趣,那么上面的代码可以正常工作。
问题在于,当我尝试验证服务器的真实性时,我确实从中获取了证书,但是即使我在 5 分钟前刚刚下载了证书SSL_get_peer_certificate
,结果的验证也不起作用。
我究竟做错了什么?
所有这些都在带有 gcc 和openssl的 Ubuntu 12.04.03 x86-64 上。
谢谢,艾玛