sequoia-openpgp 2.2.0

OpenPGP data types and associated machinery
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Types for the crypto module.

pub mod aead_algorithm;
pub use aead_algorithm::AEADAlgorithm;
pub mod curve;
pub use curve::Curve;
pub mod hash_algorithm;
pub use hash_algorithm::HashAlgorithm;
pub mod public_key_algorithm;
pub use public_key_algorithm::PublicKeyAlgorithm;
pub mod symmetric_algorithm;
pub use symmetric_algorithm::SymmetricAlgorithm;