mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 12:57:18 +00:00
ee5d75732d
* Add pkg crypto * Update go.yml Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
15 lines
317 B
Go
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
|