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
A Holder performing a presentation uses this library's helper functions of the form usingSessionTranscript_____. Under the covers these construct appropriately formed CBOR-encodings of a DataItem using custom extensions to an external CBOR library. Without access to those custom CBOR extensions, how can a Verifier make the same calculation?
I could see two potential solutions:
the library exports its cborEncode function so that verifiers can use it to calculate what the session transcript bytes should be; or
additional helper functions like the usingSessionTranscript_____ on DeviceResponse are added to the Verifier class so that they can be called instead.
A Holder performing a presentation uses this library's helper functions of the form
usingSessionTranscript_____. Under the covers these construct appropriately formed CBOR-encodings of a DataItem using custom extensions to an external CBOR library. Without access to those custom CBOR extensions, how can a Verifier make the same calculation?I could see two potential solutions:
cborEncodefunction so that verifiers can use it to calculate what the session transcript bytes should be; orusingSessionTranscript_____onDeviceResponseare added to theVerifierclass so that they can be called instead.