prysm-pulse/crypto/bls/BUILD.bazel
Nishant Das e5e4dee629
Update Batch Verification Routine (#10127)
* add changes so far

* a lot of tests

* add flags and comments

* raul's comment

* raul's review

* fix build

* fix

* fix

Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
2022-05-04 04:47:53 +00:00

35 lines
891 B
Python

load("@prysm//tools/go:def.bzl", "go_library", "go_test")
go_library(
name = "go_default_library",
srcs = [
"bls.go",
"constants.go",
"error.go",
"interface.go",
"signature_batch.go",
],
importpath = "github.com/prysmaticlabs/prysm/crypto/bls",
visibility = ["//visibility:public"],
deps = [
"//crypto/bls/blst:go_default_library",
"//crypto/bls/common:go_default_library",
"//crypto/bls/herumi:go_default_library",
"@com_github_pkg_errors//:go_default_library",
],
)
go_test(
name = "go_default_test",
srcs = [
"bls_test.go",
"signature_batch_test.go",
],
embed = [":go_default_library"],
deps = [
"//crypto/bls/common:go_default_library",
"//testing/assert:go_default_library",
"//testing/require:go_default_library",
],
)