mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-07 02:02:18 +00:00
c65c6ebc38
* invert go tag * fix rc * try again * Revert "try again" This reverts commit 70ff7658b7cbc43b903bac267f4d7c9833536f8b. * fix fuzz * Update shared/bls/blst/BUILD.bazel Co-authored-by: Victor Farazdagi <simple.square@gmail.com> Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com> Co-authored-by: Victor Farazdagi <simple.square@gmail.com>
13 lines
350 B
Go
13 lines
350 B
Go
// +build linux,amd64 linux,arm64 darwin,amd64 windows,amd64
|
|
// +build !blst_disabled
|
|
|
|
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
|