mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-08 10:41:19 +00:00
ee5d75732d
* Add pkg crypto * Update go.yml Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
11 lines
331 B
Go
11 lines
331 B
Go
package common
|
|
|
|
// ZeroSecretKey represents a zero secret key.
|
|
var ZeroSecretKey = [32]byte{}
|
|
|
|
// InfinitePublicKey represents an infinite public key (G1 Point at Infinity).
|
|
var InfinitePublicKey = [48]byte{0xC0}
|
|
|
|
// InfiniteSignature represents an infinite signature (G2 Point at Infinity).
|
|
var InfiniteSignature = [96]byte{0xC0}
|