2016-02-17 13:56:16 -08:00
|
|
|
// Copyright 2013-2015 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
|
//
|
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
use io;
|
|
|
|
|
use mem;
|
|
|
|
|
use rand::Rng;
|
|
|
|
|
use sys::c;
|
|
|
|
|
|
2017-10-18 11:43:17 -07:00
|
|
|
pub struct OsRng;
|
2016-02-17 13:56:16 -08:00
|
|
|
|
|
|
|
|
impl OsRng {
|
|
|
|
|
/// Create a new `OsRng`.
|
|
|
|
|
pub fn new() -> io::Result<OsRng> {
|
2017-10-18 11:43:17 -07:00
|
|
|
Ok(OsRng)
|
2016-02-17 13:56:16 -08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl Rng for OsRng {
|
|
|
|
|
fn next_u32(&mut self) -> u32 {
|
|
|
|
|
let mut v = [0; 4];
|
|
|
|
|
self.fill_bytes(&mut v);
|
|
|
|
|
unsafe { mem::transmute(v) }
|
|
|
|
|
}
|
2017-10-18 11:43:17 -07:00
|
|
|
|
2016-02-17 13:56:16 -08:00
|
|
|
fn next_u64(&mut self) -> u64 {
|
|
|
|
|
let mut v = [0; 8];
|
|
|
|
|
self.fill_bytes(&mut v);
|
|
|
|
|
unsafe { mem::transmute(v) }
|
|
|
|
|
}
|
2017-10-18 11:43:17 -07:00
|
|
|
|
2016-02-17 13:56:16 -08:00
|
|
|
fn fill_bytes(&mut self, v: &mut [u8]) {
|
2017-10-18 11:43:17 -07:00
|
|
|
// RtlGenRandom takes an ULONG (u32) for the length so we need to
|
2016-02-25 01:35:41 +00:00
|
|
|
// split up the buffer.
|
2017-10-18 11:43:17 -07:00
|
|
|
for slice in v.chunks_mut(<c::ULONG>::max_value() as usize) {
|
2016-02-25 01:35:41 +00:00
|
|
|
let ret = unsafe {
|
2017-10-18 11:43:17 -07:00
|
|
|
c::RtlGenRandom(slice.as_mut_ptr(), slice.len() as c::ULONG)
|
2016-02-25 01:35:41 +00:00
|
|
|
};
|
|
|
|
|
if ret == 0 {
|
|
|
|
|
panic!("couldn't generate random bytes: {}",
|
|
|
|
|
io::Error::last_os_error());
|
|
|
|
|
}
|
2016-02-17 13:56:16 -08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|