alan-turing-institute / trustchain

Trustworthy decentralised PKI
https://alan-turing-institute.github.io/trustchain/
Apache License 2.0
11 stars 5 forks source link

Update credential store with DID #160

Open sgreenbury opened 10 months ago

sgreenbury commented 10 months ago

Modify credential offer stores to have issuing/requesting DID for each item. New credential store item type:

struct CredentialStoreItem {
    /// DID to provide offer/issue credential
    did: String,
    /// Credential to offer
    credential: Credential
}