mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-06 01:32:18 +00:00
15 lines
313 B
Go
15 lines
313 B
Go
|
package bls
|
||
|
|
||
|
import (
|
||
|
"github.com/prysmaticlabs/prysm/shared/bls/iface"
|
||
|
)
|
||
|
|
||
|
// PublicKey represents a BLS public key.
|
||
|
type PublicKey = iface.PublicKey
|
||
|
|
||
|
// SecretKey represents a BLS secret or private key.
|
||
|
type SecretKey = iface.SecretKey
|
||
|
|
||
|
// Signature represents a BLS signature.
|
||
|
type Signature = iface.Signature
|