prysm-pulse/crypto/bls/interface.go
terence tsao ee5d75732d
Add pkg crypto (#9603)
* Add pkg crypto

* Update go.yml

Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
2021-09-15 22:55:11 +00:00

15 lines
317 B
Go

package bls
import (
"github.com/prysmaticlabs/prysm/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