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

Make it possible to set SSL verify mode #1085

Merged
merged 1 commit into from
Aug 16, 2022

Commits on Aug 15, 2022

  1. Make it possible to set SSL verify mode

    If no SSL certificates are provided, many Redis clients default to
    disabling SSL peer verification. Previously it was a bit cumbersome to
    configure this because the client would either have to reimplement
    `redisCreateSSLContext()` or reach into the internals to set the
    OpenSSL verify mode.
    
    We can improve the SSL API by introducing a
    `redisCreateSSLContextWithOptions()` call that takes into structured
    parameters for SSL initialization. This structure contains a verify
    mode that is used to set the OpenSSL verify mode.
    
    Relates to redis#646
    stanhu committed Aug 15, 2022
    Configuration menu
    Copy the full SHA
    71119a7 View commit details
    Browse the repository at this point in the history