Skip to content
Merged
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
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,8 @@ and manage the Endorsements and Trust Anchors. The API details are documented
under [Endorsement Provisioning
Interface](https://github.com/veraison/docs/tree/main/api/endorsement-provisioning).
This service accept a variety of Endorsement Formats. For now, PSA (Profile 1 &
Profile 2), CCA, TPM and Parsec (CCA and TPM) based Endorsements are supported.
Profile 2), CCA, TPM, Parsec (CCA and TPM) and SEV-SNP based Endorsements are
supported.

Refer to
[scope](https://github.com/veraison/docs/blob/main/project-overview.md#scope---provisioning)
Expand All @@ -195,8 +196,8 @@ Attestation Evidence claims. On the back end, it communicates with
the Attestation Verification Results, which are then passed to the challenger.

This service acts as a frontend for accepting a variety of attestation token
formats. For now, PSA (Profile 1 & Profile 2), CCA and TPM-based attestation
tokens are supported.
formats. For now, PSA (Profile 1 & Profile 2), CCA, SEV-SNP and TPM-based
attestation tokens are supported.

The API is based on the Challenge/Response Interaction Models as documented in
[challenge-response](https://github.com/veraison/docs/tree/main/api/challenge-response)
Expand Down
3 changes: 3 additions & 0 deletions deployments/rpm/veraison-services.spec.template
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,13 @@ cp -a $DEPLOYMENT_DEST/* %{buildroot}/
%attr(0755, %{USERNAME}, %{GROUPNAME}) %{_bindir}/evcli
%attr(0755, %{USERNAME}, %{GROUPNAME}) %{_bindir}/pocli
%attr(0755, %{USERNAME}, %{GROUPNAME}) %{_bindir}/veraison
%attr(0755, %{USERNAME}, %{GROUPNAME}) %{_bindir}/amd-kds-coserv.plugin
%attr(0755, %{USERNAME}, %{GROUPNAME}) %{_bindir}/arm-cca.plugin
%attr(0755, %{USERNAME}, %{GROUPNAME}) %{_bindir}/nvidia-coserv.plugin
%attr(0755, %{USERNAME}, %{GROUPNAME}) %{_bindir}/parsec-cca.plugin
%attr(0755, %{USERNAME}, %{GROUPNAME}) %{_bindir}/parsec-tpm.plugin
%attr(0755, %{USERNAME}, %{GROUPNAME}) %{_bindir}/psa.plugin
%attr(0755, %{USERNAME}, %{GROUPNAME}) %{_bindir}/sevsnp.plugin
%attr(0755, %{USERNAME}, %{GROUPNAME}) %{_bindir}/riot.plugin
%attr(0755, %{USERNAME}, %{GROUPNAME}) %{_bindir}/tpm-enacttrust.plugin
%attr(0755, %{USERNAME}, %{GROUPNAME}) %{_bindir}/management-service
Expand Down
68 changes: 40 additions & 28 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,17 @@ require (
github.com/jackc/pgx/v5 v5.6.0
github.com/jellydator/ttlcache/v3 v3.0.0
github.com/json-iterator/go v1.1.12 // indirect
github.com/lestrrat-go/jwx/v2 v2.0.21
github.com/lestrrat-go/jwx/v2 v2.1.3
github.com/mattn/go-sqlite3 v1.14.14
github.com/mitchellh/mapstructure v1.5.0
github.com/mitchellh/protoc-gen-go-json v1.1.0
github.com/moogar0880/problems v0.1.1
github.com/open-policy-agent/opa v0.68.0
github.com/petar-dambovaliev/aho-corasick v0.0.0-20211021192214-5ab2d9280aa9
github.com/spf13/afero v1.11.0
github.com/spf13/afero v1.12.0
github.com/spf13/jwalterweatherman v1.1.0
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v1.18.2
github.com/spf13/viper v1.19.0
github.com/stretchr/testify v1.10.0
github.com/tbaehler/gin-keycloak v1.6.1
github.com/veraison/ccatoken v1.3.2-0.20250512122414-b26aba0635c4
Expand All @@ -45,10 +45,10 @@ require (
github.com/veraison/parsec v0.2.1-0.20240912163334-0368b9c16228
github.com/veraison/psatoken v1.2.1-0.20240912124429-aec3ece7886e
go.uber.org/zap v1.27.0
golang.org/x/text v0.22.0
google.golang.org/grpc v1.66.0
golang.org/x/text v0.23.0
google.golang.org/grpc v1.67.3
google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0
google.golang.org/protobuf v1.34.2
google.golang.org/protobuf v1.36.4
gopkg.in/go-jose/go-jose.v2 v2.6.3
)

Expand All @@ -73,8 +73,8 @@ require (
github.com/chenzhuoyu/base64x v0.0.0-20230717121745-296ad89f973d // indirect
github.com/chenzhuoyu/iasm v0.9.0 // indirect
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 // indirect
github.com/fsnotify/fsnotify v1.7.0 // indirect
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 // indirect
github.com/fsnotify/fsnotify v1.8.0 // indirect
github.com/fxamacker/cbor/v2 v2.8.0
github.com/gabriel-vasile/mimetype v1.4.3 // indirect
github.com/gin-contrib/sse v0.1.0 // indirect
Expand All @@ -85,7 +85,7 @@ require (
github.com/go-playground/universal-translator v0.18.1 // indirect
github.com/go-playground/validator/v10 v10.19.0 // indirect
github.com/gobwas/glob v0.2.3 // indirect
github.com/goccy/go-json v0.10.2 // indirect
github.com/goccy/go-json v0.10.4 // indirect
github.com/golang/glog v1.2.4 // indirect
github.com/golang/protobuf v1.5.4 // indirect
github.com/gorilla/mux v1.8.1 // indirect
Expand All @@ -101,58 +101,70 @@ require (
github.com/leodido/go-urn v1.4.0 // indirect
github.com/lestrrat-go/blackmagic v1.0.2 // indirect
github.com/lestrrat-go/httpcc v1.0.1 // indirect
github.com/lestrrat-go/httprc v1.0.5 // indirect
github.com/lestrrat-go/httprc v1.0.6 // indirect
github.com/lestrrat-go/iter v1.0.2 // indirect
github.com/lestrrat-go/option v1.0.1 // indirect
github.com/magiconair/properties v1.8.7 // indirect
github.com/magiconair/properties v1.8.9 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.19 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mitchellh/go-testing-interface v1.0.0 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
github.com/oklog/run v1.0.0 // indirect
github.com/patrickmn/go-cache v2.1.0+incompatible // indirect
github.com/pelletier/go-toml/v2 v2.2.0 // indirect
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
github.com/prometheus/client_golang v1.20.2 // indirect
github.com/prometheus/client_model v0.6.1 // indirect
github.com/prometheus/common v0.55.0 // indirect
github.com/prometheus/procfs v0.15.1 // indirect
github.com/rcrowley/go-metrics v0.0.0-20200313005456-10cdbea86bc0 // indirect
github.com/sagikazarmark/locafero v0.4.0 // indirect
github.com/sagikazarmark/locafero v0.7.0 // indirect
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
github.com/segmentio/asm v1.2.0 // indirect
github.com/sirupsen/logrus v1.9.3 // indirect
github.com/sourcegraph/conc v0.3.0 // indirect
github.com/spf13/cast v1.6.0 // indirect
github.com/spf13/cast v1.7.1 // indirect
github.com/subosito/gotenv v1.6.0 // indirect
github.com/tchap/go-patricia/v2 v2.3.1 // indirect
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
github.com/ugorji/go/codec v1.2.11 // indirect
github.com/veraison/go-cose v1.3.0-rc.1
github.com/veraison/go-cose v1.3.0
github.com/veraison/swid v1.1.1-0.20230911094910-8ffdd07a22ca
github.com/x448/float16 v0.8.4 // indirect
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
github.com/yashtewari/glob-intersection v0.2.0 // indirect
go.opentelemetry.io/otel v1.28.0 // indirect
go.opentelemetry.io/otel/metric v1.28.0 // indirect
go.opentelemetry.io/otel/sdk v1.28.0 // indirect
go.opentelemetry.io/otel/trace v1.28.0 // indirect
go.uber.org/multierr v1.10.0 // indirect
go.opentelemetry.io/otel v1.29.0 // indirect
go.opentelemetry.io/otel/metric v1.29.0 // indirect
go.opentelemetry.io/otel/sdk v1.29.0 // indirect
go.opentelemetry.io/otel/trace v1.29.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/arch v0.7.0 // indirect
golang.org/x/crypto v0.35.0
golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect
golang.org/x/net v0.33.0 // indirect
golang.org/x/crypto v0.36.0
golang.org/x/exp v0.0.0-20250106191152-7588d65b2ba8 // indirect
golang.org/x/net v0.38.0 // indirect
golang.org/x/oauth2 v0.27.0 // indirect
golang.org/x/sync v0.11.0 // indirect
golang.org/x/sys v0.30.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240701130421-f6361c86f094 // indirect
golang.org/x/sync v0.12.0 // indirect
golang.org/x/sys v0.31.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20250204164813-702378808489 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
sigs.k8s.io/yaml v1.4.0 // indirect
)

require fortio.org/safecast v1.0.0 // indirect
require (
github.com/google/go-sev-guest v0.14.1
github.com/jraman567/go-gen-ref v1.2.3
github.com/veraison/ratsd v0.0.0-20251002182229-94bebd610d15
)

require (
fortio.org/safecast v1.0.0 // indirect
github.com/google/logger v1.1.1 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/spf13/cobra v1.8.1 // indirect
github.com/virtee/sev-snp-measure-go v0.0.0-20241128091219-920346c42ecb // indirect
)
Loading
Loading