Files
prysm/crypto/bls/common/constants.go
Bastin 92bd211e4d upgrade v6 to v7 (#15989)
* upgrade v6 to v7

* changelog

* update-go-ssz
2025-11-06 16:16:23 +00:00

13 lines
430 B
Go

package common
import fieldparams "github.com/OffchainLabs/prysm/v7/config/fieldparams"
// ZeroSecretKey represents a zero secret key.
var ZeroSecretKey = [32]byte{}
// InfinitePublicKey represents an infinite public key (G1 Point at Infinity).
var InfinitePublicKey = [fieldparams.BLSPubkeyLength]byte{0xC0}
// InfiniteSignature represents an infinite signature (G2 Point at Infinity).
var InfiniteSignature = [96]byte{0xC0}