2020-06-25 00:47:51 +00:00
|
|
|
package bls
|
|
|
|
|
2020-10-30 19:06:33 +00:00
|
|
|
import (
|
|
|
|
"github.com/prysmaticlabs/prysm/shared/bls/common"
|
|
|
|
)
|
|
|
|
|
2020-06-25 00:47:51 +00:00
|
|
|
// DomainByteLength length of domain byte array.
|
|
|
|
const DomainByteLength = 4
|
|
|
|
|
|
|
|
// CurveOrder for the BLS12-381 curve.
|
|
|
|
const CurveOrder = "52435875175126190479447740508185965837690552500527637822603658699938581184513"
|
2020-10-30 19:06:33 +00:00
|
|
|
|
|
|
|
// ZeroSecretKey represents a zero secret key.
|
|
|
|
var ZeroSecretKey = common.ZeroSecretKey
|
|
|
|
|
|
|
|
// InfinitePublicKey represents an infinite public key.
|
|
|
|
var InfinitePublicKey = common.InfinitePublicKey
|