github.com/prysmaticlabs/prysm@v1.4.4/shared/bls/interface.go (about)

     1  package bls
     2  
     3  import (
     4  	"github.com/prysmaticlabs/prysm/shared/bls/common"
     5  )
     6  
     7  // PublicKey represents a BLS public key.
     8  type PublicKey = common.PublicKey
     9  
    10  // SecretKey represents a BLS secret or private key.
    11  type SecretKey = common.SecretKey
    12  
    13  // Signature represents a BLS signature.
    14  type Signature = common.Signature