mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
35 lines
979 B
Python
35 lines
979 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "packet",
|
|
srcs = [
|
|
"compressed.go",
|
|
"config.go",
|
|
"encrypted_key.go",
|
|
"literal.go",
|
|
"ocfb.go",
|
|
"one_pass_signature.go",
|
|
"opaque.go",
|
|
"packet.go",
|
|
"private_key.go",
|
|
"public_key.go",
|
|
"public_key_v3.go",
|
|
"reader.go",
|
|
"signature.go",
|
|
"signature_v3.go",
|
|
"symmetric_key_encrypted.go",
|
|
"symmetrically_encrypted.go",
|
|
"userattribute.go",
|
|
"userid.go",
|
|
],
|
|
importmap = "peridot.resf.org/vendor/golang.org/x/crypto/openpgp/packet",
|
|
importpath = "golang.org/x/crypto/openpgp/packet",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//vendor/golang.org/x/crypto/cast5",
|
|
"//vendor/golang.org/x/crypto/openpgp/elgamal",
|
|
"//vendor/golang.org/x/crypto/openpgp/errors",
|
|
"//vendor/golang.org/x/crypto/openpgp/s2k",
|
|
],
|
|
)
|