Crates.io | keccakf |
lib.rs | keccakf |
version | 0.2.1 |
source | src |
created_at | 2019-05-14 13:02:39.962893 |
updated_at | 2022-11-25 17:16:51.031928 |
description | An implementation of the keccak-F[1600,800,400,200]. |
homepage | https://github.com/tiannian/keccakf |
repository | https://github.com/tiannian/keccakf |
max_upload_size | |
id | 134269 |
size | 13,486 |
An implementation of the keccak-F[1600,800,400,200].
Add this to your Cargo.toml
:
[dependencies]
keccakf = "0.2"
choose which function you want to use:
use keccakf::{Keccak1600State, Permutation};
let state = Keccak1600State::default();
state.permute();
0.2.1: update README
0.2.0: refactor code.
0.1.3: Add bits and nbytes in parameter. Change trait Permutable
to Permutation
.