about summary refs log tree commit diff
path: root/src/librand/chacha.rs
AgeCommit message (Expand)AuthorLines
2015-04-24Change name of unit test sub-module to "tests".Johannes Oertel-1/+1
2015-04-21std: Remove deprecated/unstable num functionalityAlex Crichton-2/+0
2015-03-31replace deprecated as_slice()Emeliov Dmitrii-1/+1
2015-03-26Mass rename uint/int to usize/isizeAlex Crichton-4/+4
2015-03-05Remove integer suffixes where the types in compiled code are identical.Eduard Burtescu-3/+3
2015-03-03Accommodate arith-overflow in `rand` and `std::rand`.Felix S. Klock II-5/+6
2015-02-05cleanup: replace `as[_mut]_slice()` calls with deref coercionsJorge Aparicio-4/+4
2015-02-03Auto merge of #21613 - alfie:suffix-small, r=alexcrichtonbors-3/+3
2015-02-02More deprecating of i/u suffixesAlfie John-3/+3
2015-02-02`for x in xs.iter_mut()` -> `for x in &mut xs`Jorge Aparicio-1/+1
2015-01-29`for x in range(a, b)` -> `for x in a..b`Jorge Aparicio-6/+6
2015-01-29`range(a, b).foo()` -> `(a..b).foo()`Jorge Aparicio-2/+2
2015-01-21Fallout from stabilization.Aaron Turon-2/+1
2015-01-05More test fixes!Alex Crichton-2/+2
2015-01-05Add tests for ChaCha and Isaac Clone implsSimonas Kazlauskas-0/+10
2015-01-05Implement Clone for PRNGsSimonas Kazlauskas-3/+1
2015-01-03Remove deprecated functionalityAlex Crichton-2/+2
2015-01-03sed -i -s 's/#\[deriving(/#\[derive(/g' **/*.rsJorge Aparicio-1/+1
2015-01-02std: Stabilize the prelude moduleAlex Crichton-1/+1
2015-01-02More falloutNick Cameron-9/+9
2015-01-02Fallout - change array syntax to use `;`Nick Cameron-1/+1
2014-12-19librand: use `#[deriving(Copy)]`Jorge Aparicio-2/+1
2014-12-10rustc: Fix `make install`Alex Crichton-1/+1
2014-12-09rollup merge of #19614: steveklabnik/gh19599Alex Crichton-1/+1
2014-12-08librustc: Make `Copy` opt-in.Niko Matsakis-0/+2
2014-12-07remove usage of notrust from the docsSteve Klabnik-1/+1
2014-11-13Remove lots of numeric traits from the preludesBrendan Zabarauskas-0/+1
2014-10-25Fix spelling mistakes in comments.Joseph Crail-1/+1
2014-10-09rand: Convert statics to constantsAlex Crichton-3/+3
2014-09-30Include ChaCha pseudorandom generatorSamuel Neves-0/+285