mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
15 lines
375 B
Python
15 lines
375 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "cipher",
|
|
srcs = [
|
|
"cbc_hmac.go",
|
|
"concat_kdf.go",
|
|
"ecdh_es.go",
|
|
"key_wrap.go",
|
|
],
|
|
importmap = "peridot.resf.org/vendor/gopkg.in/square/go-jose.v2/cipher",
|
|
importpath = "gopkg.in/square/go-jose.v2/cipher",
|
|
visibility = ["//visibility:public"],
|
|
)
|