mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-09 19:21:19 +00:00
954af67882
* deprecate hashutil * Revert "deprecate hashutil" This reverts commit 6ee40f916c6fcf73fe372b980ba5645fe0456f9d. * changing to golang crypto lib * Add comment * add test
16 lines
415 B
Python
16 lines
415 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["hash.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/shared/hashutil",
|
|
visibility = ["//visibility:public"],
|
|
deps = ["@org_golang_x_crypto//sha3:go_default_library"],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = ["hash_test.go"],
|
|
embed = [":go_default_library"],
|
|
)
|