//! Protected secret types.
//!
//! This module provides the main user-facing types for storing secrets:
//!
//! - [`ShroudedBytes`]: Dynamic-size protected byte buffer
//! - [`ShroudedString`]: UTF-8 string with protected storage
//! - [`ShroudedArray`]: Fixed-size protected array
//! - [`Shroud`]: Generic protected box for any `Zeroize` type
//! - [`ShroudedHasher`]: Hasher with protected internal state (requires `digest` feature)
pub use ShroudedArray;
pub use Shroud;
pub use ShroudedBytes;
pub use ShroudedString;
pub use ShroudedHasher;
pub use ShroudedSha1;
pub use ;