mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-05-02 03:02:54 -04:00
13 lines
430 B
Go
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}
|