Add pkg crypto (#9603)

* Add pkg crypto

* Update go.yml

Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
This commit is contained in:
terence tsao
2021-09-15 15:55:11 -07:00
committed by GitHub
parent fff0208207
commit ee5d75732d
284 changed files with 530 additions and 530 deletions

14
crypto/rand/BUILD.bazel Normal file
View File

@@ -0,0 +1,14 @@
load("@prysm//tools/go:def.bzl", "go_library", "go_test")
go_library(
name = "go_default_library",
srcs = ["rand.go"],
importpath = "github.com/prysmaticlabs/prysm/crypto/rand",
visibility = ["//visibility:public"],
)
go_test(
name = "go_default_test",
srcs = ["rand_test.go"],
embed = [":go_default_library"],
)