mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-09 03:01:19 +00:00
12 lines
298 B
Go
12 lines
298 B
Go
|
// +build linux,amd64 linux,arm64
|
||
|
|
||
|
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
|