5 releases (3 breaking)

0.4.0 Jan 27, 2025
0.3.0 Dec 18, 2020
0.2.0 Jun 12, 2019
0.1.2 Jun 6, 2019
0.1.0 Oct 4, 2018

#334 in Algorithms

Download history 751572/week @ 2024-12-08 697679/week @ 2024-12-15 270229/week @ 2024-12-22 379719/week @ 2024-12-29 711229/week @ 2025-01-05 810793/week @ 2025-01-12 723785/week @ 2025-01-19 814431/week @ 2025-01-26 968884/week @ 2025-02-02 1082374/week @ 2025-02-09 943040/week @ 2025-02-16 1057021/week @ 2025-02-23 1382564/week @ 2025-03-02 1391557/week @ 2025-03-09 1572672/week @ 2025-03-16 1730961/week @ 2025-03-23

6,145,191 downloads per month
Used in 6,008 crates (269 directly)

MIT/Apache

11KB
94 lines

rand_xorshift

Test Status Latest version Book API API

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:

Crate Features

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 serde feature includes implementations of Serialize and Deserialize for the included RNGs.

License

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.

Dependencies

~215KB