Skip to main content

bitwarden_crypto/hazmat/
mod.rs

1//! Hazmat module
2//!
3//! Inside here live low level crypto implementations that are not safe to use by themselves and
4//! can be easily misused. This should never be used from another crate, and handled with extreme
5//! care.
6
7pub(crate) mod symmetric_encryption;