We want to extend the verification of Verifiable Presentations and as so we created our own implementation of verifyPresentationCallback to be used. What we want is that the response of this callback to be stored somewhere (i think AuthorizationResponse class should store it somewhere, from what i see it is used also to fetch the status of the verification). This would make it easier to extend with additional functionality and be a little better at providing different values to be presented to the end user when they want to see the result of the verification.
https://github.com/Sphereon-Opensource/SIOP-OID4VP/blob/b7ab7418ded18ce3219813f935f94192b31fd1e9/src/authorization-response/PresentationExchange.ts#L347
Currently the code does not store whatever verificationResult returns. Storing this information would be beneficial.
We want to extend the verification of Verifiable Presentations and as so we created our own implementation of
verifyPresentationCallbackto be used. What we want is that the response of this callback to be stored somewhere (i think AuthorizationResponse class should store it somewhere, from what i see it is used also to fetch the status of the verification). This would make it easier to extend with additional functionality and be a little better at providing different values to be presented to the end user when they want to see the result of the verification.https://github.com/Sphereon-Opensource/SIOP-OID4VP/blob/b7ab7418ded18ce3219813f935f94192b31fd1e9/src/authorization-response/PresentationExchange.ts#L347
Currently the code does not store whatever
verificationResultreturns. Storing this information would be beneficial.