UNPKG

jsonld-signatures-merkleproof2019

Version:

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

13 lines (12 loc) 277 B
export default class Key { publicKey; created; revoked; expires; constructor(publicKey, created, revoked, expires) { this.publicKey = publicKey; this.created = created; this.revoked = revoked; this.expires = expires; } }