You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//! A data type suitable for storing sensitive information such as passwords and private keys in memory, featuring constant time equality, mlock and zeroing out.
mod secure_types;
mod secure_utils;
#[cfg(feature = "serde")]
mod serde;
pub use secure_types::{array::SecureArray, string::SecureString, vec::SecureBytes, vec::SecureVec};