github.com/lestrrat-go/jwx/v2@v2.0.21/jwe/internal/cipher/BUILD.bazel (about) 1 load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") 2 3 go_library( 4 name = "cipher", 5 srcs = [ 6 "cipher.go", 7 "interface.go", 8 ], 9 importpath = "github.com/lestrrat-go/jwx/v2/jwe/internal/cipher", 10 visibility = ["//:__subpackages__"], 11 deps = [ 12 "//jwa", 13 "//jwe/internal/aescbc", 14 "//jwe/internal/keygen", 15 ], 16 ) 17 18 go_test( 19 name = "cipher_test", 20 srcs = ["cipher_test.go"], 21 deps = [ 22 ":cipher", 23 "//jwa", 24 "@com_github_stretchr_testify//assert", 25 ], 26 ) 27 28 alias( 29 name = "go_default_library", 30 actual = ":cipher", 31 visibility = ["//jwe:__subpackages__"], 32 )