mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-09 15:37:56 -05:00
15 lines
319 B
Go
15 lines
319 B
Go
package bls
|
|
|
|
import (
|
|
"github.com/OffchainLabs/prysm/v7/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
|