mirror of
https://github.com/logos-storage/gnark-plonky2-verifier.git
synced 2026-01-07 07:33:12 +00:00
removed Exp in goldilocks/base.go per V-SCT-VUL-016
This commit is contained in:
parent
f71795a697
commit
1a0372621c
@ -269,28 +269,6 @@ func InverseHint(_ *big.Int, inputs []*big.Int, results []*big.Int) error {
|
||||
return nil
|
||||
}
|
||||
|
||||
// Computes a field element raised to some power.
|
||||
func (p *Chip) Exp(x Variable, k *big.Int) Variable {
|
||||
if k.IsUint64() && k.Uint64() == 0 {
|
||||
return One()
|
||||
}
|
||||
|
||||
e := k
|
||||
if k.Sign() == -1 {
|
||||
panic("Unsupported negative exponent. Need to implement inversion.")
|
||||
}
|
||||
|
||||
z := x
|
||||
for i := e.BitLen() - 2; i >= 0; i-- {
|
||||
z = p.Mul(z, z)
|
||||
if e.Bit(i) == 1 {
|
||||
z = p.Mul(z, x)
|
||||
}
|
||||
}
|
||||
|
||||
return z
|
||||
}
|
||||
|
||||
// The hint used to split a GoldilocksVariable into 2 32 bit limbs.
|
||||
func SplitLimbsHint(_ *big.Int, inputs []*big.Int, results []*big.Int) error {
|
||||
if len(inputs) != 1 {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user