blob: fee990836e597e5b87fa2e786414f379a1969121 [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "subtle",
srcs = [
"aes_ctr_hmac.go",
"aes_gcm_hkdf.go",
"subtle.go",
],
importpath = "github.com/google/tink/go/streamingaead/subtle",
visibility = ["//visibility:public"],
deps = [
"//aead/subtle",
"//mac/subtle",
"//streamingaead/subtle/noncebased",
"//subtle",
"//subtle/random",
],
)
go_test(
name = "subtle_test",
srcs = [
"aes_ctr_hmac_test.go",
"aes_gcm_hkdf_test.go",
"subtle_test.go",
],
deps = [
":subtle",
"//tink",
],
)
alias(
name = "go_default_library",
actual = ":subtle",
visibility = ["//visibility:public"],
)