Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
benches/ | 23-Nov-2023 | - | 23 | 20 | ||
src/ | 23-Nov-2023 | - | 1,434 | 784 | ||
tests/ | 23-Nov-2023 | - | 146 | 106 | ||
.cargo_vcs_info.json | D | 23-Nov-2023 | 74 | 6 | 5 | |
Android.bp | D | 23-Nov-2023 | 3.6 KiB | 142 | 127 | |
CHANGELOG.md | D | 23-Nov-2023 | 8.5 KiB | 245 | 191 | |
Cargo.toml | D | 23-Nov-2023 | 1.9 KiB | 61 | 55 | |
Cargo.toml.orig | D | 23-Nov-2023 | 1.7 KiB | 54 | 46 | |
LICENSE | D | 23-Nov-2023 | 10.6 KiB | 202 | 169 | |
LICENSE-APACHE | D | 23-Nov-2023 | 10.6 KiB | 202 | 169 | |
LICENSE-MIT | D | 23-Nov-2023 | 1.1 KiB | 27 | 23 | |
METADATA | D | 23-Nov-2023 | 419 | 20 | 19 | |
MODULE_LICENSE_APACHE2 | D | 23-Nov-2023 | 0 | |||
OWNERS | D | 23-Nov-2023 | 40 | 2 | 1 | |
README.md | D | 23-Nov-2023 | 2.2 KiB | 65 | 46 | |
TEST_MAPPING | D | 23-Nov-2023 | 631 | 33 | 32 | |
build.rs | D | 23-Nov-2023 | 399 | 15 | 10 |
README.md
1# getrandom 2 3[![Build Status]][GitHub Actions] [![Crate]][crates.io] [![Documentation]][docs.rs] [![Dependency Status]][deps.rs] [![Downloads]][crates.io] [![License]][LICENSE-MIT] 4 5[GitHub Actions]: https://github.com/rust-random/getrandom/actions?query=workflow:Tests+branch:master 6[Build Status]: https://github.com/rust-random/getrandom/workflows/Tests/badge.svg?branch=master 7[crates.io]: https://crates.io/crates/getrandom 8[Crate]: https://img.shields.io/crates/v/getrandom 9[docs.rs]: https://docs.rs/getrandom 10[Documentation]: https://docs.rs/getrandom/badge.svg 11[deps.rs]: https://deps.rs/repo/github/rust-random/getrandom 12[Dependency Status]: https://deps.rs/repo/github/rust-random/getrandom/status.svg 13[Downloads]: https://img.shields.io/crates/d/getrandom 14[LICENSE-MIT]: https://raw.githubusercontent.com/rust-random/getrandom/master/LICENSE-MIT 15[License]: https://img.shields.io/crates/l/getrandom 16 17 18A Rust library for retrieving random data from (operating) system source. It is 19assumed that system always provides high-quality cryptographically secure random 20data, ideally backed by hardware entropy sources. This crate derives its name 21from Linux's `getrandom` function, but is cross platform, roughly supporting 22the same set of platforms as Rust's `std` lib. 23 24This is a low-level API. Most users should prefer using high-level random-number 25library like [`rand`]. 26 27[`rand`]: https://crates.io/crates/rand 28 29## Usage 30 31Add this to your `Cargo.toml`: 32 33```toml 34[dependencies] 35getrandom = "0.2" 36``` 37 38Then invoke the `getrandom` function: 39 40```rust 41fn get_random_buf() -> Result<[u8; 32], getrandom::Error> { 42 let mut buf = [0u8; 32]; 43 getrandom::getrandom(&mut buf)?; 44 Ok(buf) 45} 46``` 47 48For more information about supported targets, entropy sources, `no_std` targets, 49crate features, WASM support and Custom RNGs see the 50[`getrandom` documentation](https://docs.rs/getrandom/latest) and 51[`getrandom::Error` documentation](https://docs.rs/getrandom/latest/getrandom/struct.Error.html). 52 53## Minimum Supported Rust Version 54 55This crate requires Rust 1.34.0 or later. 56 57# License 58 59The `getrandom` library is distributed under either of 60 61 * [Apache License, Version 2.0](LICENSE-APACHE) 62 * [MIT license](LICENSE-MIT) 63 64at your option. 65