mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +00:00
b55ddb5a34
* Use go:build lines and remove obsolete +build lines * Run gazelle * Update crypto/bls/blst/stub.go * Update crypto/bls/blst/stub.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com> Co-authored-by: Nishant Das <nishdas93@gmail.com>
12 lines
396 B
Go
12 lines
396 B
Go
//go:build ((linux && amd64) || (linux && arm64) || (darwin && amd64) || (darwin && arm64) || (windows && amd64)) && !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
|