constellation/internal/attestation/snp/testdata/BUILD.bazel
Otto Bittner 5ce55e3449 attestation: add snp package
The package holds code shared between SNP-based
attestation implementations on AWS and Azure .
2023-11-24 15:49:48 +01:00

16 lines
399 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "testdata",
srcs = ["testdata.go"],
embedsrcs = [
"attestation.bin",
"vcek.cert",
"certchain.pem",
"runtimedata.bin",
"vcek.pem",
],
importpath = "github.com/edgelesssys/constellation/v2/internal/attestation/snp/testdata",
visibility = ["//:__subpackages__"],
)