pyopenssl
pyopenssl copied to clipboard
A Python wrapper around the OpenSSL library

This PR updates `set_default_verify_paths` to fall back to the Windows certificate store if an explicit verification path is not set via environment variables. I have used the standard library's ssl...
We are currently using PyOpenSSL in our project, bound to OpenSSL 3.5.0 (beta1 version), which includes support for post-quantum algorithms (ML-KEM and hybrid variants, plus post-quantum digital signatures). While we...
I am trying to compute the name hash for CRLs (`X509Name.hash()` in pyopenssl), and it seems there is no equivalent operation in the cryptography package. The closest I can find...
Provides `i2d` method to convert `Session` object to ASN1 encoded bytes. Adds a constructor with optional `data` parameter so that `Session` can be created from ASN1 bytes. Helps to address...
### Description: I am encountering an issue when attempting to implement session resumption in TLS 1.3 using PyOpenSSL. I have already tried the implementation suggested in #1291. ### Scenario: ####...