commit | 5142b2ef96c507193f21c67cbcc1ab41dac14914 | [log] [tgz] |
---|---|---|
author | Hasini Gunasinghe <[email protected]> | Fri Sep 09 22:35:37 2022 +0000 |
committer | Hasini Gunasinghe <[email protected]> | Tue Oct 04 21:51:37 2022 +0000 |
tree | a2eb62acecd00e5712403003fcd9732c87e4196c | |
parent | 33c96294d5131838a51ba442a05d010ef9e19727 [diff] |
Import platform/external/rust/crates/zeroize Bug: 239549209 Test: N/A Change-Id: Ib0dae0b0cf7aaa1a7f5c1f74c3ab5f1cb900ed11
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.51 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.