Expand description
Implementation of a Zeroizing Allocator, enabling zeroizing memory on deallocation. This can either be used with Box (requires nightly and the “allocator” feature) to provide the functionality of zeroize on types which don’t implement zeroize, or used as a wrapper around the global allocator to ensure all memory is zeroized.
Structs
An allocator wrapper which zeroizes its memory on dealloc.