commit | e815f148d005f37f573555d2a34c37fbb7ada442 | [log] [tgz] |
---|---|---|
author | James Farrell <[email protected]> | Tue May 21 14:38:04 2024 +0000 |
committer | Automerger Merge Worker <[email protected]> | Tue May 21 14:38:04 2024 +0000 |
tree | ea9cfb0c7543e22cc8b44d74af8ca350a066c767 | |
parent | 6069b4adb4eb635bbb69a735513af101583cd03f [diff] | |
parent | d0a21ff1bea6f286ff01217d9a7440517ef47bae [diff] |
Update Android.bp by running cargo_embargo am: d0a21ff1be Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/getrandom/+/3095486 Change-Id: I6b8ad43c11f5edf50f2523dd81de077fdf0229a2 Signed-off-by: Automerger Merge Worker <[email protected]>
A Rust library for retrieving random data from (operating) system sources. It is assumed that the system always provides high-quality cryptographically secure random data, ideally backed by hardware entropy sources. This crate derives its name from Linux‘s getrandom
function, but is cross-platform, roughly supporting the same set of platforms as Rust’s std
lib.
This is a low-level API. Most users should prefer using high-level random-number library like rand
.
Add this to your Cargo.toml
:
[dependencies] getrandom = "0.2"
Then invoke the getrandom
function:
fn get_random_buf() -> Result<[u8; 32], getrandom::Error> { let mut buf = [0u8; 32]; getrandom::getrandom(&mut buf)?; Ok(buf) }
For more information about supported targets, entropy sources, no_std
targets, crate features, WASM support and Custom RNGs see the getrandom
documentation and getrandom::Error
documentation.
This crate requires Rust 1.36.0 or later.
This crate generally supports the same operating system and platform versions that the Rust standard library does. Additional targets may be supported using pluggable custom implementations.
This means that as Rust drops support for old versions of operating systems (such as old Linux kernel versions, Android API levels, etc) in stable releases, getrandom
may create new patch releases (0.N.x
) that remove support for outdated platform versions.
The getrandom
library is distributed 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.