mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
42 lines
1.4 KiB
Python
42 lines
1.4 KiB
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "crypto",
|
|
srcs = [
|
|
"attachment.go",
|
|
"attachment_manual.go",
|
|
"gopenpgp.go",
|
|
"key.go",
|
|
"key_clear.go",
|
|
"keyring.go",
|
|
"keyring_message.go",
|
|
"keyring_session.go",
|
|
"keyring_streaming.go",
|
|
"message.go",
|
|
"message_getters.go",
|
|
"mime.go",
|
|
"password.go",
|
|
"sessionkey.go",
|
|
"sessionkey_streaming.go",
|
|
"signature.go",
|
|
"signature_collector.go",
|
|
"time.go",
|
|
],
|
|
importmap = "peridot.resf.org/vendor/github.com/ProtonMail/gopenpgp/v2/crypto",
|
|
importpath = "github.com/ProtonMail/gopenpgp/v2/crypto",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//vendor/github.com/ProtonMail/go-mime",
|
|
"//vendor/github.com/ProtonMail/gopenpgp/v2/armor",
|
|
"//vendor/github.com/ProtonMail/gopenpgp/v2/constants",
|
|
"//vendor/github.com/ProtonMail/gopenpgp/v2/internal",
|
|
"//vendor/github.com/pkg/errors",
|
|
"@com_github_ProtonMail_go_crypto//openpgp",
|
|
"@com_github_ProtonMail_go_crypto//openpgp/clearsign",
|
|
"@com_github_ProtonMail_go_crypto//openpgp/ecdh",
|
|
"@com_github_ProtonMail_go_crypto//openpgp/elgamal",
|
|
"@com_github_ProtonMail_go_crypto//openpgp/errors",
|
|
"@com_github_ProtonMail_go_crypto//openpgp/packet",
|
|
],
|
|
)
|