An implementation of the keccak-F[1600,800,400,200].
Add this to your Cargo.toml
:
toml
[dependencies]
keccakf = "0.2"
choose which function you want to use:
rust
use keccakf::{Keccak1600State, Permutation};
let state = Keccak1600State::default();
state.permute();
Permutable
to Permutation
.