You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't know why SSL_CTX_set_alpn_protos is available but SSL_session_reused and other functions are not available.
This was working in cryptography==39.0.2
I guess that this might be part of 40.0.0
Removed many unused CFFI OpenSSL bindings. This will not impact you unless you are using cryptography to directly invoke OpenSSL's C API. Note that these have never been considered a stable, supported, public API by cryptography, this note is included as a courtesy.
I think that SSL_session_reused is very important as it is critical for implemeting FTPS server-side session reusal validation.
The SSL_set_session that is already avaiable, is used for the FTPS client-side part.
Thanks
The text was updated successfully, but these errors were encountered:
* Expose SSL_session_reused.
* Fix test name.
* Don't name the parameters :)
Co-authored-by: Alex Gaynor <alex.gaynor@gmail.com>
* Remove test as requested by Alex.
---------
Co-authored-by: Alex Gaynor <alex.gaynor@gmail.com>
Hi,
I might be missing something here.
I see that
SSL_session_reused
is defined here, but I can't acess it via the bindingscryptography/src/_cffi_src/openssl/ssl.py
Lines 410 to 412 in f69f27b
I am using Ubuntu 23.10 , with default py3 and latest cryptography installed in a virtualenv
I don't know why
SSL_CTX_set_alpn_protos
is available butSSL_session_reused
and other functions are not available.This was working in
cryptography==39.0.2
I guess that this might be part of 40.0.0
I think that
SSL_session_reused
is very important as it is critical for implemeting FTPS server-side session reusal validation.The
SSL_set_session
that is already avaiable, is used for the FTPS client-side part.Thanks
The text was updated successfully, but these errors were encountered: