constellation/s3proxy/internal/crypto/BUILD.bazel
Otto Bittner 887dcda78b s3proxy: add keyservice integration
Encrypt each object with a random DEK and attach
the encrypted DEK as object metadata.
Encrpt the DEK with a key from the keyservice.
All objects use the same KEK until a keyrotation
takes place.
2023-10-06 11:23:32 +02:00

25 lines
698 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("//bazel/go:go_test.bzl", "go_test")
go_library(
name = "crypto",
srcs = ["crypto.go"],
importpath = "github.com/edgelesssys/constellation/v2/s3proxy/internal/crypto",
visibility = ["//s3proxy:__subpackages__"],
deps = [
"@com_github_tink_crypto_tink_go_v2//aead/subtle",
"@com_github_tink_crypto_tink_go_v2//kwp/subtle",
"@com_github_tink_crypto_tink_go_v2//subtle/random",
],
)
go_test(
name = "crypto_test",
srcs = ["crypto_test.go"],
embed = [":crypto"],
deps = [
"@com_github_stretchr_testify//assert",
"@com_github_stretchr_testify//require",
],
)