Crate zeroize[][src]

Securely zero memory using core or OS intrinsics. This crate wraps facilities specifically designed to securely zero memory in a common, safe API.

This crate deliberately avoids use of cc, C shims, and other "tricks" to "securely" zero memory, preferring to use the appropriate intrinsic on nightly, or on stable using FFI bindings to specifically designed OS APIs for securely zeroing memory.

Functions

secure_zero_memory

Zero out memory using explicit_bzero().