ChaChaCha: ChaCha with a little extra Cha
Extremely fast ChaCha implementation. Primarily made for use as a CRNG in the ya-rand crate,
but should be just as usable anywhere else you might want to use ChaCha.
Examples
use ;
// Create a new `ChaCha12Djb` instance with a key that is all ones,
// a counter starting at 69, and a nonce of 0 and 1 (the last nonce
// value is discarded in the `Djb` variants).
let mut chacha = new;
// 256 bytes of output
let block_output: = chacha.get_block;
let all_zeros = block_output.into_iter.all;
assert!;