datastream/http/vendor/zeroize
2026-09-02 21:48:27 +08:00
..
src working 2026-09-02 21:48:27 +08:00
tests working 2026-09-02 21:48:27 +08:00
.cargo-checksum.json working 2026-09-02 21:48:27 +08:00
.cargo_vcs_info.json working 2026-09-02 21:48:27 +08:00
Cargo.lock working 2026-09-02 21:48:27 +08:00
Cargo.toml working 2026-09-02 21:48:27 +08:00
Cargo.toml.orig working 2026-09-02 21:48:27 +08:00
CHANGELOG.md working 2026-09-02 21:48:27 +08:00
LICENSE-APACHE working 2026-09-02 21:48:27 +08:00
LICENSE-MIT working 2026-09-02 21:48:27 +08:00
README.md working 2026-09-02 21:48:27 +08:00

RustCrypto: zeroize

Crate Docs Build Status Apache 2.0/MIT Licensed MSRV Project Chat

Securely zero memory (a.k.a. zeroize) while avoiding compiler optimizations.

This crate implements a portable approach to securely zeroing memory using techniques which guarantee they won't be "optimized away" by the compiler.

The Zeroize trait is the crate's primary API.

Documentation

About

Zeroing memory securely is hard - compilers optimize for performance, and in doing so they love to "optimize away" unnecessary zeroing calls. There are many documented "tricks" to attempt to avoid these optimizations and ensure that a zeroing routine is performed reliably.

This crate isn't about tricks: it uses core::ptr::write_volatile and core::sync::atomic memory fences to provide easy-to-use, portable zeroing behavior which works on all of Rust's core number types and slices thereof, implemented in pure Rust with no usage of FFI or assembly.

  • No insecure fallbacks!
  • No dependencies!
  • No FFI or inline assembly! WASM friendly (and tested)!
  • #![no_std] i.e. embedded-friendly!
  • No functionality besides securely zeroing memory!
  • (Optional) Custom derive support for zeroing complex structures

Minimum Supported Rust Version

Requires Rust 1.85 or newer.

In the future, we reserve the right to change MSRV (i.e. MSRV is out-of-scope for this crate's semantic versioning guarantees).

Example

use zeroize::Zeroize;

// Protip: don't embed secrets in your source code.
// This is just an example.
let mut secret = b"Air shield password: 1,2,3,4,5".to_vec();
// [ ... ] open the air shield here

// Now that we're done using the secret, zero it out.
secret.zeroize();

License

Licensed under either of:

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.