2022-03-14 20:58:13 +00:00
|
|
|
//go:build ((linux && amd64) || (linux && arm64) || (darwin && amd64) || (darwin && arm64) || (windows && amd64)) && !blst_disabled
|
2021-09-18 17:56:05 +00:00
|
|
|
// +build linux,amd64 linux,arm64 darwin,amd64 darwin,arm64 windows,amd64
|
2021-04-11 11:11:15 +00:00
|
|
|
// +build !blst_disabled
|
2020-09-16 13:28:28 +00:00
|
|
|
|
|
|
|
package blst
|
|
|
|
|
|
|
|
import blst "github.com/supranational/blst/bindings/go"
|
|
|
|
|
|
|
|
// Internal types for blst.
|
|
|
|
type blstPublicKey = blst.P1Affine
|
|
|
|
type blstSignature = blst.P2Affine
|
|
|
|
type blstAggregateSignature = blst.P2Aggregate
|
|
|
|
type blstAggregatePublicKey = blst.P1Aggregate
|