We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
You can see this by trying to connect to a TLS server using a self-signed certificate (e.g. https://self-signed.badssl.com/).
I would expect to see calls to SSL_CTX_set_default_verify_paths() and SSL_get_verify_result() in the code.
SSL_CTX_set_default_verify_paths()
SSL_get_verify_result()
The text was updated successfully, but these errors were encountered:
What is the minimum OpenSSL version that supports SSL_CTX_set_default_verify_paths and SSL_get_verify_result ?
SSL_CTX_set_default_verify_paths
SSL_get_verify_result
Sorry, something went wrong.
SSL_get_verify_result is provided in openssl 1.0.2
SSL_CTX_set_default_verify_paths is for 1.1.1 above. old version can only set by SSL_use_certificate_file like API.
SSL_use_certificate_file
Current SSL adaptors in photon just simply do not validate certificates.
Coldwings
No branches or pull requests
You can see this by trying to connect to a TLS server using a self-signed certificate (e.g. https://self-signed.badssl.com/).
I would expect to see calls to
SSL_CTX_set_default_verify_paths()
andSSL_get_verify_result()
in the code.The text was updated successfully, but these errors were encountered: