UNPKG

jsonld-signatures

Version:

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

14 lines (11 loc) 329 B
/*! * Copyright (c) 2018 Digital Bazaar, Inc. All rights reserved. */ 'use strict'; const api = {}; module.exports = api; // TODO: only require dynamically as needed or according to build api.suites = { LinkedDataProof: require('./suites/LinkedDataProof'), LinkedDataSignature: require('./suites/LinkedDataSignature') };