Derek Trider
Derek Trider
See https://github.com/hyperledger/aries-framework-go/pull/2924#discussion_r686958582 There are lots of other tests that could benefit from this as well.
Currently the `wallet` package imports the `edv` storage provider, which is in another module. This creates an undesirable dependency on the `edv` module from the main aries go module. We...
According to the spec, EDV Encrypted Documents have a [sequence number](https://identity.foundation/edv-spec/#example-4-example-encrypted-document), although the spec is currently lacking details on how it's supposed to work. When those details are available, we...
The storage providers' Put method checks for invalid tags, but the Batch method does not. The Batch method should be performing the same checks.
Aries storage providers support tag name:value pairs. The use of ":" characters is restricted since it conflicts with the query syntax. However, tag values could still safely support ":" characters....
Current LevelDB implementation of GetBulk and Batch are functional but don't properly use the underlying storage mechanism's bulk retrieval/ storage operations. Replace these naive implementations with proper ones.
If using a formatter with non-deterministic key formatting, then the store configuration must be set prior to calling the Put method, since it sets up a special "key" tag that's...
closes #138
closes #137
Resolved a warning from Docker that would get printed when running the generate-test-keys Makefile target on an arm64 system. The warning from Docker alerts you that the image for frapsoft/openssl...