ssi 0.16.0

Core library for Verifiable Credentials and Decentralized Identifiers.
{
  "@context": [
    "https://www.w3.org/ns/did/v1",
    {
      "Ed25519VerificationKey2018": "https://w3id.org/security#Ed25519VerificationKey2018",
      "publicKeyBase58": "https://w3id.org/security#publicKeyBase58",
      "publicKeyJwk": {
        "@id": "https://w3id.org/security#publicKeyJwk",
        "@type": "@json"
      }
    }
  ],
  "id": "did:example:bar",
  "verificationMethod": [
    {
      "id": "did:example:bar#key1",
      "type": "Ed25519VerificationKey2018",
      "controller": "did:example:bar",
      "publicKeyJwk": {
          "kty": "OKP",
          "crv": "Ed25519",
          "x": "jRSNg5xqr8WZ-kdPZFBebEHYHMHK38NI0lnbC9Tmc0Y"
      }
    }
  ],
  "assertionMethod": [
    "did:example:bar#key1"
  ],
  "authentication": [
    "did:example:bar#key1"
  ],
  "capabilityDelegation": [
    "did:example:bar#key1"
  ],
  "capabilityInvocation": [
    "did:example:bar#key1"
  ]
}