UNPKG

node-jose

Version:

A JavaScript implementation of the JSON Object Signing and Encryption (JOSE) for current web browsers and node.js-based servers

23 lines (19 loc) 426 B
/*! * index.js - Main Entry Point * * Copyright (c) 2015 Cisco Systems, Inc. See LICENSE file. */ "use strict"; if (typeof Promise === "undefined") { require("es6-promise").polyfill(); } var JWS = require("./jws"); module.exports = { JWA: require("./algorithms"), JWE: require("./jwe"), JWK: require("./jwk"), JWS: JWS, util: require("./util"), parse: require("./parse"), canYouSee: JWS.createVerify };