UNPKG

@unvision/jose

Version:

Implementation of the RFCs of the JOSE Working Group.

44 lines 5.66 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.JsonWebTokenClaims = exports.JsonWebSignatureHeader = exports.JsonWebSignature = exports.JsonWebKeySet = exports.JsonWebKey = exports.JsonWebEncryptionHeader = exports.JsonWebEncryption = exports.UnsupportedEllipticCurveException = exports.UnsupportedAlgorithmException = exports.JsonWebTokenNotValidYetException = exports.JoseException = exports.InvalidJsonWebTokenException = exports.InvalidJsonWebTokenClaimException = exports.InvalidJsonWebSignatureException = exports.InvalidJsonWebKeySetException = exports.InvalidJsonWebKeyException = exports.InvalidJsonWebEncryptionException = exports.InvalidJoseHeaderException = exports.ExpiredJsonWebTokenException = void 0; // Exceptions var expired_jsonwebtoken_exception_1 = require("./lib/exceptions/expired-jsonwebtoken.exception"); Object.defineProperty(exports, "ExpiredJsonWebTokenException", { enumerable: true, get: function () { return expired_jsonwebtoken_exception_1.ExpiredJsonWebTokenException; } }); var invalid_jose_header_exception_1 = require("./lib/exceptions/invalid-jose-header.exception"); Object.defineProperty(exports, "InvalidJoseHeaderException", { enumerable: true, get: function () { return invalid_jose_header_exception_1.InvalidJoseHeaderException; } }); var invalid_jsonwebencryption_exception_1 = require("./lib/exceptions/invalid-jsonwebencryption.exception"); Object.defineProperty(exports, "InvalidJsonWebEncryptionException", { enumerable: true, get: function () { return invalid_jsonwebencryption_exception_1.InvalidJsonWebEncryptionException; } }); var invalid_jsonwebkey_exception_1 = require("./lib/exceptions/invalid-jsonwebkey.exception"); Object.defineProperty(exports, "InvalidJsonWebKeyException", { enumerable: true, get: function () { return invalid_jsonwebkey_exception_1.InvalidJsonWebKeyException; } }); var invalid_jsonwebkeyset_exception_1 = require("./lib/exceptions/invalid-jsonwebkeyset.exception"); Object.defineProperty(exports, "InvalidJsonWebKeySetException", { enumerable: true, get: function () { return invalid_jsonwebkeyset_exception_1.InvalidJsonWebKeySetException; } }); var invalid_jsonwebsignature_exception_1 = require("./lib/exceptions/invalid-jsonwebsignature.exception"); Object.defineProperty(exports, "InvalidJsonWebSignatureException", { enumerable: true, get: function () { return invalid_jsonwebsignature_exception_1.InvalidJsonWebSignatureException; } }); var invalid_jsonwebtoken_claim_exception_1 = require("./lib/exceptions/invalid-jsonwebtoken-claim.exception"); Object.defineProperty(exports, "InvalidJsonWebTokenClaimException", { enumerable: true, get: function () { return invalid_jsonwebtoken_claim_exception_1.InvalidJsonWebTokenClaimException; } }); var invalid_jsonwebtoken_exception_1 = require("./lib/exceptions/invalid-jsonwebtoken.exception"); Object.defineProperty(exports, "InvalidJsonWebTokenException", { enumerable: true, get: function () { return invalid_jsonwebtoken_exception_1.InvalidJsonWebTokenException; } }); var jose_exception_1 = require("./lib/exceptions/jose.exception"); Object.defineProperty(exports, "JoseException", { enumerable: true, get: function () { return jose_exception_1.JoseException; } }); var jsonwebtoken_not_valid_yet_exception_1 = require("./lib/exceptions/jsonwebtoken-not-valid-yet.exception"); Object.defineProperty(exports, "JsonWebTokenNotValidYetException", { enumerable: true, get: function () { return jsonwebtoken_not_valid_yet_exception_1.JsonWebTokenNotValidYetException; } }); var unsupported_algorithm_exception_1 = require("./lib/exceptions/unsupported-algorithm.exception"); Object.defineProperty(exports, "UnsupportedAlgorithmException", { enumerable: true, get: function () { return unsupported_algorithm_exception_1.UnsupportedAlgorithmException; } }); var unsupported_elliptic_curve_exception_1 = require("./lib/exceptions/unsupported-elliptic-curve.exception"); Object.defineProperty(exports, "UnsupportedEllipticCurveException", { enumerable: true, get: function () { return unsupported_elliptic_curve_exception_1.UnsupportedEllipticCurveException; } }); var jsonwebencryption_1 = require("./lib/jwe/jsonwebencryption"); Object.defineProperty(exports, "JsonWebEncryption", { enumerable: true, get: function () { return jsonwebencryption_1.JsonWebEncryption; } }); var jsonwebencryption_header_1 = require("./lib/jwe/jsonwebencryption.header"); Object.defineProperty(exports, "JsonWebEncryptionHeader", { enumerable: true, get: function () { return jsonwebencryption_header_1.JsonWebEncryptionHeader; } }); var jsonwebkey_1 = require("./lib/jwk/jsonwebkey"); Object.defineProperty(exports, "JsonWebKey", { enumerable: true, get: function () { return jsonwebkey_1.JsonWebKey; } }); // JSON Web Key Set var jsonwebkeyset_1 = require("./lib/jwks/jsonwebkeyset"); Object.defineProperty(exports, "JsonWebKeySet", { enumerable: true, get: function () { return jsonwebkeyset_1.JsonWebKeySet; } }); var jsonwebsignature_1 = require("./lib/jws/jsonwebsignature"); Object.defineProperty(exports, "JsonWebSignature", { enumerable: true, get: function () { return jsonwebsignature_1.JsonWebSignature; } }); var jsonwebsignature_header_1 = require("./lib/jws/jsonwebsignature.header"); Object.defineProperty(exports, "JsonWebSignatureHeader", { enumerable: true, get: function () { return jsonwebsignature_header_1.JsonWebSignatureHeader; } }); var jsonwebtoken_claims_1 = require("./lib/jwt/jsonwebtoken.claims"); Object.defineProperty(exports, "JsonWebTokenClaims", { enumerable: true, get: function () { return jsonwebtoken_claims_1.JsonWebTokenClaims; } }); //# sourceMappingURL=index.js.map