UNPKG

crypto-es

Version:

A cryptography algorithms library compatible with ES6 and TypeScript

62 lines (60 loc) 1.67 kB
const require_x64_core = require('./x64-core.cjs'); const require_sha512 = require('./sha512.cjs'); //#region src/sha384.ts /** * SHA-384 hash algorithm. */ var SHA384Algo = class extends require_sha512.SHA512Algo { _doReset() { this._hash = new require_x64_core.X64WordArray([ new require_x64_core.X64Word(3418070365, 3238371032), new require_x64_core.X64Word(1654270250, 914150663), new require_x64_core.X64Word(2438529370, 812702999), new require_x64_core.X64Word(355462360, 4144912697), new require_x64_core.X64Word(1731405415, 4290775857), new require_x64_core.X64Word(2394180231, 1750603025), new require_x64_core.X64Word(3675008525, 1694076839), new require_x64_core.X64Word(1203062813, 3204075428) ]); } _doFinalize() { const hash = super._doFinalize.call(this); hash.sigBytes -= 16; return hash; } clone() { const clone = super.clone.call(this); return clone; } }; /** * Shortcut function to the hasher's object interface. * * @param message - The message to hash. * @returns The hash. * * @example * ```js * const hash = CryptoJS.SHA384('message'); * const hash = CryptoJS.SHA384(wordArray); * ``` */ const SHA384 = require_sha512.SHA512Algo._createHelper(SHA384Algo); /** * Shortcut function to the HMAC's object interface. * * @param message - The message to hash. * @param key - The secret key. * @returns The HMAC. * * @example * ```js * const hmac = CryptoJS.HmacSHA384(message, key); * ``` */ const HmacSHA384 = require_sha512.SHA512Algo._createHmacHelper(SHA384Algo); //#endregion exports.HmacSHA384 = HmacSHA384; exports.SHA384 = SHA384; exports.SHA384Algo = SHA384Algo; //# sourceMappingURL=sha384.cjs.map