mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-03 08:37:37 +00:00
150640305a
* add changes * tidy * stranded dep * fixed commit * use real commit Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
13 lines
363 B
Go
13 lines
363 B
Go
// +build linux,amd64 linux,arm64 darwin,amd64 darwin,arm64 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
|