commit | 542afe2a86bc58d7423428f94dc17c1e7d11026e | [log] [tgz] |
---|---|---|
author | James Farrell <[email protected]> | Thu Aug 29 16:00:26 2024 +0000 |
committer | Automerger Merge Worker <[email protected]> | Thu Aug 29 16:00:26 2024 +0000 |
tree | d8b644489e4e9310f64ce1015e8074bb614a7d7a | |
parent | 8e69bde799752694235e76ad77deb13957108b64 [diff] | |
parent | 041de78c7f94b0f2c38846025f759ae36fb6191f [diff] |
Migrate 25 crates to monorepo. am: 041de78c7f Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/rand_xorshift/+/3248913 Change-Id: I92b2a46d879ac8584d9ee4c0d41e3e79beb255cc Signed-off-by: Automerger Merge Worker <[email protected]>
Implements the Xorshift random number generator.
The Xorshift[^1] algorithm is not suitable for cryptographic purposes but is very fast. If you do not know for sure that it fits your requirements, use a more secure one such as StdRng
or OsRng
.
[^1]: Marsaglia, George (July 2003). “Xorshift RNGs”. Journal of Statistical Software. Vol. 8 (Issue 14).
Links:
rand_xorshift
is no_std
compatible. It does not require any functionality outside of the core
lib, thus there are no features to configure.
The serde1
feature includes implementations of Serialize
and Deserialize
for the included RNGs.
rand_xorshift
is distributed under the terms of both the MIT license and the Apache License (Version 2.0).
See LICENSE-APACHE and LICENSE-MIT, and COPYRIGHT for details.