jsonld-signatures
Version:
An implementation of the Linked Data Signatures specifications for JSON-LD in JavaScript.
15 lines (12 loc) • 403 B
JavaScript
/*!
* Copyright (c) 2018 Digital Bazaar, Inc. All rights reserved.
*/
;
const ControllerProofPurpose = require('./ControllerProofPurpose');
module.exports = class AssertionProofPurpose extends ControllerProofPurpose {
constructor({
term = 'assertionMethod', controller,
date, maxTimestampDelta = Infinity} = {}) {
super({term, controller, date, maxTimestampDelta});
}
};