mirror of
https://github.com/logos-storage/gnark-plonky2-verifier.git
synced 2026-01-02 13:13:06 +00:00
fix for V-SCT-VUL-024
This commit is contained in:
parent
888b247e02
commit
7c7a01a395
@ -111,7 +111,7 @@ func (c *Chip) GetExtensionChallenge() gl.QuadraticExtensionVariable {
|
||||
}
|
||||
|
||||
func (c *Chip) GetHash() poseidon.GoldilocksHashOut {
|
||||
return [4]gl.Variable{c.GetChallenge(), c.GetChallenge(), c.GetChallenge(), c.GetChallenge()}
|
||||
return [poseidon.POSEIDON_GL_HASH_SIZE]gl.Variable{c.GetChallenge(), c.GetChallenge(), c.GetChallenge(), c.GetChallenge()}
|
||||
}
|
||||
|
||||
func (c *Chip) GetFriChallenges(
|
||||
|
||||
@ -9,10 +9,11 @@ const HALF_N_FULL_ROUNDS = 4
|
||||
const N_PARTIAL_ROUNDS = 22
|
||||
const SPONGE_WIDTH = 12
|
||||
const SPONGE_RATE = 8
|
||||
const POSEIDON_GL_HASH_SIZE = 4
|
||||
|
||||
type GoldilocksState = [SPONGE_WIDTH]gl.Variable
|
||||
type GoldilocksStateExtension = [SPONGE_WIDTH]gl.QuadraticExtensionVariable
|
||||
type GoldilocksHashOut = [4]gl.Variable
|
||||
type GoldilocksHashOut = [POSEIDON_GL_HASH_SIZE]gl.Variable
|
||||
|
||||
type GoldilocksChip struct {
|
||||
api frontend.API `gnark:"-"`
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user