Timo Glastra
Timo Glastra
Mostly in place, need to add keys to publish to PyPi, also fix any issues that arise when enabling the python build / test / release pipeline in the CI...
E.g. revocation registry is not used anymore in the public API I think, but there are methods in the FFI to work with the revocation registry
Would it be feasible to create a WASM layer, like the FFI layer, so we can use anoncreds-rs in the browser and possibly easier in Node.js. We could use something...
Rust allows us to expose "features". With these features we can tell the compiler to only compile a part of the complete library. This might be useful in mobile scenarios...
Tests: https://github.com/hyperledger/anoncreds-rs/blob/main/tests/anoncreds_demos.rs Need in memory storage implementation (current tests made a start at this) - Identify what the (un)commented tests do/test - Pick a list of tests that are important/where...
As @genaris has highlighted in # the API for parsing objects could be improved. currently you have to do the following to load a credential definition: ``` rsCredentialDefinitions[credDefId] = CredentialDefinition.load(JSON.stringify(credentialDefinitions[credDefId]))...
I'm currently implementing the vc+sd-jwt credential format profile for OID4VC and not fully sure how the process of a presentation works. As I understand SD-JWT-VC spec, you make a presentation...
The authorization response `presentation_submission` parameter has no examples in the spec of what an encoded version of it looks like. This has resulted in some discussions around JFF Plugfest, and...
This adds verification of `status` in an SD-JWT. Issuance will be added in a follow up PR. I also discovered that a lot of validations required by SD-JWT VC were...