commit | e22bc21f13f3a09f5f05204f0e1192f1c7951a1a | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <[email protected]> | Sun Dec 26 10:04:17 2021 +0000 |
committer | Android Build Coastguard Worker <[email protected]> | Sun Dec 26 10:04:17 2021 +0000 |
tree | ae82a5a3686f2251b57f2233f4df5f7d8b04018e | |
parent | 8a34955da694772e76fd7c0c0bf1e3a999dfee4b [diff] | |
parent | f57add15335e530abf4d58ba2d70106107c28803 [diff] |
Snap for 8029350 from f57add15335e530abf4d58ba2d70106107c28803 to main-cg-testing-release Change-Id: Ia7d65ce1b4c59ad0a21e51932432635da3e7821e
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.