mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 03:30:35 +00:00
5a66807989
* First take at updating everything to v5 * Patch gRPC gateway to use prysm v5 Fix patch * Update go ssz --------- Co-authored-by: Preston Van Loon <pvanloon@offchainlabs.com>
83 lines
3.1 KiB
Go
83 lines
3.1 KiB
Go
// Package bls implements a go-wrapper around a library implementing the
|
|
// BLS12-381 curve and signature scheme. This package exposes a public API for
|
|
// verifying and aggregating BLS signatures used by Ethereum.
|
|
package bls
|
|
|
|
import (
|
|
"github.com/prysmaticlabs/prysm/v5/crypto/bls/blst"
|
|
"github.com/prysmaticlabs/prysm/v5/crypto/bls/common"
|
|
"github.com/prysmaticlabs/prysm/v5/crypto/bls/herumi"
|
|
)
|
|
|
|
// Initialize herumi temporarily while we transition to blst for ethdo.
|
|
func init() {
|
|
herumi.Init()
|
|
}
|
|
|
|
// SecretKeyFromBytes creates a BLS private key from a BigEndian byte slice.
|
|
func SecretKeyFromBytes(privKey []byte) (SecretKey, error) {
|
|
return blst.SecretKeyFromBytes(privKey)
|
|
}
|
|
|
|
// PublicKeyFromBytes creates a BLS public key from a BigEndian byte slice.
|
|
func PublicKeyFromBytes(pubKey []byte) (PublicKey, error) {
|
|
return blst.PublicKeyFromBytes(pubKey)
|
|
}
|
|
|
|
// SignatureFromBytesNoValidation creates a BLS signature from a LittleEndian byte slice.
|
|
// It does not check validity of the signature, use only when the byte slice has
|
|
// already been verified
|
|
func SignatureFromBytesNoValidation(sig []byte) (Signature, error) {
|
|
return blst.SignatureFromBytesNoValidation(sig)
|
|
}
|
|
|
|
// SignatureFromBytes creates a BLS signature from a LittleEndian byte slice.
|
|
func SignatureFromBytes(sig []byte) (Signature, error) {
|
|
return blst.SignatureFromBytes(sig)
|
|
}
|
|
|
|
// MultipleSignaturesFromBytes creates a slice of BLS signatures from a LittleEndian 2d-byte slice.
|
|
func MultipleSignaturesFromBytes(sigs [][]byte) ([]Signature, error) {
|
|
return blst.MultipleSignaturesFromBytes(sigs)
|
|
}
|
|
|
|
// AggregatePublicKeys aggregates the provided raw public keys into a single key.
|
|
func AggregatePublicKeys(pubs [][]byte) (PublicKey, error) {
|
|
return blst.AggregatePublicKeys(pubs)
|
|
}
|
|
|
|
// AggregateMultiplePubkeys aggregates the provided decompressed keys into a single key.
|
|
func AggregateMultiplePubkeys(pubs []PublicKey) PublicKey {
|
|
return blst.AggregateMultiplePubkeys(pubs)
|
|
}
|
|
|
|
// AggregateSignatures converts a list of signatures into a single, aggregated sig.
|
|
func AggregateSignatures(sigs []common.Signature) common.Signature {
|
|
return blst.AggregateSignatures(sigs)
|
|
}
|
|
|
|
// AggregateCompressedSignatures converts a list of compressed signatures into a single, aggregated sig.
|
|
func AggregateCompressedSignatures(multiSigs [][]byte) (common.Signature, error) {
|
|
return blst.AggregateCompressedSignatures(multiSigs)
|
|
}
|
|
|
|
// VerifySignature verifies a single signature. For performance reason, always use VerifyMultipleSignatures if possible.
|
|
func VerifySignature(sig []byte, msg [32]byte, pubKey common.PublicKey) (bool, error) {
|
|
return blst.VerifySignature(sig, msg, pubKey)
|
|
}
|
|
|
|
// VerifyMultipleSignatures verifies multiple signatures for distinct messages securely.
|
|
func VerifyMultipleSignatures(sigs [][]byte, msgs [][32]byte, pubKeys []common.PublicKey) (bool, error) {
|
|
return blst.VerifyMultipleSignatures(sigs, msgs, pubKeys)
|
|
}
|
|
|
|
// NewAggregateSignature creates a blank aggregate signature.
|
|
func NewAggregateSignature() common.Signature {
|
|
return blst.NewAggregateSignature()
|
|
}
|
|
|
|
// RandKey creates a new private key using a random input.
|
|
func RandKey() (common.SecretKey, error) {
|
|
return blst.RandKey()
|
|
}
|