prysm-pulse/crypto/bls/interface.go

15 lines
320 B
Go
Raw Normal View History

package bls
import (
"github.com/prysmaticlabs/prysm/v5/crypto/bls/common"
)
// PublicKey represents a BLS public key.
type PublicKey = common.PublicKey
// SecretKey represents a BLS secret or private key.
type SecretKey = common.SecretKey
// Signature represents a BLS signature.
type Signature = common.Signature