prysm-pulse/crypto/bls/herumi/init.go
terence tsao ee5d75732d
Add pkg crypto (#9603)
* Add pkg crypto

* Update go.yml

Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
2021-09-15 22:55:11 +00:00

17 lines
439 B
Go

package herumi
import "github.com/herumi/bls-eth-go-binary/bls"
// HerumiInit allows the required curve orders and appropriate sub-groups to be initialized.
func HerumiInit() {
if err := bls.Init(bls.BLS12_381); err != nil {
panic(err)
}
if err := bls.SetETHmode(bls.EthModeDraft07); err != nil {
panic(err)
}
// Check subgroup order for pubkeys and signatures.
bls.VerifyPublicKeyOrder(true)
bls.VerifySignatureOrder(true)
}