"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Hmac = void 0; class Hmac { blockSize; messageHasher; oKeyPad; iKeyPad; hash; constructor(hashFunctionConstructor, originalKey) { // This implementation is based on https://en.wikipedia.org/wiki/HMAC#Implementation // with the addition of incremental hashing support. Thus part of the algorithm // is in the constructor and the rest in digest(). const blockSize = new hashFunctionConstructor().blockSize; this.hash = (data) => new hashFunctionConstructor().update(data).digest(); let key = originalKey; if (key.length > blockSize) { key = this.hash(key); } if (key.length < blockSize) { const zeroPadding = new Uint8Array(blockSize - key.length); key = new Uint8Array([...key, ...zeroPadding]); } // eslint-disable-next-line no-bitwise this.oKeyPad = key.map((keyByte) => keyByte ^ 0x5c); // eslint-disable-next-line no-bitwise this.iKeyPad = key.map((keyByte) => keyByte ^ 0x36); this.messageHasher = new hashFunctionConstructor(); this.blockSize = blockSize; this.update(this.iKeyPad); } update(data) { this.messageHasher.update(data); return this; } digest() { const innerHash = this.messageHasher.digest(); return this.hash(new Uint8Array([...this.oKeyPad, ...innerHash])); } } exports.Hmac = Hmac; //# sourceMappingURL=hmac.js.map