Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 OpenSSL 0.9.8 中,我使用 SSL_CTX_set_cert_verify_callback 函数设置了回调。但是,在回调中,如何访问 OpenSSL 连接的目标域,以便将目标域与证书域匹配。
谢谢
arg您传递给的值SSL_CTX_set_cert_verify_callback()将在调用时传递给您的回调函数。您可以使用它来传递指向包含域的某些数据结构的指针。
arg
SSL_CTX_set_cert_verify_callback()