Derek Trider
Derek Trider
EDV spec doesn't currently have any official support for this, but it's been brought up... https://github.com/decentralized-identity/confidential-storage/issues/111#issuecomment-717621256
Update our query implementation to work in the way described here: https://github.com/decentralized-identity/secure-data-store/issues/34#issuecomment-700108603 Some specifics: * Need to support having multiple key-value attribute pairs per index * Need to make the...
This is due to the EDV instance running in https mode, but the Swagger OpenAPI calls that get executed are trying to talk to it via http. Simply adding `https://`...
To be in line with the style used in the official Go project.
The `make bdd-test` script builds the edv-rest image and then runs the BDD tests run two times - once for MongoDB and once for CouchDB. Both times, all containers are...
If you try running the BDD tests with the in-memory storage provider option instead of MongoDB or CouchDB, you'll get the following error: ``` Scenario: Full end-to-end flow. Create a...
Creating a new database for every new vault won't be scalable. Change it so that one database (store) is used for all vaults.
The server always adds `/encrypted-data-vaults` to the root endpoint - this should be reflected in the initial log message that shows a summary of the various user options. (Alternatively, don't...
Encrypted documents have a sequence number (as can be seen in the model in the [spec](https://identity.foundation/confidential-storage/#encrypteddocument)). This EDV server accepts it, but doesn't use it for anything or enforce any...