initial commit

This commit is contained in:
Sampras Lopes
2022-11-16 20:37:50 +05:30
commit 430dcd1967
320 changed files with 64760 additions and 0 deletions

12
crates/masking/src/vec.rs Normal file
View File

@ -0,0 +1,12 @@
//!
//! Secret `Vec` types
//!
//! There is not alias type by design.
use alloc::vec::Vec;
#[cfg(feature = "serde")]
use super::{SerializableSecret, Serialize};
#[cfg(feature = "serde")]
impl<S: Serialize> SerializableSecret for Vec<S> {}