I am trying to build mTLS client and server with pyopenssl and measure timing for the handshake to compare to some alternative approach.
I want to test performance for the handshake with and without Session Resumption. In TLS 1.3, the server may send a New Session Ticket Message containing a PSK Identity that the Client can use on subsequent connections to resume the session.
It seems like some necessary Bindings were added to cryptography here but I couldn't find any relating functions in pyopenssl.
Is there a way to use Session Resumption with PSKs in pyopenssl or is there any plans to implement this feature?