aries-framework-go
aries-framework-go copied to clipboard
Hyperledger Aries Framework Go provides packages for building Agent / DIDComm services.
Test Case ```go t.Run("fails if credential is not verifiable", func(t *testing.T) { agent := agent(t) // VC has no proof vc := &verifiable.Credential{ Context: []string{verifiable.ContextURI}, Types: []string{verifiable.VCType}, ID: uuid.New().URN(), Subject:...
PR #2795 is adding support for RFC0593. As noted in a comment over there, support for P curves is blocked with the following obstacles: * registration of the newer `JsonWebKey2020`...
https://github.com/w3c-ccg/ldp-bbs2020/issues/45
https://github.com/hyperledger/aries-framework-go/blob/9321eebd7637057ff35f15519b883ee1ea094f07/pkg/doc/signature/jsonld/processor.go#L432
**What I'm trying to do** I was trying to generate a keySet for BLS12381G2 using `KMSController` in the Android local agent. I'm using aries-framework-go v0.1.6. **Expected result** `KMSController.createKeySet(..)` returns a...
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.
PR #2729 disables it because the logic depended on the previous behavior where the attached requests in the oob invitations were _replayed_ back to the sender instead of the new...
Some parts of the WASM always assume it's running in the browser. For example, the `jsindexeddb` package is being loaded and [this](https://github.com/hyperledger/aries-framework-go/blob/master/pkg/storage/jsindexeddb/jsindexeddb.go#L49) call fails (there is no object named `indexedDB`...
RFC0434 connection reuse (PR #2729) requires the ability to lookup connection records with the other party's DID. These DIDs either in `record.TheirDID` (if the sender rotated _towards_ to the target...