github.com/amazechain/amc@v0.1.3/common/crypto/bls/interface.go (about) 1 package bls 2 3 import "github.com/amazechain/amc/common/crypto/bls/common" 4 5 // PublicKey represents a BLS public key. 6 type PublicKey = common.PublicKey 7 8 // SecretKey represents a BLS secret or private key. 9 type SecretKey = common.SecretKey 10 11 // Signature represents a BLS signature. 12 type Signature = common.Signature