tinyhmacmd5 0.3.3 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -11
- package/browser.min.js +1 -1
- package/main.js +29 -20
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@ English | [中文](README-zh.md)
|
|
|
2
2
|
|
|
3
3
|
# Tiny HMAC MD5
|
|
4
4
|
|
|
5
|
-
A tiny and reliable HMAC-MD5 implementation for JavaScript: [`browser.min.js`](browser.min.js) is only **
|
|
5
|
+
A tiny and reliable HMAC-MD5 implementation for JavaScript: [`browser.min.js`](browser.min.js) is only **1021 bytes**.
|
|
6
6
|
|
|
7
7
|
- **Input type**: `string` (UTF‑8), `Uint8Array` or `Uint8ClampedArray`
|
|
8
8
|
- **Output type**: hex `string` or bytes `Uint8Array`
|
|
@@ -172,19 +172,19 @@ pnpm benchmark
|
|
|
172
172
|
```
|
|
173
173
|
Data length: 104857600 chars (100MiB)
|
|
174
174
|
--------------------------------------------------
|
|
175
|
-
tinyhmacmd5 :
|
|
176
|
-
js-md5 :
|
|
177
|
-
blueimp-md5 :
|
|
178
|
-
crypto-js :
|
|
179
|
-
node:crypto : 130.
|
|
175
|
+
tinyhmacmd5 : 569.00 ms
|
|
176
|
+
js-md5 : 130.30 ms
|
|
177
|
+
blueimp-md5 : 3851.57 ms
|
|
178
|
+
crypto-js : 1561.18 ms
|
|
179
|
+
node:crypto : 130.29 ms
|
|
180
180
|
--------------------------------------------------
|
|
181
181
|
✅ All pure JS implementations match node:crypto result.
|
|
182
182
|
|
|
183
183
|
--- Pure 513MiB Test (No prior small tests) ---
|
|
184
|
-
tinyhmacmd5 HMAC-MD5 timer:
|
|
185
|
-
node:crypto HMAC-MD5 timer: 552.
|
|
186
|
-
tinyhmacmd5 MD5 timer:
|
|
187
|
-
node:crypto MD5 timer:
|
|
184
|
+
tinyhmacmd5 HMAC-MD5 timer: 2.796s
|
|
185
|
+
node:crypto HMAC-MD5 timer: 552.718ms
|
|
186
|
+
tinyhmacmd5 MD5 timer: 2.775s
|
|
187
|
+
node:crypto MD5 timer: 551.291ms
|
|
188
188
|
```
|
|
189
189
|
|
|
190
190
|
CPU: i5-10600KF
|
|
@@ -210,7 +210,7 @@ During the adaptation, I discovered that `blueimp-md5` did not correctly handle
|
|
|
210
210
|
|
|
211
211
|
I also found that using `Array` to process inputs over 512 MiB could throw a `RangeError`, so I replaced it with `Int32Array`.
|
|
212
212
|
|
|
213
|
-
I demonstrated in practice that HMAC-MD5 can be implemented in an extremely small footprint (
|
|
213
|
+
I demonstrated in practice that HMAC-MD5 can be implemented in an extremely small footprint (1021 bytes) while also improving reliability.
|
|
214
214
|
|
|
215
215
|
Maybe not many people care about saving just a few KB, but `tinyhmacmd5` exists precisely to "explore the unknown".
|
|
216
216
|
|
package/browser.min.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! npmjs.com/tinyhmacmd5 */{let
|
|
1
|
+
/*! npmjs.com/tinyhmacmd5 */{let e=Math,r=Int32Array,n=Uint8Array,t=new r(64).map((r,n)=>2**32*e.abs(e.sin(n+1))),f=new n(t.buffer)[28]<2,o=(n,f,o=0,a,l=1732584193,w=271733878,i,u,s=n.length,c=r.of(l,~w,~l,w),d=new r(c))=>{for(n[s-1]=f/2**29,n[e.floor(f/4)]|=128<<(n[s-2]=f<<3);o<s;o+=16){for(f=0;f<16;f+=4)for(a=0;a<16;)c[u&=3]=((w=c[u]+t[4*f+a]+(l=c[3&++u],w=c[3&++u],i=c[3&++u],w^(f>4?f>8?l|~i:l^i:f?i&(l^w):~l&(w^i)))+n[o+(a*(29521>>f)+(1296>>f)&15)])<<(i="',16%).4$+07&*/5".charCodeAt(3&a++|f))|w>>>32-i)+l;for(;u;)d[--u]=c[u]+=d[u]}return c},a=(t,o,a=("string"==typeof t?t=(new TextEncoder).encode(t):t).length,l=new r(o+16*e.ceil((a+9)/64)),w=new n(l.buffer),i)=>{for(f?w.set(t,4*o):i=0;i<a;3&++i||o++)l[o]|=t[i]<<8*i;return[l,a]};var md5=(e,t,f)=>{var l=16,w=null!=t,[i,u]=a(e,w*l),s=f?new n(l):"";if(w){let[e,n]=a(t,0),f=new r(32);for(n>64&&(e=o(e,n)),n=l;n;)f[--n]=1785358954^(i[n]=909522486^e[n]);f.set(o(i,64+u),l),i=f,u=80}for(i=o(i,u);l;f?s[l]=u:s=(u>>4&&"")+u.toString(16)+s)u=i[--l>>2]>>8*l&255;return s}}
|
package/main.js
CHANGED
|
@@ -6,9 +6,14 @@ let $Math = Math
|
|
|
6
6
|
|
|
7
7
|
let $Int32Array = Int32Array
|
|
8
8
|
|
|
9
|
+
let $Uint8Array = Uint8Array
|
|
10
|
+
|
|
9
11
|
/** MD5 constants cached in memory */
|
|
10
12
|
let K = new $Int32Array(64).map((v, i) => 2 ** 32 * $Math.abs($Math.sin(i + 1)))
|
|
11
13
|
|
|
14
|
+
/** is little-endian */
|
|
15
|
+
let isLE = new $Uint8Array(K.buffer)[28] < 2
|
|
16
|
+
|
|
12
17
|
/**
|
|
13
18
|
* Calculate the MD5 of an array of little-endian words, and a byte length.
|
|
14
19
|
*
|
|
@@ -36,7 +41,8 @@ let wordsMD5 = (
|
|
|
36
41
|
oldOutput = new $Int32Array(output),
|
|
37
42
|
) => {
|
|
38
43
|
// append padding
|
|
39
|
-
// `l` may be >= 2**32, so cannot use `>>>` as a replacement for `floor
|
|
44
|
+
// `l` may be >= 2**32, so cannot use `>>>` as a replacement for `floor`.
|
|
45
|
+
// `l << 3` cannot be changed to `l * 8`, as it would trigger JIT deoptimization on large inputs.
|
|
40
46
|
x[xLen - 1] = l / 2 ** 29;
|
|
41
47
|
x[$Math.floor(l / 4)] |= 0x80 << (x[xLen - 2] = l << 3);
|
|
42
48
|
|
|
@@ -52,20 +58,20 @@ let wordsMD5 = (
|
|
|
52
58
|
t0 = output[++oi & 3],
|
|
53
59
|
t1 = output[++oi & 3],
|
|
54
60
|
t2 = output[++oi & 3],
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
l >
|
|
58
|
-
?
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
61
|
+
t1 ^ (
|
|
62
|
+
l > 4
|
|
63
|
+
? l > 8
|
|
64
|
+
? t0 | ~t2 // Round 4: I
|
|
65
|
+
: t0 ^ t2 // Round 3: H
|
|
66
|
+
: l
|
|
67
|
+
? t2 & (t0 ^ t1) // Round 2: G
|
|
68
|
+
: ~t0 & (t1 ^ t2) // Round 1: F
|
|
69
|
+
)
|
|
64
70
|
) +
|
|
65
71
|
x[i + (j * (0x7351 >> l) + (0x0510 >> l) & 15)]
|
|
66
72
|
)
|
|
67
73
|
) << (
|
|
68
|
-
t2 = "',16%).4$+07&*/5".charCodeAt(j++ & 3 | l)
|
|
74
|
+
t2 = "',16%).4$+07&*/5".charCodeAt(j++ & 3 | l)
|
|
69
75
|
) | t1 >>> 32 - t2
|
|
70
76
|
) + t0
|
|
71
77
|
}
|
|
@@ -83,6 +89,8 @@ let wordsMD5 = (
|
|
|
83
89
|
* @param {*} input
|
|
84
90
|
* @param {number} j pad int32 length (0 or 16)
|
|
85
91
|
*
|
|
92
|
+
* @param {number} [i]
|
|
93
|
+
*
|
|
86
94
|
* @returns {[Int32Array<ArrayBuffer>, number]}
|
|
87
95
|
*/
|
|
88
96
|
let inputToWords = (
|
|
@@ -97,15 +105,16 @@ let inputToWords = (
|
|
|
97
105
|
// Using `Array` to process inputs over 512 MiB could throw a `RangeError`,
|
|
98
106
|
// so I replaced it with `Int32Array`.
|
|
99
107
|
output = new $Int32Array(j + $Math.ceil((byteLen + 9) / 64) * 16),
|
|
100
|
-
|
|
108
|
+
outputBytes = new $Uint8Array(output.buffer),
|
|
109
|
+
i,
|
|
101
110
|
) => {
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
111
|
+
// (fast) little-endian
|
|
112
|
+
isLE
|
|
113
|
+
? outputBytes.set(input, j * 4)
|
|
114
|
+
: i = 0
|
|
115
|
+
// (slow) big-endian
|
|
116
|
+
for (; i < byteLen; ++i & 3 || j++) {
|
|
117
|
+
output[j] |= input[i] << 8 * i
|
|
109
118
|
}
|
|
110
119
|
return [output, byteLen]
|
|
111
120
|
}
|
|
@@ -127,7 +136,7 @@ var md5 = (data, key, raw) => {
|
|
|
127
136
|
, [bdata, temp] = inputToWords(data, /**@type {*}*/(hasKey) * i)
|
|
128
137
|
|
|
129
138
|
/** @type {*} */
|
|
130
|
-
var out = raw ? new Uint8Array(i) : ''
|
|
139
|
+
var out = raw ? new $Uint8Array(i) : ''
|
|
131
140
|
|
|
132
141
|
if (hasKey) {
|
|
133
142
|
// HMAC
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tinyhmacmd5",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "A tiny and reliable HMAC-MD5 implementation for JavaScript: browser.min.js is only
|
|
3
|
+
"version": "0.4.0",
|
|
4
|
+
"description": "A tiny and reliable HMAC-MD5 implementation for JavaScript: browser.min.js is only 1021 bytes.",
|
|
5
5
|
"author": "bddjr",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"type": "module",
|