sequoia-openpgp 0.20.0

OpenPGP data types and associated machinery
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Concrete implementation of the crypto primitives used by the rest of the
//! crypto API.

#[cfg(feature = "crypto-nettle")]
mod nettle;
#[cfg(feature = "crypto-nettle")]
pub use self::nettle::*;

#[cfg(feature = "crypto-cng")]
mod cng;
#[cfg(feature = "crypto-cng")]
pub use self::cng::*;