2017-12-15 10:50:18 +00:00
|
|
|
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
2018-01-09 08:39:55 +02:00
|
|
|
// https://rust-lang.org/COPYRIGHT.
|
2017-12-15 10:50:18 +00:00
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
2018-01-09 08:39:55 +02:00
|
|
|
// https://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your
|
2017-12-15 10:50:18 +00:00
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
//! The ISAAC-64 random number generator.
|
|
|
|
|
2018-01-12 21:46:30 +01:00
|
|
|
use core::{fmt, slice};
|
2017-12-15 10:50:18 +00:00
|
|
|
use core::num::Wrapping as w;
|
|
|
|
|
2018-03-08 11:54:13 +00:00
|
|
|
use rand_core::{RngCore, SeedableRng, Error, impls, le};
|
2017-12-15 10:50:18 +00:00
|
|
|
|
2017-09-11 21:01:04 +02:00
|
|
|
#[allow(non_camel_case_types)]
|
2017-12-15 10:50:18 +00:00
|
|
|
type w64 = w<u64>;
|
|
|
|
|
2017-09-11 21:01:04 +02:00
|
|
|
const RAND_SIZE_LEN: usize = 8;
|
|
|
|
const RAND_SIZE: usize = 1 << RAND_SIZE_LEN;
|
2017-12-15 10:50:18 +00:00
|
|
|
|
2017-09-11 22:33:07 +02:00
|
|
|
/// A random number generator that uses ISAAC-64, the 64-bit variant of the
|
|
|
|
/// ISAAC algorithm.
|
2017-12-15 10:50:18 +00:00
|
|
|
///
|
2017-09-11 22:33:07 +02:00
|
|
|
/// ISAAC stands for "Indirection, Shift, Accumulate, Add, and Count" which are
|
|
|
|
/// the principal bitwise operations employed. It is the most advanced of a
|
|
|
|
/// series of array based random number generator designed by Robert Jenkins
|
|
|
|
/// in 1996[1].
|
2017-12-15 10:50:18 +00:00
|
|
|
///
|
2017-09-11 22:33:07 +02:00
|
|
|
/// ISAAC-64 is mostly similar to ISAAC. Because it operates on 64-bit integers
|
|
|
|
/// instead of 32-bit, it uses twice as much memory to hold its state and
|
|
|
|
/// results. Also it uses different constants for shifts and indirect indexing,
|
|
|
|
/// optimized to give good results for 64bit arithmetic.
|
|
|
|
///
|
2018-03-29 08:50:37 +02:00
|
|
|
/// ISAAC-64 is notably fast and produces excellent quality random numbers for
|
|
|
|
/// non-cryptographic applications.
|
|
|
|
///
|
|
|
|
/// In spite of being designed with cryptographic security in mind, ISAAC hasn't
|
|
|
|
/// been stringently cryptanalyzed and thus cryptographers do not not
|
|
|
|
/// consensually trust it to be secure. When looking for a secure RNG, prefer
|
|
|
|
/// [`Hc128Rng`] instead, which, like ISAAC, is an array-based RNG and one of
|
|
|
|
/// the stream-ciphers selected the by eSTREAM contest.
|
|
|
|
///
|
2017-09-11 22:33:07 +02:00
|
|
|
/// ## Overview of the ISAAC-64 algorithm:
|
|
|
|
/// (in pseudo-code)
|
|
|
|
///
|
|
|
|
/// ```text
|
|
|
|
/// Input: a, b, c, s[256] // state
|
|
|
|
/// Output: r[256] // results
|
|
|
|
///
|
|
|
|
/// mix(a,i) = !(a ^ a << 21) if i = 0 mod 4
|
|
|
|
/// a ^ a >> 5 if i = 1 mod 4
|
|
|
|
/// a ^ a << 12 if i = 2 mod 4
|
|
|
|
/// a ^ a >> 33 if i = 3 mod 4
|
|
|
|
///
|
|
|
|
/// c = c + 1
|
|
|
|
/// b = b + c
|
|
|
|
///
|
|
|
|
/// for i in 0..256 {
|
|
|
|
/// x = s_[i]
|
|
|
|
/// a = mix(a,i) + s[i+128 mod 256]
|
|
|
|
/// y = a + b + s[x>>3 mod 256]
|
|
|
|
/// s[i] = y
|
|
|
|
/// b = x + s[y>>11 mod 256]
|
|
|
|
/// r[i] = b
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
///
|
2018-03-27 12:10:50 +01:00
|
|
|
/// See for more information the documentation of [`IsaacRng`].
|
2017-09-11 22:33:07 +02:00
|
|
|
///
|
2018-01-08 19:58:00 +01:00
|
|
|
/// [1]: Bob Jenkins, [*ISAAC and RC4*](
|
|
|
|
/// http://burtleburtle.net/bob/rand/isaac.html)
|
2018-03-29 08:50:37 +02:00
|
|
|
///
|
2018-03-27 12:10:50 +01:00
|
|
|
/// [`IsaacRng`]: prng/isaac/struct.IsaacRng.html
|
2018-03-29 08:50:37 +02:00
|
|
|
/// [`Hc128Rng`]: prng/hc128/struct.Hc128Rng.html
|
2018-01-21 21:06:24 -08:00
|
|
|
#[cfg_attr(feature="serde-1", derive(Serialize,Deserialize))]
|
2017-12-15 10:50:18 +00:00
|
|
|
pub struct Isaac64Rng {
|
2018-01-21 21:06:24 -08:00
|
|
|
#[cfg_attr(feature="serde-1",serde(with="super::isaac_serde::rand_size_serde"))]
|
2017-11-11 07:52:59 +01:00
|
|
|
rsl: [u64; RAND_SIZE],
|
2018-01-21 21:06:24 -08:00
|
|
|
#[cfg_attr(feature="serde-1",serde(with="super::isaac_serde::rand_size_serde"))]
|
2017-09-11 21:01:04 +02:00
|
|
|
mem: [w64; RAND_SIZE],
|
2017-12-15 10:50:18 +00:00
|
|
|
a: w64,
|
|
|
|
b: w64,
|
|
|
|
c: w64,
|
2017-11-11 07:52:59 +01:00
|
|
|
index: u32,
|
2017-11-11 08:04:20 +01:00
|
|
|
half_used: bool, // true if only half of the previous result is used
|
2017-12-15 10:50:18 +00:00
|
|
|
}
|
|
|
|
|
2017-12-15 11:54:12 +00:00
|
|
|
// Cannot be derived because [u64; 256] does not implement Clone
|
2017-10-20 18:20:47 +02:00
|
|
|
// FIXME: remove once RFC 2000 gets implemented
|
2017-12-15 11:54:12 +00:00
|
|
|
impl Clone for Isaac64Rng {
|
|
|
|
fn clone(&self) -> Isaac64Rng {
|
|
|
|
Isaac64Rng {
|
|
|
|
rsl: self.rsl,
|
|
|
|
mem: self.mem,
|
|
|
|
a: self.a,
|
|
|
|
b: self.b,
|
|
|
|
c: self.c,
|
2017-11-11 07:52:59 +01:00
|
|
|
index: self.index,
|
2017-11-11 08:04:20 +01:00
|
|
|
half_used: self.half_used,
|
2017-12-15 10:50:18 +00:00
|
|
|
}
|
2017-12-15 11:54:12 +00:00
|
|
|
}
|
|
|
|
}
|
2017-12-15 10:50:18 +00:00
|
|
|
|
2017-10-21 18:56:15 +02:00
|
|
|
// Custom Debug implementation that does not expose the internal state
|
2017-12-15 11:54:12 +00:00
|
|
|
impl fmt::Debug for Isaac64Rng {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
write!(f, "Isaac64Rng {{}}")
|
|
|
|
}
|
|
|
|
}
|
2017-12-15 10:50:18 +00:00
|
|
|
|
2017-12-15 11:54:12 +00:00
|
|
|
impl Isaac64Rng {
|
2017-12-27 11:58:57 +00:00
|
|
|
/// Create a 64-bit ISAAC random number generator using the
|
|
|
|
/// default fixed seed.
|
2018-03-24 17:14:42 +01:00
|
|
|
///
|
|
|
|
/// DEPRECATED. `Isaac64Rng::new_from_u64(0)` will produce identical results.
|
|
|
|
#[deprecated(since="0.5.0", note="use the NewRng or SeedableRng trait")]
|
2017-12-27 11:58:57 +00:00
|
|
|
pub fn new_unseeded() -> Isaac64Rng {
|
|
|
|
Self::new_from_u64(0)
|
|
|
|
}
|
2018-01-09 08:35:22 +02:00
|
|
|
|
2017-12-15 11:54:12 +00:00
|
|
|
/// Creates an ISAAC-64 random number generator using an u64 as seed.
|
|
|
|
/// If `seed == 0` this will produce the same stream of random numbers as
|
|
|
|
/// the reference implementation when used unseeded.
|
|
|
|
pub fn new_from_u64(seed: u64) -> Isaac64Rng {
|
2017-10-20 18:20:47 +02:00
|
|
|
let mut key = [w(0); RAND_SIZE];
|
|
|
|
key[0] = w(seed);
|
|
|
|
// Initialize with only one pass.
|
2017-12-15 11:54:12 +00:00
|
|
|
// A second pass does not improve the quality here, because all of
|
|
|
|
// the seed was already available in the first round.
|
|
|
|
// Not doing the second pass has the small advantage that if `seed == 0`
|
|
|
|
// this method produces exactly the same state as the reference
|
|
|
|
// implementation when used unseeded.
|
2017-10-20 18:20:47 +02:00
|
|
|
init(key, 1)
|
2017-12-15 10:50:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Refills the output buffer (`self.rsl`)
|
2017-09-11 22:33:07 +02:00
|
|
|
/// See also the pseudocode desciption of the algorithm at the top of this
|
|
|
|
/// file.
|
|
|
|
///
|
|
|
|
/// Optimisations used (similar to the reference implementation):
|
|
|
|
/// - The loop is unrolled 4 times, once for every constant of mix().
|
|
|
|
/// - The contents of the main loop are moved to a function `rngstep`, to
|
|
|
|
/// reduce code duplication.
|
|
|
|
/// - We use local variables for a and b, which helps with optimisations.
|
|
|
|
/// - We split the main loop in two, one that operates over 0..128 and one
|
|
|
|
/// over 128..256. This way we can optimise out the addition and modulus
|
|
|
|
/// from `s[i+128 mod 256]`.
|
|
|
|
/// - We maintain one index `i` and add `m` or `m2` as base (m2 for the
|
|
|
|
/// `s[i+128 mod 256]`), relying on the optimizer to turn it into pointer
|
|
|
|
/// arithmetic.
|
2017-11-11 07:52:59 +01:00
|
|
|
/// - We fill `rsl` backwards. The reference implementation reads values
|
|
|
|
/// from `rsl` in reverse. We read them in the normal direction, to make
|
|
|
|
/// `fill_bytes` a memcopy. To maintain compatibility we fill in reverse.
|
2017-12-15 10:50:18 +00:00
|
|
|
fn isaac64(&mut self) {
|
2017-09-11 21:01:04 +02:00
|
|
|
self.c += w(1);
|
2017-12-15 10:50:18 +00:00
|
|
|
// abbreviations
|
|
|
|
let mut a = self.a;
|
|
|
|
let mut b = self.b + self.c;
|
2017-09-11 21:01:04 +02:00
|
|
|
const MIDPOINT: usize = RAND_SIZE / 2;
|
|
|
|
|
2017-11-11 07:52:59 +01:00
|
|
|
#[inline]
|
2017-09-11 21:01:04 +02:00
|
|
|
fn ind(mem:&[w64; RAND_SIZE], v: w64, amount: usize) -> w64 {
|
|
|
|
let index = (v >> amount).0 as usize % RAND_SIZE;
|
|
|
|
mem[index]
|
2017-12-15 10:50:18 +00:00
|
|
|
}
|
|
|
|
|
2017-11-11 07:52:59 +01:00
|
|
|
#[inline]
|
2017-09-11 21:01:04 +02:00
|
|
|
fn rngstep(ctx: &mut Isaac64Rng,
|
|
|
|
mix: w64,
|
|
|
|
a: &mut w64,
|
|
|
|
b: &mut w64,
|
|
|
|
base: usize,
|
|
|
|
m: usize,
|
|
|
|
m2: usize) {
|
|
|
|
let x = ctx.mem[base + m];
|
|
|
|
*a = mix + ctx.mem[base + m2];
|
|
|
|
let y = *a + *b + ind(&ctx.mem, x, 3);
|
|
|
|
ctx.mem[base + m] = y;
|
|
|
|
*b = x + ind(&ctx.mem, y, 3 + RAND_SIZE_LEN);
|
2017-11-11 07:52:59 +01:00
|
|
|
ctx.rsl[RAND_SIZE - 1 - base - m] = (*b).0;
|
2017-09-11 21:01:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
let mut m = 0;
|
|
|
|
let mut m2 = MIDPOINT;
|
|
|
|
for i in (0..MIDPOINT/4).map(|i| i * 4) {
|
|
|
|
rngstep(self, !(a ^ (a << 21)), &mut a, &mut b, i + 0, m, m2);
|
|
|
|
rngstep(self, a ^ (a >> 5 ), &mut a, &mut b, i + 1, m, m2);
|
|
|
|
rngstep(self, a ^ (a << 12), &mut a, &mut b, i + 2, m, m2);
|
|
|
|
rngstep(self, a ^ (a >> 33), &mut a, &mut b, i + 3, m, m2);
|
|
|
|
}
|
|
|
|
|
|
|
|
m = MIDPOINT;
|
|
|
|
m2 = 0;
|
|
|
|
for i in (0..MIDPOINT/4).map(|i| i * 4) {
|
|
|
|
rngstep(self, !(a ^ (a << 21)), &mut a, &mut b, i + 0, m, m2);
|
|
|
|
rngstep(self, a ^ (a >> 5 ), &mut a, &mut b, i + 1, m, m2);
|
|
|
|
rngstep(self, a ^ (a << 12), &mut a, &mut b, i + 2, m, m2);
|
|
|
|
rngstep(self, a ^ (a >> 33), &mut a, &mut b, i + 3, m, m2);
|
2017-12-15 10:50:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
self.a = a;
|
|
|
|
self.b = b;
|
2017-11-11 07:52:59 +01:00
|
|
|
self.index = 0;
|
2017-11-11 08:04:20 +01:00
|
|
|
self.half_used = false;
|
2017-12-15 10:50:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-25 17:34:28 +00:00
|
|
|
impl RngCore for Isaac64Rng {
|
2017-12-15 10:50:18 +00:00
|
|
|
#[inline]
|
|
|
|
fn next_u32(&mut self) -> u32 {
|
2017-11-11 08:04:20 +01:00
|
|
|
// Using a local variable for `index`, and checking the size avoids a
|
|
|
|
// bounds check later on.
|
|
|
|
let mut index = self.index as usize * 2 - self.half_used as usize;
|
|
|
|
if index >= RAND_SIZE * 2 {
|
|
|
|
self.isaac64();
|
|
|
|
index = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
self.half_used = !self.half_used;
|
|
|
|
self.index += self.half_used as u32;
|
|
|
|
|
|
|
|
// Index as if this is a u32 slice.
|
|
|
|
let rsl = unsafe { &*(&mut self.rsl as *mut [u64; RAND_SIZE]
|
|
|
|
as *mut [u32; RAND_SIZE * 2]) };
|
|
|
|
|
|
|
|
if cfg!(target_endian = "little") {
|
|
|
|
rsl[index]
|
|
|
|
} else {
|
|
|
|
rsl[index ^ 1]
|
|
|
|
}
|
2017-12-15 10:50:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn next_u64(&mut self) -> u64 {
|
2017-11-11 07:52:59 +01:00
|
|
|
let mut index = self.index as usize;
|
|
|
|
if index >= RAND_SIZE {
|
2017-12-15 10:50:18 +00:00
|
|
|
self.isaac64();
|
2017-11-11 07:52:59 +01:00
|
|
|
index = 0;
|
2017-12-15 10:50:18 +00:00
|
|
|
}
|
|
|
|
|
2017-11-11 07:52:59 +01:00
|
|
|
let value = self.rsl[index];
|
|
|
|
self.index += 1;
|
2017-11-11 08:04:20 +01:00
|
|
|
self.half_used = false;
|
2017-11-11 07:52:59 +01:00
|
|
|
value
|
2017-12-15 10:50:18 +00:00
|
|
|
}
|
2017-12-15 11:54:12 +00:00
|
|
|
|
2017-12-15 11:19:40 +00:00
|
|
|
fn fill_bytes(&mut self, dest: &mut [u8]) {
|
2017-11-11 07:52:59 +01:00
|
|
|
let mut read_len = 0;
|
|
|
|
while read_len < dest.len() {
|
|
|
|
if self.index as usize >= RAND_SIZE {
|
|
|
|
self.isaac64();
|
|
|
|
}
|
|
|
|
|
|
|
|
let (consumed_u64, filled_u8) =
|
2018-01-20 19:55:18 +01:00
|
|
|
impls::fill_via_u64_chunks(&self.rsl[self.index as usize..],
|
2017-11-11 07:52:59 +01:00
|
|
|
&mut dest[read_len..]);
|
|
|
|
|
|
|
|
self.index += consumed_u64 as u32;
|
|
|
|
read_len += filled_u8;
|
|
|
|
}
|
2017-12-15 11:19:40 +00:00
|
|
|
}
|
2018-03-10 11:28:59 +00:00
|
|
|
|
|
|
|
fn try_fill_bytes(&mut self, dest: &mut [u8]) -> Result<(), Error> {
|
|
|
|
Ok(self.fill_bytes(dest))
|
|
|
|
}
|
2017-12-15 10:50:18 +00:00
|
|
|
}
|
|
|
|
|
2017-12-15 11:54:12 +00:00
|
|
|
/// Creates a new ISAAC-64 random number generator.
|
2017-10-20 18:20:47 +02:00
|
|
|
fn init(mut mem: [w64; RAND_SIZE], rounds: u32) -> Isaac64Rng {
|
2017-12-15 11:54:12 +00:00
|
|
|
// These numbers are the result of initializing a...h with the
|
|
|
|
// fractional part of the golden ratio in binary (0x9e3779b97f4a7c13)
|
|
|
|
// and applying mix() 4 times.
|
|
|
|
let mut a = w(0x647c4677a2884b7c);
|
|
|
|
let mut b = w(0xb9f8b322c73ac862);
|
|
|
|
let mut c = w(0x8c0ea5053d4712a0);
|
|
|
|
let mut d = w(0xb29b2e824a595524);
|
|
|
|
let mut e = w(0x82f053db8355e0ce);
|
|
|
|
let mut f = w(0x48fe4a0fa5a09315);
|
|
|
|
let mut g = w(0xae985bf2cbfc89ed);
|
|
|
|
let mut h = w(0x98f5704f6c44c0ab);
|
|
|
|
|
2017-10-20 18:20:47 +02:00
|
|
|
// Normally this should do two passes, to make all of the seed effect all
|
|
|
|
// of `mem`
|
|
|
|
for _ in 0..rounds {
|
|
|
|
for i in (0..RAND_SIZE/8).map(|i| i * 8) {
|
|
|
|
a += mem[i ]; b += mem[i+1];
|
|
|
|
c += mem[i+2]; d += mem[i+3];
|
|
|
|
e += mem[i+4]; f += mem[i+5];
|
|
|
|
g += mem[i+6]; h += mem[i+7];
|
|
|
|
mix(&mut a, &mut b, &mut c, &mut d,
|
|
|
|
&mut e, &mut f, &mut g, &mut h);
|
|
|
|
mem[i ] = a; mem[i+1] = b;
|
|
|
|
mem[i+2] = c; mem[i+3] = d;
|
|
|
|
mem[i+4] = e; mem[i+5] = f;
|
|
|
|
mem[i+6] = g; mem[i+7] = h;
|
|
|
|
}
|
2017-12-15 11:54:12 +00:00
|
|
|
}
|
2017-12-15 10:50:18 +00:00
|
|
|
|
2018-01-12 21:46:30 +01:00
|
|
|
Isaac64Rng {
|
2017-11-11 07:52:59 +01:00
|
|
|
rsl: [0; RAND_SIZE],
|
2018-03-27 12:10:50 +01:00
|
|
|
mem,
|
2017-12-15 11:54:12 +00:00
|
|
|
a: w(0),
|
|
|
|
b: w(0),
|
|
|
|
c: w(0),
|
2018-01-12 21:46:30 +01:00
|
|
|
index: RAND_SIZE as u32, // generate on first use
|
2017-11-11 08:04:20 +01:00
|
|
|
half_used: false,
|
2018-01-12 21:46:30 +01:00
|
|
|
}
|
2017-12-15 11:54:12 +00:00
|
|
|
}
|
|
|
|
|
2017-10-20 18:20:47 +02:00
|
|
|
fn mix(a: &mut w64, b: &mut w64, c: &mut w64, d: &mut w64,
|
|
|
|
e: &mut w64, f: &mut w64, g: &mut w64, h: &mut w64) {
|
|
|
|
*a -= *e; *f ^= *h >> 9; *h += *a;
|
|
|
|
*b -= *f; *g ^= *a << 9; *a += *b;
|
|
|
|
*c -= *g; *h ^= *b >> 23; *b += *c;
|
|
|
|
*d -= *h; *a ^= *c << 15; *c += *d;
|
|
|
|
*e -= *a; *b ^= *d >> 14; *d += *e;
|
|
|
|
*f -= *b; *c ^= *e << 20; *e += *f;
|
|
|
|
*g -= *c; *d ^= *f >> 17; *f += *g;
|
|
|
|
*h -= *d; *e ^= *g << 14; *g += *h;
|
|
|
|
}
|
|
|
|
|
2018-01-12 21:46:30 +01:00
|
|
|
impl SeedableRng for Isaac64Rng {
|
|
|
|
type Seed = [u8; 32];
|
2017-12-15 11:54:12 +00:00
|
|
|
|
2018-01-12 21:46:30 +01:00
|
|
|
fn from_seed(seed: Self::Seed) -> Self {
|
|
|
|
let mut seed_u64 = [0u64; 4];
|
|
|
|
le::read_u64_into(&seed, &mut seed_u64);
|
|
|
|
let mut seed_extended = [w(0); RAND_SIZE];
|
|
|
|
for (x, y) in seed_extended.iter_mut().zip(seed_u64.iter()) {
|
|
|
|
*x = w(*y);
|
2017-12-15 10:50:18 +00:00
|
|
|
}
|
2018-01-12 21:46:30 +01:00
|
|
|
init(seed_extended, 2)
|
2017-12-15 11:54:12 +00:00
|
|
|
}
|
2017-12-15 10:50:18 +00:00
|
|
|
|
2018-03-20 16:29:33 +00:00
|
|
|
fn from_rng<R: RngCore>(mut rng: R) -> Result<Self, Error> {
|
2018-01-12 21:46:30 +01:00
|
|
|
// Custom `from_rng` implementation that fills a seed with the same size
|
|
|
|
// as the entire state.
|
|
|
|
let mut seed = [w(0u64); RAND_SIZE];
|
|
|
|
unsafe {
|
|
|
|
let ptr = seed.as_mut_ptr() as *mut u8;
|
2017-12-15 10:50:18 +00:00
|
|
|
|
2018-01-12 21:46:30 +01:00
|
|
|
let slice = slice::from_raw_parts_mut(ptr, RAND_SIZE * 8);
|
|
|
|
rng.try_fill_bytes(slice)?;
|
|
|
|
}
|
|
|
|
for i in seed.iter_mut() {
|
|
|
|
*i = w(i.0.to_le());
|
2017-12-15 10:50:18 +00:00
|
|
|
}
|
|
|
|
|
2018-01-12 21:46:30 +01:00
|
|
|
Ok(init(seed, 2))
|
2017-12-15 10:50:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod test {
|
2018-01-25 17:34:28 +00:00
|
|
|
use {RngCore, SeedableRng};
|
2017-12-15 10:50:18 +00:00
|
|
|
use super::Isaac64Rng;
|
|
|
|
|
|
|
|
#[test]
|
2018-01-08 20:52:50 +01:00
|
|
|
fn test_isaac64_construction() {
|
|
|
|
// Test that various construction techniques produce a working RNG.
|
2018-01-12 21:46:30 +01:00
|
|
|
let seed = [1,0,0,0, 23,0,0,0, 200,1,0,0, 210,30,0,0,
|
|
|
|
0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0];
|
|
|
|
let mut rng1 = Isaac64Rng::from_seed(seed);
|
2018-01-08 20:52:50 +01:00
|
|
|
assert_eq!(rng1.next_u64(), 14964555543728284049);
|
|
|
|
|
2018-03-21 10:52:23 +00:00
|
|
|
let mut rng2 = Isaac64Rng::from_rng(rng1).unwrap();
|
2018-01-08 20:52:50 +01:00
|
|
|
assert_eq!(rng2.next_u64(), 919595328260451758);
|
2017-12-15 10:50:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2018-01-08 20:52:50 +01:00
|
|
|
fn test_isaac64_true_values_64() {
|
2018-01-12 21:46:30 +01:00
|
|
|
let seed = [1,0,0,0, 0,0,0,0, 23,0,0,0, 0,0,0,0,
|
|
|
|
200,1,0,0, 0,0,0,0, 210,30,0,0, 0,0,0,0];
|
|
|
|
let mut rng1 = Isaac64Rng::from_seed(seed);
|
2018-01-08 20:52:50 +01:00
|
|
|
let mut results = [0u64; 10];
|
|
|
|
for i in results.iter_mut() { *i = rng1.next_u64(); }
|
|
|
|
let expected = [
|
2018-01-14 13:44:52 +00:00
|
|
|
15071495833797886820, 7720185633435529318,
|
|
|
|
10836773366498097981, 5414053799617603544,
|
|
|
|
12890513357046278984, 17001051845652595546,
|
|
|
|
9240803642279356310, 12558996012687158051,
|
|
|
|
14673053937227185542, 1677046725350116783];
|
2018-01-08 20:52:50 +01:00
|
|
|
assert_eq!(results, expected);
|
2017-12-15 10:50:18 +00:00
|
|
|
|
2018-01-12 21:46:30 +01:00
|
|
|
let seed = [57,48,0,0, 0,0,0,0, 50,9,1,0, 0,0,0,0,
|
|
|
|
49,212,0,0, 0,0,0,0, 148,38,0,0, 0,0,0,0];
|
|
|
|
let mut rng2 = Isaac64Rng::from_seed(seed);
|
2017-12-15 10:50:18 +00:00
|
|
|
// skip forward to the 10000th number
|
2018-01-08 20:52:50 +01:00
|
|
|
for _ in 0..10000 { rng2.next_u64(); }
|
|
|
|
|
|
|
|
for i in results.iter_mut() { *i = rng2.next_u64(); }
|
|
|
|
let expected = [
|
|
|
|
18143823860592706164, 8491801882678285927, 2699425367717515619,
|
|
|
|
17196852593171130876, 2606123525235546165, 15790932315217671084,
|
|
|
|
596345674630742204, 9947027391921273664, 11788097613744130851,
|
|
|
|
10391409374914919106];
|
|
|
|
assert_eq!(results, expected);
|
2017-12-15 10:50:18 +00:00
|
|
|
}
|
2017-11-11 14:03:42 +01:00
|
|
|
|
2017-11-10 17:34:55 +00:00
|
|
|
#[test]
|
|
|
|
fn test_isaac64_true_values_32() {
|
2018-01-12 21:46:30 +01:00
|
|
|
let seed = [1,0,0,0, 0,0,0,0, 23,0,0,0, 0,0,0,0,
|
|
|
|
200,1,0,0, 0,0,0,0, 210,30,0,0, 0,0,0,0];
|
2018-01-08 20:52:50 +01:00
|
|
|
let mut rng = Isaac64Rng::from_seed(seed);
|
|
|
|
let mut results = [0u32; 12];
|
|
|
|
for i in results.iter_mut() { *i = rng.next_u32(); }
|
2017-11-10 17:34:55 +00:00
|
|
|
// Subset of above values, as an LE u32 sequence
|
2018-01-08 20:52:50 +01:00
|
|
|
let expected = [
|
2018-01-14 13:44:52 +00:00
|
|
|
3477963620, 3509106075,
|
|
|
|
687845478, 1797495790,
|
|
|
|
227048253, 2523132918,
|
|
|
|
4044335064, 1260557630,
|
|
|
|
4079741768, 3001306521,
|
|
|
|
69157722, 3958365844];
|
2018-01-08 20:52:50 +01:00
|
|
|
assert_eq!(results, expected);
|
2017-11-10 17:34:55 +00:00
|
|
|
}
|
2017-11-11 14:03:42 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_isaac64_true_values_mixed() {
|
2018-01-12 21:46:30 +01:00
|
|
|
let seed = [1,0,0,0, 0,0,0,0, 23,0,0,0, 0,0,0,0,
|
|
|
|
200,1,0,0, 0,0,0,0, 210,30,0,0, 0,0,0,0];
|
2017-11-11 14:03:42 +01:00
|
|
|
let mut rng = Isaac64Rng::from_seed(seed);
|
|
|
|
// Test alternating between `next_u64` and `next_u32` works as expected.
|
|
|
|
// Values are the same as `test_isaac64_true_values` and
|
|
|
|
// `test_isaac64_true_values_32`.
|
2018-01-14 13:44:52 +00:00
|
|
|
assert_eq!(rng.next_u64(), 15071495833797886820);
|
|
|
|
assert_eq!(rng.next_u32(), 687845478);
|
|
|
|
assert_eq!(rng.next_u32(), 1797495790);
|
|
|
|
assert_eq!(rng.next_u64(), 10836773366498097981);
|
|
|
|
assert_eq!(rng.next_u32(), 4044335064);
|
2017-11-11 14:03:42 +01:00
|
|
|
// Skip one u32
|
2018-01-14 13:44:52 +00:00
|
|
|
assert_eq!(rng.next_u64(), 12890513357046278984);
|
|
|
|
assert_eq!(rng.next_u32(), 69157722);
|
2017-11-11 14:03:42 +01:00
|
|
|
}
|
|
|
|
|
2017-11-10 17:21:53 +00:00
|
|
|
#[test]
|
|
|
|
fn test_isaac64_true_bytes() {
|
2018-01-12 21:46:30 +01:00
|
|
|
let seed = [1,0,0,0, 0,0,0,0, 23,0,0,0, 0,0,0,0,
|
|
|
|
200,1,0,0, 0,0,0,0, 210,30,0,0, 0,0,0,0];
|
2018-01-08 20:52:50 +01:00
|
|
|
let mut rng = Isaac64Rng::from_seed(seed);
|
|
|
|
let mut results = [0u8; 32];
|
|
|
|
rng.fill_bytes(&mut results);
|
2017-11-10 17:21:53 +00:00
|
|
|
// Same as first values in test_isaac64_true_values as bytes in LE order
|
2018-01-14 13:44:52 +00:00
|
|
|
let expected = [100, 131, 77, 207, 155, 181, 40, 209,
|
2018-01-12 21:46:30 +01:00
|
|
|
102, 176, 255, 40, 238, 155, 35, 107,
|
|
|
|
61, 123, 136, 13, 246, 243, 99, 150,
|
|
|
|
216, 167, 15, 241, 62, 149, 34, 75];
|
2018-01-08 20:52:50 +01:00
|
|
|
assert_eq!(results, expected);
|
2017-11-10 17:21:53 +00:00
|
|
|
}
|
2017-11-11 14:03:42 +01:00
|
|
|
|
2017-12-15 11:54:12 +00:00
|
|
|
#[test]
|
2018-01-08 20:52:50 +01:00
|
|
|
fn test_isaac64_new_uninitialized() {
|
2017-12-15 11:54:12 +00:00
|
|
|
// Compare the results from initializing `IsaacRng` with
|
|
|
|
// `new_from_u64(0)`, to make sure it is the same as the reference
|
|
|
|
// implementation when used uninitialized.
|
|
|
|
// Note: We only test the first 16 integers, not the full 256 of the
|
|
|
|
// first block.
|
|
|
|
let mut rng = Isaac64Rng::new_from_u64(0);
|
2018-01-08 20:52:50 +01:00
|
|
|
let mut results = [0u64; 16];
|
|
|
|
for i in results.iter_mut() { *i = rng.next_u64(); }
|
2017-12-15 11:54:12 +00:00
|
|
|
let expected: [u64; 16] = [
|
|
|
|
0xF67DFBA498E4937C, 0x84A5066A9204F380, 0xFEE34BD5F5514DBB,
|
|
|
|
0x4D1664739B8F80D6, 0x8607459AB52A14AA, 0x0E78BC5A98529E49,
|
|
|
|
0xFE5332822AD13777, 0x556C27525E33D01A, 0x08643CA615F3149F,
|
|
|
|
0xD0771FAF3CB04714, 0x30E86F68A37B008D, 0x3074EBC0488A3ADF,
|
|
|
|
0x270645EA7A2790BC, 0x5601A0A8D3763C6A, 0x2F83071F53F325DD,
|
|
|
|
0xB9090F3D42D2D2EA];
|
2018-01-08 20:52:50 +01:00
|
|
|
assert_eq!(results, expected);
|
2017-12-15 11:54:12 +00:00
|
|
|
}
|
|
|
|
|
2017-12-15 10:50:18 +00:00
|
|
|
#[test]
|
2018-01-08 20:52:50 +01:00
|
|
|
fn test_isaac64_clone() {
|
2018-01-12 21:46:30 +01:00
|
|
|
let seed = [1,0,0,0, 0,0,0,0, 23,0,0,0, 0,0,0,0,
|
|
|
|
200,1,0,0, 0,0,0,0, 210,30,0,0, 0,0,0,0];
|
|
|
|
let mut rng1 = Isaac64Rng::from_seed(seed);
|
|
|
|
let mut rng2 = rng1.clone();
|
2017-12-15 10:50:18 +00:00
|
|
|
for _ in 0..16 {
|
2018-01-12 21:46:30 +01:00
|
|
|
assert_eq!(rng1.next_u64(), rng2.next_u64());
|
2017-12-15 10:50:18 +00:00
|
|
|
}
|
|
|
|
}
|
2018-01-21 21:06:24 -08:00
|
|
|
|
|
|
|
#[test]
|
2018-01-25 20:53:36 +01:00
|
|
|
#[cfg(all(feature="serde-1", feature="std"))]
|
|
|
|
fn test_isaac64_serde() {
|
2018-01-21 21:06:24 -08:00
|
|
|
use bincode;
|
|
|
|
use std::io::{BufWriter, BufReader};
|
|
|
|
|
2018-01-25 20:53:36 +01:00
|
|
|
let seed = [1,0,0,0, 23,0,0,0, 200,1,0,0, 210,30,0,0,
|
|
|
|
57,48,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0];
|
|
|
|
let mut rng = Isaac64Rng::from_seed(seed);
|
2018-01-21 21:06:24 -08:00
|
|
|
|
|
|
|
let buf: Vec<u8> = Vec::new();
|
|
|
|
let mut buf = BufWriter::new(buf);
|
2018-03-11 16:16:04 +01:00
|
|
|
bincode::serialize_into(&mut buf, &rng).expect("Could not serialize");
|
2018-01-21 21:06:24 -08:00
|
|
|
|
|
|
|
let buf = buf.into_inner().unwrap();
|
|
|
|
let mut read = BufReader::new(&buf[..]);
|
2018-03-11 16:16:04 +01:00
|
|
|
let mut deserialized: Isaac64Rng = bincode::deserialize_from(&mut read).expect("Could not deserialize");
|
2018-01-21 21:06:24 -08:00
|
|
|
|
|
|
|
assert_eq!(rng.index, deserialized.index);
|
|
|
|
assert_eq!(rng.half_used, deserialized.half_used);
|
|
|
|
/* Can't assert directly because of the array size */
|
|
|
|
for (orig,deser) in rng.rsl.iter().zip(deserialized.rsl.iter()) {
|
|
|
|
assert_eq!(orig, deser);
|
|
|
|
}
|
|
|
|
for (orig,deser) in rng.mem.iter().zip(deserialized.mem.iter()) {
|
|
|
|
assert_eq!(orig, deser);
|
|
|
|
}
|
|
|
|
assert_eq!(rng.a, deserialized.a);
|
|
|
|
assert_eq!(rng.b, deserialized.b);
|
|
|
|
assert_eq!(rng.c, deserialized.c);
|
|
|
|
|
|
|
|
for _ in 0..16 {
|
|
|
|
assert_eq!(rng.next_u64(), deserialized.next_u64());
|
|
|
|
}
|
|
|
|
}
|
2017-12-15 10:50:18 +00:00
|
|
|
}
|