Skip to content

Commit

Permalink
include reference to custom key management doc
Browse files Browse the repository at this point in the history
  • Loading branch information
vkanellopoulos committed Nov 28, 2024
1 parent 73f2079 commit 808c21d
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ graph TD
D[eudi-lib-jvm-openid4vci-kt] -->|OpenId4VciManager| A
E[eudi-lib-jvm-siop-openid4vp-kt] -->|OpenId4VpManager| A
F[com.android.identity] -->|SecureArea,StorageEngine| B
H[eudi-lib-jvm-presentation-exchange] --> E
H[eudi-lib-jvm-presentation-exchange] --> E
G[identity-credential-android] --> A
B -->|DocumentManager| C
F -->|SecureArea,StorageEngine| A
Expand Down Expand Up @@ -218,6 +218,9 @@ val wallet = EudiWallet(context, config) {
}
```

See the [CustomizeSecureArea.md](CustomizeSecureArea.md) for more information on how to use the
wallet-core library with custom SecureArea implementations.

### Manage documents

The library provides a set of methods to work with documents.
Expand Down Expand Up @@ -470,6 +473,10 @@ __Important note__:
- Currently, only mso_mdoc format is supported
- Currently, only the ES256 algorithm is supported for signing OpenId4CVI proof of possession of the
publicKey.
- See
the [CustomizeSecureArea.md](CustomizeSecureArea.md#how-to-use-custom-key-management-with-openid4vci)
for more information on how to use the wallet-core library and OpenId4VCI with custom SecureArea
implementations.

The following example shows how to issue a document using OpenID4VCI:

Expand Down Expand Up @@ -1075,6 +1082,11 @@ val transferEventListener = TransferEvent.Listener { event ->
}
```
See also,
the [CustomizeSecureArea.md](CustomizeSecureArea.md#how-to-use-custom-key-management-with-presentation)
for more information on how to use the wallet-core library for presentation with custom SecureArea
implementations.
## How to contribute
We welcome contributions to this project. To ensure that the process is smooth for everyone
Expand Down

0 comments on commit 808c21d

Please sign in to comment.