@guarani/jose
Version:
Implementation of the RFCs of the JOSE Working Group.
15 lines (14 loc) • 428 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.JSON_WEB_KEY_ALGORITHMS_REGISTRY = void 0;
const ec_key_1 = require("./ec/ec.key");
const oct_key_1 = require("./oct/oct.key");
const rsa_key_1 = require("./rsa/rsa.key");
/**
* JSON Web Key Algorithms Registry.
*/
exports.JSON_WEB_KEY_ALGORITHMS_REGISTRY = {
EC: ec_key_1.EcKey,
RSA: rsa_key_1.RsaKey,
oct: oct_key_1.OctKey,
};