commit | 8977c1a1dc4d0a46bff5a5f5d4761604b89f9893 | [log] [tgz] |
---|---|---|
author | Andrew Walbran <[email protected]> | Thu Nov 23 01:05:22 2023 +0000 |
committer | Automerger Merge Worker <[email protected]> | Thu Nov 23 01:05:22 2023 +0000 |
tree | 703d303ec5d63ecbfd61f067eb5fe950056119da | |
parent | 881deed2d77115f97243b46845d5812ed902844b [diff] | |
parent | f91f4450d219a97c9e4e829ebfcb96653b0d5c6e [diff] |
Migrate to cargo_embargo. am: ce949f372b am: a8d2f89b8e am: f91f4450d2 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/zeroize/+/2836656 Change-Id: Ic8fea6e9787c02b707306af6c30bff3ccbfcf4a1 Signed-off-by: Automerger Merge Worker <[email protected]>
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.
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_std]
i.e. embedded-friendly!Rust 1.56 or newer.
In the future, we reserve the right to change MSRV (i.e. MSRV is out-of-scope for this crate's SemVer guarantees), however when we do it will be accompanied by a minor version bump.
Licensed under either of:
at your option.
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.