Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 19 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ config = "0.15.22"
educe = "0.6"
ear = "0.5.0"
hex = "0.4.3"
kbs_protocol = { git = "https://github.com/confidential-containers/guest-components.git", rev = "19b727ade7591f6b29e3c092ec6a1b1566f95a62", default-features = false }
kbs_protocol = { git = "https://github.com/salmanyam/guest-components.git", rev = "bd8d941", default-features = false }
kbs-types = "0.15.0"
kms = { git = "https://github.com/confidential-containers/guest-components.git", rev = "19b727ade7591f6b29e3c092ec6a1b1566f95a62", default-features = false }
kms = { git = "https://github.com/salmanyam/guest-components.git", rev = "bd8d941", default-features = false }
jsonwebtoken = { version = "10", default-features = false, features = [
"aws_lc_rs",
"use_pem",
Expand Down Expand Up @@ -64,6 +64,7 @@ serial_test = { version = "3.4.0", features = ["async"] }
sha2 = "0.11"
shadow-rs = "2.0.0"
strum = { version = "0.28", features = ["derive"] }
serde_qs = "0.13.0"
thiserror = "2.0"
tokio = { version = "1", features = ["full"], default-features = false }
toml = "1.1.2"
Expand Down
5 changes: 5 additions & 0 deletions kbs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ pkcs11 = ["cryptoki"]
# that want to join a Nebula overlay network
nebula-ca-plugin = []

# Use PKI Vault plugin to provide credentials for mutual TLS communication
# between a server running in the sandbox (pod) and a client (admin or owner)
keyflux-plugin = []

# Use HashiCorp Vault KV v1 as KBS backend
vault = ["vaultrs"]

Expand Down Expand Up @@ -76,6 +80,7 @@ rsa.workspace = true
rustls = { version = "0.23", default-features = false, features = [
"ring",
], optional = true }
serde_qs.workspace = true
semver = "1.0.28"
serde = { workspace = true, features = ["derive"] }
serde_json.workspace = true
Expand Down
5 changes: 5 additions & 0 deletions kbs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ ALIYUN ?= false
NEBULA_CA_PLUGIN ?= false
VAULT ?= true
EXTERNAL_PLUGIN ?= false
KEYFLUX_PLUGIN ?= false

BUILD_ARCH := $(shell uname -m)
ARCH ?= $(shell uname -m)
Expand Down Expand Up @@ -57,6 +58,10 @@ ifeq ($(NEBULA_CA_PLUGIN), true)
override FEATURES := $(FEATURES),nebula-ca-plugin
endif

ifeq ($(KEYFLUX_PLUGIN), true)
override FEATURES := $(FEATURES),keyflux-plugin
endif

ifeq ($(VAULT), true)
override FEATURES := $(FEATURES),vault
endif
Expand Down
Loading
Loading