UNPKG

jsonld-signatures-merkleproof2019

Version:

A jsonld signature implementation to support MerkleProof2019 verification in Verifiable Credential context

12 lines (11 loc) 308 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class Key { constructor(publicKey, created, revoked, expires) { this.publicKey = publicKey; this.created = created; this.revoked = revoked; this.expires = expires; } } exports.default = Key;