cryptography
cryptography copied to clipboard
cryptography is a package designed to expose cryptographic primitives and recipes to Python developers.
# Vision The ability to write some primitives in Rust code, using the `openssl` crate. # Motivation Performance -- Python code interacting with the OpenSSL APIs introduce nontrivial overhead (e.g....
- [x] 37: Initial deprecation warning - [x] 38: Final release with support (update error messages) - [ ] 39: Drop support
I try to implement the following keytool command with cryptography to create a truststore using a self created CA certificate: `keytool -keystore truststore.p12 -alias CARoot -import -file /path/to/ca_cert.pem -storepass the_password...
There are use cases when there is a need to encode and decode RSA signature data using odd formats inside the PKCS #1-padding, such as: - Encoding the raw digest...
I'm using cryptophy 36.0.0, and trying to use it to load private key from pem file. When I use `load_pem_private_key(pem.encode(), password=None)` to load pem file, the pem data is in...
Using multiple threads on a system with multiple cores performs noticeably worse than a single thread in the same environment for encryption. This effect does not seem to impact decryption...
_Feature request_ It would be nice if `cryptography` could be used to decrypt S/MIME encrypted emails. This could be low-level right now, similar to https://cryptography.io/en/latest/hazmat/primitives/asymmetric/serialization/?highlight=s%2Fmime#cryptography.hazmat.primitives.serialization.pkcs7.PKCS7SignatureBuilder or something more high level...
Using Ed25519 is strongly recommended according to the nice documentation. I've learned a lot. Thank you. But the Ed25519 module seems to be incomplete, because there's no interface to provide...