1#![cfg_attr(test, allow(clippy::unwrap_used, clippy::expect_used, clippy::panic))]
5
6pub mod compare;
7pub mod digest;
8pub mod encoding;
9pub mod hmac_sha;
10#[cfg(feature = "sealing")]
14pub mod seal;
15
16pub use compare::constant_time_eq;
17pub use digest::{sha1, sha256, sha512};
18pub use encoding::{Base64DecodeError, base64_decode, base64_encode, hex_lower, hex_upper};
19pub use hmac_sha::{CryptoError, hmac_sha256, hmac_sha512};
20#[cfg(feature = "sealing")]
21pub use seal::{SealError, SealingKey};