devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
62 lines (59 loc) • 2.1 kB
JavaScript
/**
* DevExtreme (cjs/__internal/core/license/sha1.js)
* Version: 24.2.6
* Build date: Mon Mar 17 2025
*
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.preprocess = preprocess;
exports.sha1 = sha1;
var _byte_utils = require("./byte_utils");
function preprocess(text) {
const bytes = new Uint8Array(text.length + 1);
bytes.set((0, _byte_utils.stringToBytes)(text));
bytes[bytes.length - 1] = 128;
const words = (0, _byte_utils.bytesToWords)(new Uint8Array(bytes));
const result = new Uint32Array(16 * Math.ceil((words.length + 2) / 16));
result.set(words, 0);
result[result.length - 1] = 8 * (bytes.length - 1);
return result
}
function sha1(text) {
const message = preprocess(text);
const h = new Uint32Array([1732584193, 4023233417, 2562383102, 271733878, 3285377520]);
for (let i = 0; i < message.length; i += 16) {
const w = new Uint32Array(80);
for (let j = 0; j < 16; j += 1) {
w[j] = message[i + j]
}
for (let j = 16; j < 80; j += 1) {
const n = w[j - 3] ^ w[j - 8] ^ w[j - 14] ^ w[j - 16];
w[j] = n << 1 | n >>> 31
}
let a = h[0];
let b = h[1];
let c = h[2];
let d = h[3];
let e = h[4];
for (let j = 0; j < 80; j += 1) {
const [f, k] = j < 20 ? [b & c | ~b & d, 1518500249] : j < 40 ? [b ^ c ^ d, 1859775393] : j < 60 ? [b & c | b & d | c & d, 2400959708] : [b ^ c ^ d, 3395469782];
const temp = (0, _byte_utils.leftRotate)(a, 5) + f + e + k + w[j];
e = d;
d = c;
c = (0, _byte_utils.leftRotate)(b, 30);
b = a;
a = temp
}
h[0] += a;
h[1] += b;
h[2] += c;
h[3] += d;
h[4] += e
}
return (0, _byte_utils.wordsToBytes)(h)
}