ChaCha.permute

Do a ChaCha permutation on the input by applying n times the inner round function. This is actually the block function without adding the input to the permutation.

struct ChaCha(uint rounds)
@safe nothrow @nogc static
void
permute
pure
(
ref uint[16] state
)
if (
rounds % 2 == 0
)

Meta