mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-07 10:12:19 +00:00
4ddacd57c6
* fix blst build tag * fix fuzz build * remove buildkite specific bazelrc line * remove conflicting kafka gotag in CI * fix again Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com> Co-authored-by: Raul Jordan <raul@prysmaticlabs.com>
13 lines
321 B
Go
13 lines
321 B
Go
// +build linux,amd64 linux,arm64
|
|
// +build blst_enabled
|
|
|
|
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
|