1# rand_isaac
2
3[![Build Status](https://travis-ci.org/rust-random/rand.svg)](https://travis-ci.org/rust-random/rand)
4[![Build Status](https://ci.appveyor.com/api/projects/status/github/rust-random/rand?svg=true)](https://ci.appveyor.com/project/rust-random/rand)
5[![Latest version](https://img.shields.io/crates/v/rand_isaac.svg)](https://crates.io/crates/rand_isaac)
6[![Book](https://img.shields.io/badge/book-master-yellow.svg)](https://rust-random.github.io/book/)
7[![API](https://img.shields.io/badge/api-master-yellow.svg)](https://rust-random.github.io/rand/rand_isaac)
8[![API](https://docs.rs/rand_isaac/badge.svg)](https://docs.rs/rand_isaac)
9[![Minimum rustc version](https://img.shields.io/badge/rustc-1.22+-lightgray.svg)](https://github.com/rust-random/rand#rust-version-requirements)
10
11Implements the ISAAC and ISAAC-64 random number generators.
12
13ISAAC stands for "Indirection, Shift, Accumulate, Add, and Count" which are
14the principal bitwise operations employed. It is the most advanced of a
15series of array based random number generator designed by Robert Jenkins
16in 1996[^1][^2].
17
18ISAAC is notably fast and produces excellent quality random numbers for
19non-cryptographic applications.
20
21Links:
22
23-   [API documentation (master)](https://rust-random.github.io/rand/rand_isaac)
24-   [API documentation (docs.rs)](https://docs.rs/rand_isaac)
25-   [Changelog](CHANGELOG.md)
26
27[rand]: https://crates.io/crates/rand
28[^1]: Bob Jenkins, [*ISAAC: A fast cryptographic random number generator*](http://burtleburtle.net/bob/rand/isaacafa.html)
29[^2]: Bob Jenkins, [*ISAAC and RC4*](http://burtleburtle.net/bob/rand/isaac.html)
30
31
32## Crate Features
33
34`rand_isaac` is `no_std` compatible. It does not require any functionality
35outside of the `core` lib, thus there are no features to configure.
36
37The `serde1` feature includes implementations of `Serialize` and `Deserialize`
38for the included RNGs.
39
40
41# License
42
43`rand_isaac` is distributed under the terms of both the MIT license and the
44Apache License (Version 2.0).
45
46See [LICENSE-APACHE](LICENSE-APACHE) and [LICENSE-MIT](LICENSE-MIT), and
47[COPYRIGHT](COPYRIGHT) for details.
48