We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b62cfd commit b1bd31fCopy full SHA for b1bd31f
1 file changed
vck/src/commonMain/kotlin/at/asitplus/wallet/lib/agent/KeyMaterial.kt
@@ -32,7 +32,7 @@ interface KeyMaterial : Signer {
32
suspend fun getCertificate(): X509Certificate?
33
34
val jsonWebKey: JsonWebKey
35
- get() = publicKey.toJsonWebKey(identifier)
+ get() = publicKey.toJsonWebKey(null)
36
}
37
38
/**
@@ -41,6 +41,9 @@ interface KeyMaterial : Signer {
41
interface PublishedKeyMaterial : KeyMaterial {
42
/** Can be used by clients to look up this key in a [at.asitplus.signum.indispensable.josef.JsonWebKeySet]. */
43
val keySetUrl: String?
44
+
45
+ override val jsonWebKey: JsonWebKey
46
+ get() = publicKey.toJsonWebKey(identifier)
47
48
49
abstract class KeyWithSelfSignedCert(
0 commit comments