UNPKG

jsonld-signatures

Version:

An implementation of the Linked Data Signatures specifications for JSON-LD in JavaScript.

15 lines (12 loc) 403 B
/*! * Copyright (c) 2018 Digital Bazaar, Inc. All rights reserved. */ 'use strict'; const ControllerProofPurpose = require('./ControllerProofPurpose'); module.exports = class AssertionProofPurpose extends ControllerProofPurpose { constructor({ term = 'assertionMethod', controller, date, maxTimestampDelta = Infinity} = {}) { super({term, controller, date, maxTimestampDelta}); } };