@guarani/jose
Version:
Implementation of the RFCs of the JOSE Working Group.
17 lines (16 loc) • 573 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.JSON_WEB_ENCRYPTION_CONTENT_ENCRYPTION_ALGORITHMS_REGISTRY = void 0;
const cbc_1 = require("./cbc");
const gcm_1 = require("./gcm");
/**
* JSON Web Encryption Content Encryption Algorithms Registry.
*/
exports.JSON_WEB_ENCRYPTION_CONTENT_ENCRYPTION_ALGORITHMS_REGISTRY = {
'A128CBC-HS256': cbc_1.A128CBC_HS256,
'A192CBC-HS384': cbc_1.A192CBC_HS384,
'A256CBC-HS512': cbc_1.A256CBC_HS512,
A128GCM: gcm_1.A128GCM,
A192GCM: gcm_1.A192GCM,
A256GCM: gcm_1.A256GCM,
};