pub trait Zeroize {
// Required method
fn zeroize(&mut self);
}
Expand description
Trait for securely erasing values from memory.
Required Methods§
fn zeroize(&mut self)
fn zeroize(&mut self)
Zero out this object from memory using Rust intrinsics which ensure the zeroization operation is not “optimized away” by the compiler.
Implementations on Foreign Types§
§impl<A, B, C, D> Zeroize for (A, B, C, D)
impl<A, B, C, D> Zeroize for (A, B, C, D)
§impl<A, B, C, D, E> Zeroize for (A, B, C, D, E)
impl<A, B, C, D, E> Zeroize for (A, B, C, D, E)
§impl<A, B, C, D, E, F> Zeroize for (A, B, C, D, E, F)
impl<A, B, C, D, E, F> Zeroize for (A, B, C, D, E, F)
§impl<A, B, C, D, E, F, G> Zeroize for (A, B, C, D, E, F, G)
impl<A, B, C, D, E, F, G> Zeroize for (A, B, C, D, E, F, G)
§impl<A, B, C, D, E, F, G, H> Zeroize for (A, B, C, D, E, F, G, H)
impl<A, B, C, D, E, F, G, H> Zeroize for (A, B, C, D, E, F, G, H)
§impl<A, B, C, D, E, F, G, H, I> Zeroize for (A, B, C, D, E, F, G, H, I)
impl<A, B, C, D, E, F, G, H, I> Zeroize for (A, B, C, D, E, F, G, H, I)
§impl<A, B, C, D, E, F, G, H, I, J> Zeroize for (A, B, C, D, E, F, G, H, I, J)
impl<A, B, C, D, E, F, G, H, I, J> Zeroize for (A, B, C, D, E, F, G, H, I, J)
§impl<Z> Zeroize for [Z]where
Z: DefaultIsZeroes,
impl<Z> Zeroize for [Z]where
Z: DefaultIsZeroes,
Impl Zeroize
on slices of types that can be zeroized with Default
.
This impl can eventually be optimized using an memset intrinsic,
such as core::intrinsics::volatile_set_memory
. For that reason the
blanket impl on slices is bounded by [DefaultIsZeroes
].
To zeroize a mut slice of Z: Zeroize
which does not impl
[DefaultIsZeroes
], call iter_mut().zeroize()
.
§impl<Z> Zeroize for [MaybeUninit<Z>]
impl<Z> Zeroize for [MaybeUninit<Z>]
Impl Zeroize
on slices of MaybeUninit
types.
This impl can eventually be optimized using an memset intrinsic,
such as core::intrinsics::volatile_set_memory
.
This fills the slice with zeroes.
Note that this ignore invariants that Z
might have, because
MaybeUninit
removes all invariants.
Implementors§
impl Zeroize for CString
impl Zeroize for String
impl Zeroize for NonZero<i8>
impl Zeroize for NonZero<i16>
impl Zeroize for NonZero<i32>
impl Zeroize for NonZero<i64>
impl Zeroize for NonZero<i128>
impl Zeroize for NonZero<isize>
impl Zeroize for NonZero<u8>
impl Zeroize for NonZero<u16>
impl Zeroize for NonZero<u32>
impl Zeroize for NonZero<u64>
impl Zeroize for NonZero<u128>
impl Zeroize for NonZero<usize>
impl Zeroize for Box<str>
impl<Z> Zeroize for Vec<Z>where
Z: Zeroize,
impl<Z> Zeroize for PhantomData<Z>
PhantomData
is always zero sized so provide a Zeroize
implementation.
impl<Z> Zeroize for IterMut<'_, Z>where
Z: Zeroize,
impl<Z> Zeroize for Wrapping<Z>where
Z: Zeroize,
impl<Z> Zeroize for Box<[Z]>where
Z: Zeroize,
impl<Z> Zeroize for MaybeUninit<Z>
Impl Zeroize
on MaybeUninit
types.
This fills the memory with zeroes.
Note that this ignore invariants that Z
might have, because
MaybeUninit
removes all invariants.