js-crypto-utils
Version:
JavaScript cryptographic utilities for OpenSSL-WebCrypto compatibility including PEM/X509-JWK converter.
23 lines • 602 B
JavaScript
/**
* params.js
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.hashes = exports.ciphers = void 0;
exports.ciphers = {
'AES-GCM': { ivLength: 12 },
'AES-CTR': { ivLength: 12 },
'AES-CBC': { ivLength: 16 },
'AES-KW': {}
};
exports.hashes = {
'SHA3-512': { hashSize: 64 },
'SHA3-384': { hashSize: 48 },
'SHA3-256': { hashSize: 32 },
'SHA3-224': { hashSize: 28 },
'SHA-256': { hashSize: 32 },
'SHA-384': { hashSize: 48 },
'SHA-512': { hashSize: 64 },
'SHA-1': { hashSize: 20 },
};
//# sourceMappingURL=params.js.map
;