pub trait Zeroize {
// Required method
fn zeroize(&mut self);
}Expand description
A minimal in-crate implementation of a subset of zeroize::Zeroize.
This provides compile-fenced memory zeroing for Strings and Vecs without needing to
depend on the zeroize crate.
If the optional zeroize feature is enabled, then the trait is replaced with a re-export of
zeroize::Zeroize itself.