Arkworks implementation of cryptographic hash function MiMC [AGR+16] on $n/n$ non-feistel and $2n/n$ feistel block cipher with variable round keys and exponentiation.
R1CS gadgets and CRH gadget traits are available under r1cs
crate feature.
We provide pre-generated round keys for some selected prime fields which available in circomlibjs package.
```rust // Create new struct to use as MiMC param
struct MyMiMCParams;
// Implement MiMCParameters
for that struct
impl MiMCParameters for MyMiMCParams {
const ROUNDS: usize = 220; // Customizable
const EXPONENT: usize = 3; // Customizable
}
// Randomize MiMC key and round keys
let mimc =
// Use MiMC directly, // Non-Feistel let _ = mimc.permutenonfeistel(vec![Fr::from(1), Fr::from(0)]) // Feistel let _ = mimc.permute_feistel(vec![Fr::from(1), Fr::from(0)]);
// Or use MiMC through arkworks's crypto-primitive traits
// CRH
let _ =
Enable specific feature containing parameter that will be used.
In cargo.toml
toml
arkworks-mimc = { ..., features = ["mimc-7-91-bn254"] }
In .rs
rust
let mimc = MiMC::<Fr, MIMC_7_91_BN254_PARAMS>::new(
1,
Fr::zero(),
round_keys_contants_to_vec(&MIMC_7_91_BN254_ROUND_KEYS),
);