2020-10-30 19:06:33 +00:00
|
|
|
package common
|
|
|
|
|
2024-02-15 05:46:47 +00:00
|
|
|
import fieldparams "github.com/prysmaticlabs/prysm/v5/config/fieldparams"
|
2022-01-06 17:33:08 +00:00
|
|
|
|
2020-10-30 19:06:33 +00:00
|
|
|
// ZeroSecretKey represents a zero secret key.
|
|
|
|
var ZeroSecretKey = [32]byte{}
|
|
|
|
|
2021-07-14 11:12:50 +00:00
|
|
|
// InfinitePublicKey represents an infinite public key (G1 Point at Infinity).
|
2022-01-06 17:33:08 +00:00
|
|
|
var InfinitePublicKey = [fieldparams.BLSPubkeyLength]byte{0xC0}
|
2021-07-14 11:12:50 +00:00
|
|
|
|
|
|
|
// InfiniteSignature represents an infinite signature (G2 Point at Infinity).
|
|
|
|
var InfiniteSignature = [96]byte{0xC0}
|