File tree 1 file changed +32
-0
lines changed
crates/starknet-types-core/src/hash
1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,18 @@ impl StarkHash for Poseidon {
30
30
}
31
31
}
32
32
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
+
33
45
#[ cfg( test) ]
34
46
mod tests {
35
47
use super :: * ;
@@ -60,4 +72,24 @@ mod tests {
60
72
. unwrap ( ) ;
61
73
assert_eq ! ( Poseidon :: hash_array( & [ a, b, c] ) , expected) ;
62
74
}
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
+ }
63
95
}
You can’t perform that action at this time.
0 commit comments