summaryrefslogtreecommitdiffstats
path: root/openpgp/src/crypto/backend/openssl/hash.rs
AgeCommit message (Collapse)Author
2023-02-14openpgp: Fix hash algorithm detection.Wiktor Kwapisiewicz
- Hash algorithm detection previously checked only conversion to Nid. - More thorough check which involves construction of the Hasher object is needed. - Adjust the code and add a comment. - Fixes https://gitlab.com/sequoia-pgp/sequoia/-/issues/979
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.