Skip to content
New issue

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

crypto: use SSL_CTX_clear_extra_chain_certs. #4919

Closed
wants to merge 1 commit into from

Commits on Jan 27, 2016

  1. crypto: use SSL_CTX_clear_extra_chain_certs.

    The SSL_CTX_clear_extra_chain_certs function clears the extra
    certificates associated with an SSL_CTX without reaching into the
    SSL_CTX structure itself (which will become impossible in OpenSSL
    1.1.0). The underlying implementation in OpenSSL[1] is the same what the
    code was doing and OpenSSL has provided this function since 0.9.8 so
    this change should be fully compatible.
    
    [1] https://github.com/nodejs/node/blob/master/deps/openssl/openssl/ssl/s3_lib.c#L3899
    agl committed Jan 27, 2016
    Copy the full SHA
    aae42d7 View commit details
    Browse the repository at this point in the history