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

tls: introduce client 'session' event #25831

Closed
wants to merge 1 commit into from

Commits on Feb 1, 2019

  1. tls: introduce client 'session' event

    OpenSSL has supported async notification of sessions and tickets since
    1.1.0 using SSL_CTX_sess_set_new_cb(), for all versions of TLS. Using
    the async API is optional for TLS1.2 and below, but for TLS1.3 it will
    be mandatory. Future-proof applications should start to use async
    notification immediately. In the future, for TLS1.3, applications that
    don't use the async API will silently, but gracefully, fail to resume
    sessions and instead do a full handshake.
    
    See: https://wiki.openssl.org/index.php/TLS1.3#Sessions
    sam-github committed Feb 1, 2019
    Configuration menu
    Copy the full SHA
    a558e25 View commit details
    Browse the repository at this point in the history