summaryrefslogtreecommitdiffstats
path: root/openpgp/README.md
AgeCommit message (Collapse)Author
2023-03-13openpgp: Bump botan to 0.10.1 to avoid raising our MSRV.Justus Winter
2023-03-08openpgp: Add a new backend based on the Botan cryptographic library.Justus Winter
2023-03-08openpgp: Feature the OpenSSL backend more prominently.Justus Winter
2022-12-22openpgp: Add OpenSSL cryptographic backend.Wiktor Kwapisiewicz
- Adds the backend behind `crypto-openssl` feature. - Add CI configuration to run tests with the new backend. - See #333.
2022-10-18Update READMEs for new MSRV.Nora Widdecke
2021-11-29Move MSRV to 1.56.1Nora Widdecke
- Rust 1.56.0 is affected by CVE-2021-42574, which is addressed in 1.56.1.
2021-11-18openpgp: Hint at WASM support in the README.md.Justus Winter
- Fixes #570.
2021-10-05openpgp: Add a RustCrypto backend.Nikhil Benesch
- This adds a cryptographic backend based on the RustCrypto crates. The backend is marked as experimental, as the RustCrypto crates' authors state that they have not been audited and may not perform computations in constant time. Nevertheless, it may be useful in certain environments, e.g. WebAssembly. - The backend implements RSA, EdDSA and ECDH over Curve25519, IDEA, 3DES, CAST5, Blowfish, AES, Twofish, EAX, MD5, SHA1, RipeMD160, and the SHA2 family. - Notably missing are DSA, ElGamal, and ECDSA and ECDH over the NIST curves. - See #333.
2021-09-30openpgp: Add features to opt-in to experimental crypto backends.Justus Winter
2021-08-27openpgp: Fix grammar and typesetting.Justus Winter
2021-04-08Update MSRV to 1.48.0Nora Widdecke
- Update our MSRV to the one used in Debian bullseye, 1.48.0.
2020-12-01openpgp: Don't mention the unreleased sequoia-core.Justus Winter
- Fixes #602.
2020-10-06Update README.md for MSRV 1.46.Nora Widdecke
- Fixes #557. - Use "1.46" in both READMEs.
2020-09-22openpgp: Remove `quickcheck` feature.Wiktor Kwapisiewicz
- Adjust code to test for `cfg(test)` only, - Remove `quickcheck` and `rand` from dependencies so that they stay only in dev-dependencies, - Remove mention of `x-quickcheck` feature from the documentation, - Fixes #545.
2020-09-21Bump MSRV to 1.46.0.Nora Widdecke
2020-08-21Update README.md.Justus Winter
2020-06-11openpgp: Document our MSRV.Justus Winter
2020-06-11openpgp: Document feature flags.Justus Winter
2020-06-11openpgp: Improve README.md.Justus Winter
2020-06-04openpgp: Typo.Justus Winter
2020-03-03openpgp: Add a dedicated README.md.Justus Winter