UNPKG

6.93 kBJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.default = void 0;
7
8/*
9 * Browser-compatible JavaScript MD5
10 *
11 * Modification of JavaScript MD5
12 * https://github.com/blueimp/JavaScript-MD5
13 *
14 * Copyright 2011, Sebastian Tschan
15 * https://blueimp.net
16 *
17 * Licensed under the MIT license:
18 * https://opensource.org/licenses/MIT
19 *
20 * Based on
21 * A JavaScript implementation of the RSA Data Security, Inc. MD5 Message
22 * Digest Algorithm, as defined in RFC 1321.
23 * Version 2.2 Copyright (C) Paul Johnston 1999 - 2009
24 * Other contributors: Greg Holt, Andrew Kepert, Ydnar, Lostinet
25 * Distributed under the BSD License
26 * See http://pajhome.org.uk/crypt/md5 for more info.
27 */
28function md5(bytes) {
29 if (typeof bytes == 'string') {
30 var msg = unescape(encodeURIComponent(bytes)); // UTF8 escape
31
32 bytes = new Array(msg.length);
33
34 for (var i = 0; i < msg.length; i++) bytes[i] = msg.charCodeAt(i);
35 }
36
37 return md5ToHexEncodedArray(wordsToMd5(bytesToWords(bytes), bytes.length * 8));
38}
39/*
40 * Convert an array of little-endian words to an array of bytes
41 */
42
43
44function md5ToHexEncodedArray(input) {
45 var i;
46 var x;
47 var output = [];
48 var length32 = input.length * 32;
49 var hexTab = '0123456789abcdef';
50 var hex;
51
52 for (i = 0; i < length32; i += 8) {
53 x = input[i >> 5] >>> i % 32 & 0xff;
54 hex = parseInt(hexTab.charAt(x >>> 4 & 0x0f) + hexTab.charAt(x & 0x0f), 16);
55 output.push(hex);
56 }
57
58 return output;
59}
60/*
61 * Calculate the MD5 of an array of little-endian words, and a bit length.
62 */
63
64
65function wordsToMd5(x, len) {
66 /* append padding */
67 x[len >> 5] |= 0x80 << len % 32;
68 x[(len + 64 >>> 9 << 4) + 14] = len;
69 var i;
70 var olda;
71 var oldb;
72 var oldc;
73 var oldd;
74 var a = 1732584193;
75 var b = -271733879;
76 var c = -1732584194;
77 var d = 271733878;
78
79 for (i = 0; i < x.length; i += 16) {
80 olda = a;
81 oldb = b;
82 oldc = c;
83 oldd = d;
84 a = md5ff(a, b, c, d, x[i], 7, -680876936);
85 d = md5ff(d, a, b, c, x[i + 1], 12, -389564586);
86 c = md5ff(c, d, a, b, x[i + 2], 17, 606105819);
87 b = md5ff(b, c, d, a, x[i + 3], 22, -1044525330);
88 a = md5ff(a, b, c, d, x[i + 4], 7, -176418897);
89 d = md5ff(d, a, b, c, x[i + 5], 12, 1200080426);
90 c = md5ff(c, d, a, b, x[i + 6], 17, -1473231341);
91 b = md5ff(b, c, d, a, x[i + 7], 22, -45705983);
92 a = md5ff(a, b, c, d, x[i + 8], 7, 1770035416);
93 d = md5ff(d, a, b, c, x[i + 9], 12, -1958414417);
94 c = md5ff(c, d, a, b, x[i + 10], 17, -42063);
95 b = md5ff(b, c, d, a, x[i + 11], 22, -1990404162);
96 a = md5ff(a, b, c, d, x[i + 12], 7, 1804603682);
97 d = md5ff(d, a, b, c, x[i + 13], 12, -40341101);
98 c = md5ff(c, d, a, b, x[i + 14], 17, -1502002290);
99 b = md5ff(b, c, d, a, x[i + 15], 22, 1236535329);
100 a = md5gg(a, b, c, d, x[i + 1], 5, -165796510);
101 d = md5gg(d, a, b, c, x[i + 6], 9, -1069501632);
102 c = md5gg(c, d, a, b, x[i + 11], 14, 643717713);
103 b = md5gg(b, c, d, a, x[i], 20, -373897302);
104 a = md5gg(a, b, c, d, x[i + 5], 5, -701558691);
105 d = md5gg(d, a, b, c, x[i + 10], 9, 38016083);
106 c = md5gg(c, d, a, b, x[i + 15], 14, -660478335);
107 b = md5gg(b, c, d, a, x[i + 4], 20, -405537848);
108 a = md5gg(a, b, c, d, x[i + 9], 5, 568446438);
109 d = md5gg(d, a, b, c, x[i + 14], 9, -1019803690);
110 c = md5gg(c, d, a, b, x[i + 3], 14, -187363961);
111 b = md5gg(b, c, d, a, x[i + 8], 20, 1163531501);
112 a = md5gg(a, b, c, d, x[i + 13], 5, -1444681467);
113 d = md5gg(d, a, b, c, x[i + 2], 9, -51403784);
114 c = md5gg(c, d, a, b, x[i + 7], 14, 1735328473);
115 b = md5gg(b, c, d, a, x[i + 12], 20, -1926607734);
116 a = md5hh(a, b, c, d, x[i + 5], 4, -378558);
117 d = md5hh(d, a, b, c, x[i + 8], 11, -2022574463);
118 c = md5hh(c, d, a, b, x[i + 11], 16, 1839030562);
119 b = md5hh(b, c, d, a, x[i + 14], 23, -35309556);
120 a = md5hh(a, b, c, d, x[i + 1], 4, -1530992060);
121 d = md5hh(d, a, b, c, x[i + 4], 11, 1272893353);
122 c = md5hh(c, d, a, b, x[i + 7], 16, -155497632);
123 b = md5hh(b, c, d, a, x[i + 10], 23, -1094730640);
124 a = md5hh(a, b, c, d, x[i + 13], 4, 681279174);
125 d = md5hh(d, a, b, c, x[i], 11, -358537222);
126 c = md5hh(c, d, a, b, x[i + 3], 16, -722521979);
127 b = md5hh(b, c, d, a, x[i + 6], 23, 76029189);
128 a = md5hh(a, b, c, d, x[i + 9], 4, -640364487);
129 d = md5hh(d, a, b, c, x[i + 12], 11, -421815835);
130 c = md5hh(c, d, a, b, x[i + 15], 16, 530742520);
131 b = md5hh(b, c, d, a, x[i + 2], 23, -995338651);
132 a = md5ii(a, b, c, d, x[i], 6, -198630844);
133 d = md5ii(d, a, b, c, x[i + 7], 10, 1126891415);
134 c = md5ii(c, d, a, b, x[i + 14], 15, -1416354905);
135 b = md5ii(b, c, d, a, x[i + 5], 21, -57434055);
136 a = md5ii(a, b, c, d, x[i + 12], 6, 1700485571);
137 d = md5ii(d, a, b, c, x[i + 3], 10, -1894986606);
138 c = md5ii(c, d, a, b, x[i + 10], 15, -1051523);
139 b = md5ii(b, c, d, a, x[i + 1], 21, -2054922799);
140 a = md5ii(a, b, c, d, x[i + 8], 6, 1873313359);
141 d = md5ii(d, a, b, c, x[i + 15], 10, -30611744);
142 c = md5ii(c, d, a, b, x[i + 6], 15, -1560198380);
143 b = md5ii(b, c, d, a, x[i + 13], 21, 1309151649);
144 a = md5ii(a, b, c, d, x[i + 4], 6, -145523070);
145 d = md5ii(d, a, b, c, x[i + 11], 10, -1120210379);
146 c = md5ii(c, d, a, b, x[i + 2], 15, 718787259);
147 b = md5ii(b, c, d, a, x[i + 9], 21, -343485551);
148 a = safeAdd(a, olda);
149 b = safeAdd(b, oldb);
150 c = safeAdd(c, oldc);
151 d = safeAdd(d, oldd);
152 }
153
154 return [a, b, c, d];
155}
156/*
157 * Convert an array bytes to an array of little-endian words
158 * Characters >255 have their high-byte silently ignored.
159 */
160
161
162function bytesToWords(input) {
163 var i;
164 var output = [];
165 output[(input.length >> 2) - 1] = undefined;
166
167 for (i = 0; i < output.length; i += 1) {
168 output[i] = 0;
169 }
170
171 var length8 = input.length * 8;
172
173 for (i = 0; i < length8; i += 8) {
174 output[i >> 5] |= (input[i / 8] & 0xff) << i % 32;
175 }
176
177 return output;
178}
179/*
180 * Add integers, wrapping at 2^32. This uses 16-bit operations internally
181 * to work around bugs in some JS interpreters.
182 */
183
184
185function safeAdd(x, y) {
186 var lsw = (x & 0xffff) + (y & 0xffff);
187 var msw = (x >> 16) + (y >> 16) + (lsw >> 16);
188 return msw << 16 | lsw & 0xffff;
189}
190/*
191 * Bitwise rotate a 32-bit number to the left.
192 */
193
194
195function bitRotateLeft(num, cnt) {
196 return num << cnt | num >>> 32 - cnt;
197}
198/*
199 * These functions implement the four basic operations the algorithm uses.
200 */
201
202
203function md5cmn(q, a, b, x, s, t) {
204 return safeAdd(bitRotateLeft(safeAdd(safeAdd(a, q), safeAdd(x, t)), s), b);
205}
206
207function md5ff(a, b, c, d, x, s, t) {
208 return md5cmn(b & c | ~b & d, a, b, x, s, t);
209}
210
211function md5gg(a, b, c, d, x, s, t) {
212 return md5cmn(b & d | c & ~d, a, b, x, s, t);
213}
214
215function md5hh(a, b, c, d, x, s, t) {
216 return md5cmn(b ^ c ^ d, a, b, x, s, t);
217}
218
219function md5ii(a, b, c, d, x, s, t) {
220 return md5cmn(c ^ (b | ~d), a, b, x, s, t);
221}
222
223var _default = md5;
224exports.default = _default;
225module.exports = exports.default;
\No newline at end of file