ChaCha20Rng constructor

ChaCha20Rng(
  1. List<int> seed, {
  2. int streamId = 0,
})

Implementation

ChaCha20Rng(List<int> seed, {this.streamId = 0})
  : assert(seed.length == 32),
    _key = seed.clone();