From 99d0fc937911a6459b60ccef26bf28f161db86ce Mon Sep 17 00:00:00 2001 From: babisRoutis Date: Tue, 10 Sep 2024 12:05:21 +0300 Subject: [PATCH] Removed orphan references to CWT --- README.md | 2 +- .../eu/europa/ec/eudi/pidissuer/port/input/IssueCredential.kt | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 41e1a014..39c3758a 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ and requires the use of a suitable OAUTH2 server. | [Credential Issuer MetaData](#credential-issuer-metadata) | Yes, using `scopes` | | Batch Endpoint | ❌ | | Deferred Endpoint | ✅ | -| Proof | ✅ JWT (`jwk`, `x5c`, `did:key`, `did:jwk`) , ❌ CWT | +| Proof | ✅ JWT (`jwk`, `x5c`, `did:key`, `did:jwk`) | ## How to use docker diff --git a/src/main/kotlin/eu/europa/ec/eudi/pidissuer/port/input/IssueCredential.kt b/src/main/kotlin/eu/europa/ec/eudi/pidissuer/port/input/IssueCredential.kt index 5ad6a0ab..a4d44daf 100644 --- a/src/main/kotlin/eu/europa/ec/eudi/pidissuer/port/input/IssueCredential.kt +++ b/src/main/kotlin/eu/europa/ec/eudi/pidissuer/port/input/IssueCredential.kt @@ -56,7 +56,6 @@ enum class ProofTypeTO { data class ProofTo( @SerialName("proof_type") @Required val type: ProofTypeTO, val jwt: String? = null, - val cwt: String? = null, @SerialName("ldp_vp") val ldpVp: String? = null, )