-
Notifications
You must be signed in to change notification settings - Fork 92
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support multiple ways to store credential PII and keys #402
Comments
As discussed in today's meeting
|
This issue is being closed as stale |
Doing some cleanup/spring cleaning and closing all issues older than 90 days. Please reopen if issue is still relevant. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There are multiple ways how credential PII and key material is stored and also multiple ways to use this for presentment of the credential. Right now we only support a single method which is storing all the PII in the application's data directory and using a
SecureArea
implementation (typically Android Keystore) for bothCredentialKey
and a bunch of single-useDeviceKey
(one for each MSO) and then using 18013-5 Device Retrieval for presentation.Other credential storage methods include
SecureArea
-based approach.SecureArea
for the key-binding aspect and use those keys at presentment time to prove the binding.The "Add self-signed document" screen is the first place to start. Today it says "Document type" with options "mDL", "mVR", "micov", "euPID" which are all mdoc specific. Instead it should use words like "Driving License" and for each selected document type we'd also have a list of checkboxes
Notes:
ISO mdoc Direct Access
option is contingent on the right SE applet being installed so might not be available (grayed out)ISO mdoc using Identity Credential API
requires the Android device to implement the Identity Credential HAL so it might also not be available.DocumentType
in Issue Document type repository #401 to also include the W3C VC vocabularies from e.g. https://w3c-ccg.github.io/vdl-vocab/.The current design (
CredentialStore
with oneCredential
instance per document) is indeed designed with this in mind and the code for each credential storage method can likely be put behind some kind ofCredentialStorageAdapter
interface. Will follow up with some more thoughts on this.The text was updated successfully, but these errors were encountered: