hpke-crypto 0.0.1

RFC 9180 Hybrid Public Key Encryption (HPKE) implementation in Rust.
Documentation
//! Implementations of [`Crypto`].

#[cfg(feature = "backend-aws-lc")]
pub mod aws_lc;
#[cfg(feature = "backend-graviola")]
pub mod graviola;
// #[cfg(feature = "backend-ring")]
// pub mod ring;
// #[cfg(feature = "backend-rustcrypto")]
// pub mod rustcrypto;

#[cfg(feature = "backend-aws-lc")]
pub use self::aws_lc::HpkeCrypto as HpkeCryptoAwsLc;
#[cfg(feature = "backend-graviola")]
pub use self::graviola::HpkeCrypto as HpkeCryptoGraviola;
// #[cfg(feature = "backend-ring")]
// pub use self::ring::HpkeCrypto as HpkeCryptoRing;
// #[cfg(feature = "backend-rustcrypto")]
// pub use self::rustcrypto::HpkeCrypto as HpkeCryptoRustCrypto;