Skip to content

Commit c03eebe

Browse files
authored
feat: Add Podeidon::hades_permutation (#58)
1 parent 3921cb9 commit c03eebe

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

crates/starknet-types-core/src/hash/poseidon.rs

+32
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,18 @@ impl StarkHash for Poseidon {
3030
}
3131
}
3232

33+
impl Poseidon {
34+
/// Computes the Hades permutation over a mutable state of 3 Felts, as defined
35+
/// in <https://docs.starknet.io/documentation/architecture_and_concepts/Cryptography/hash-functions/#poseidon_array_hash>
36+
pub fn hades_permutation(state: &mut [Felt; 3]) {
37+
let mut state_inner = [state[0].0, state[1].0, state[2].0];
38+
PoseidonCairoStark252::hades_permutation(&mut state_inner);
39+
for i in 0..3 {
40+
state[i] = Felt(state_inner[i]);
41+
}
42+
}
43+
}
44+
3345
#[cfg(test)]
3446
mod tests {
3547
use super::*;
@@ -60,4 +72,24 @@ mod tests {
6072
.unwrap();
6173
assert_eq!(Poseidon::hash_array(&[a, b, c]), expected);
6274
}
75+
76+
#[test]
77+
fn test_hades_permutation() {
78+
let mut state = [
79+
Felt::from_hex("0x9").unwrap(),
80+
Felt::from_hex("0xb").unwrap(),
81+
Felt::from_hex("0x2").unwrap(),
82+
];
83+
let expected = [
84+
Felt::from_hex("0x510f3a3faf4084e3b1e95fd44c30746271b48723f7ea9c8be6a9b6b5408e7e6")
85+
.unwrap(),
86+
Felt::from_hex("0x4f511749bd4101266904288021211333fb0a514cb15381af087462fa46e6bd9")
87+
.unwrap(),
88+
Felt::from_hex("0x186f6dd1a6e79cb1b66d505574c349272cd35c07c223351a0990410798bb9d8")
89+
.unwrap(),
90+
];
91+
Poseidon::hades_permutation(&mut state);
92+
93+
assert_eq!(state, expected);
94+
}
6395
}

0 commit comments

Comments
 (0)