got revoked before end of TTL window. - Notify the wallet in case a new credential type can be requested. - Notify the wallet the data for one credential got updated and a new credential with the updated data is available. - … クレデンシャルの有効期限が切れる前に取り消したいケースなど、主にクレデンシャルのライフ サイクル管理に使いたい、っていうところです。 SSF的にはライフサイクル管理とリスク検知〜通知の使い方が主な用途なので、今回の提案は 前者が中心ですね。
All Rights Reserved const digitalCredential = await navigator.identity.get({ digital: { providers: [{ // Protocol extensibility: protocol: "oid4vp", // An example of an OpenID4VP request to wallets. // Based on https://github.com/openid/OpenID4VP/issues/125 request: { nonce: "n-0S6_WzA2Mj", presentation_definition: { // Presentation Exchange request, omitted for brevity } } }], }, }); // To be decrypted on the server... const encryptedData = digitalCredential.data;