github.com/amazechain/amc@v0.1.3/common/crypto/bls/blst/aliases.go (about) 1 //go:build (android || (linux && amd64) || (linux && arm64) || (darwin && amd64) || (darwin && arm64) || (windows && amd64)) && !blst_disabled 2 3 package blst 4 5 import blst "github.com/supranational/blst/bindings/go" 6 7 // Internal types for blst. 8 type blstPublicKey = blst.P1Affine 9 type blstSignature = blst.P2Affine 10 type blstAggregateSignature = blst.P2Aggregate 11 type blstAggregatePublicKey = blst.P1Aggregate