You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: waltid-libraries/protocols/waltid-openid4vc-wallet-mobile/src/iosMain/kotlin/id/walt/wallet2/mobile/swiftinterop/WalletSdkBridgeModels.kt
+24-2Lines changed: 24 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -81,7 +81,12 @@ public enum class WalletBridgeKeyUseAuthorizationPolicy {
Copy file name to clipboardExpand all lines: waltid-libraries/protocols/waltid-openid4vc-wallet-persistence-mobile/src/commonMain/kotlin/id/walt/wallet2/persistence/keys/PlatformKeyModels.kt
+17-1Lines changed: 17 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,13 @@ public enum class PlatformKeyPlatform {
14
14
Custom,
15
15
}
16
16
17
-
/** Explicit request for creating one mobile wallet signing key. */
17
+
/**
18
+
* Explicit request for creating one mobile wallet signing key.
19
+
*
20
+
* @property keyType Type of signing key to create.
21
+
* @property keyId Optional platform key identifier. The provider assigns one when omitted.
22
+
* @property keyUseAuthorizationPolicy Immutable authorization policy enforced by the created key.
23
+
*/
18
24
publicdata classPlatformKeyGenerationRequest(
19
25
publicvalkeyType:KeyType,
20
26
publicvalkeyId:String? = null,
@@ -26,6 +32,16 @@ public data class PlatformKeyGenerationRequest(
26
32
*
27
33
* [effectiveHardwareBacking] is populated only when reliable platform key information is available.
28
34
* In particular, an Android preference for StrongBox is never reported as effective StrongBox backing.
35
+
*
36
+
* @property platform Mobile platform that evaluated the request.
Copy file name to clipboardExpand all lines: waltid-libraries/protocols/waltid-openid4vc-wallet-persistence-mobile/src/commonMain/kotlin/id/walt/wallet2/persistence/stores/PlatformKeyStore.kt
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,7 @@ public class PlatformKeyStore(
29
29
privatevalqueries:WalletPersistenceQueries,
30
30
) : WalletKeyStore {
31
31
32
+
/** This store persists requested and effective key-use authorization metadata. */
0 commit comments