constellation/internal/sigstore/BUILD.bazel
Otto Bittner 30f2b332b3
api: restructure api pkg (#1851)
* api: rename AttestationVersionRepo to Client
* api: move client into separate subpkg for
clearer import paths.
* api: rename configapi -> attestationconfig
* api: rename versionsapi -> versions
* api: rename sut to client
* api: split versionsapi client and make it public
* api: split versionapi fetcher and make it public
* config: move attestationversion type to config
* api: fix attestationconfig client test

Co-authored-by: Adrian Stobbe <stobbe.adrian@gmail.com>
2023-06-02 09:19:23 +02:00

45 lines
1.4 KiB
Python

load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("//bazel/go:go_test.bzl", "go_test")
go_library(
name = "sigstore",
srcs = [
"rekor.go",
"sign.go",
"sigstore.go",
"verify.go",
],
importpath = "github.com/edgelesssys/constellation/v2/internal/sigstore",
visibility = ["//:__subpackages__"],
deps = [
"//internal/api/versions",
"//internal/constants",
"@com_github_sigstore_rekor//pkg/client",
"@com_github_sigstore_rekor//pkg/generated/client",
"@com_github_sigstore_rekor//pkg/generated/client/entries",
"@com_github_sigstore_rekor//pkg/generated/client/index",
"@com_github_sigstore_rekor//pkg/generated/models",
"@com_github_sigstore_rekor//pkg/types/hashedrekord/v0.0.1:v0_0_1",
"@com_github_sigstore_rekor//pkg/verify",
"@com_github_sigstore_sigstore//pkg/cryptoutils",
"@com_github_sigstore_sigstore//pkg/signature",
"@com_github_theupdateframework_go_tuf//encrypted",
],
)
go_test(
name = "sigstore_test",
srcs = [
"rekor_test.go",
"sign_test.go",
"verify_test.go",
],
embed = [":sigstore"],
deps = [
"@com_github_sigstore_rekor//pkg/generated/models",
"@com_github_sigstore_rekor//pkg/types/hashedrekord/v0.0.1:v0_0_1",
"@com_github_stretchr_testify//assert",
"@com_github_stretchr_testify//require",
],
)