• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

benches/23-Nov-2023-2320

src/23-Nov-2023-1,434784

tests/23-Nov-2023-146106

.cargo_vcs_info.jsonD23-Nov-202374 65

Android.bpD23-Nov-20233.6 KiB142127

CHANGELOG.mdD23-Nov-20238.5 KiB245191

Cargo.tomlD23-Nov-20231.9 KiB6155

Cargo.toml.origD23-Nov-20231.7 KiB5446

LICENSED23-Nov-202310.6 KiB202169

LICENSE-APACHED23-Nov-202310.6 KiB202169

LICENSE-MITD23-Nov-20231.1 KiB2723

METADATAD23-Nov-2023419 2019

MODULE_LICENSE_APACHE2D23-Nov-20230

OWNERSD23-Nov-202340 21

README.mdD23-Nov-20232.2 KiB6546

TEST_MAPPINGD23-Nov-2023631 3332

build.rsD23-Nov-2023399 1510

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