Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The `SSL_CTX_set_tlsext_ticket_key_cb` and `SSL_CTX_set_tlsext_ticket_key_evp_cb` API functions can be used to set up callbacks for managing TLS session tickets. Implementing this properly will be challenging as they take `EVP_CIPHER_CTX` and `EVP_MAC_CTX` arguments and expect the caller to do a lot of the heavy-lifting. For now let's stub it and see how far we can get by just opaquely handling TLS session tickets internal to Rustls w/ our own ticketer.
- Loading branch information