From 894f3c5af269fc11319e6bd95c05f3dd65fb696e Mon Sep 17 00:00:00 2001 From: Thomas Fossati Date: Wed, 28 Aug 2024 11:05:05 +0200 Subject: [PATCH] fix!: correct CCA media type parameter See also https://github.com/veraison/services/issues/257 Signed-off-by: Thomas Fossati --- cmd/cca/verify_as.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/cca/verify_as.go b/cmd/cca/verify_as.go index e99df30..173c325 100644 --- a/cmd/cca/verify_as.go +++ b/cmd/cca/verify_as.go @@ -11,7 +11,7 @@ import ( var verifyValidArgs = []string{"attester", "relying-party"} -const CCATokenMediaType = "application/eat-collection; profile=http://arm.com/CCA-SSD/1.0.0" +const CCATokenMediaType = `application/eat-collection; profile="http://arm.com/CCA-SSD/1.0.0"` var verifyAsCmd = &cobra.Command{ Use: "verify-as",