31 lines
824 B
Python
31 lines
824 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "certlib",
|
|
srcs = [
|
|
"certlib.go",
|
|
"der_helpers.go",
|
|
"ed25519.go",
|
|
"helpers.go",
|
|
],
|
|
importpath = "git.wntrmute.dev/kyle/goutils/certlib",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//certlib/certerr",
|
|
"//certlib/pkcs7",
|
|
"@com_github_google_certificate_transparency_go//:certificate-transparency-go",
|
|
"@com_github_google_certificate_transparency_go//tls",
|
|
"@com_github_google_certificate_transparency_go//x509",
|
|
"@org_golang_x_crypto//ocsp",
|
|
"@org_golang_x_crypto//pkcs12",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "certlib_test",
|
|
size = "small",
|
|
srcs = ["certlib_test.go"],
|
|
embed = [":certlib"],
|
|
deps = ["//assert"],
|
|
)
|