tinyhmacmd5 0.1.2 → 0.1.4
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 +2 -2
- package/browser.min.js +1 -1
- package/main.js +5 -6
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@ English | [中文](README-zh.md)
|
|
|
3
3
|
# Tiny HMAC MD5
|
|
4
4
|
|
|
5
5
|
A tiny, fully compliant HMAC-MD5 implementation for JavaScript:
|
|
6
|
-
[`browser.min.js`](browser.min.js) is only **
|
|
6
|
+
[`browser.min.js`](browser.min.js) is only **1045 bytes**.
|
|
7
7
|
|
|
8
8
|
- **Input type**: `string` (UTF‑8), `Uint8Array` or `Uint8ClampedArray`
|
|
9
9
|
- **Output type**: hex `string` or raw `Uint8Array`
|
|
@@ -131,7 +131,7 @@ During the adaptation, I discovered that `blueimp-md5` did not correctly handle
|
|
|
131
131
|
|
|
132
132
|
I also found that using `Array` to process inputs over 512 MiB could throw a `RangeError`, so I replaced it with `Int32Array`.
|
|
133
133
|
|
|
134
|
-
I demonstrated in practice that HMAC-MD5 can be implemented in an extremely small footprint (
|
|
134
|
+
I demonstrated in practice that HMAC-MD5 can be implemented in an extremely small footprint (1045 bytes) while also improving reliability.
|
|
135
135
|
|
|
136
136
|
Maybe not many people care about saving just a few KB, but `tinyhmacmd5` exists precisely to "explore the unknown".
|
|
137
137
|
|
package/browser.min.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
/** @license https://bddjr.github.io/tinyhmacmd5/lic */
|
|
2
|
-
{let r=1732584193,e=271733878,n=~r,t=~e,o=2**32,f=Math,a=f.floor,l=r=>16*a((r+8)/64)+16,
|
|
2
|
+
{let r=1732584193,e=271733878,n=~r,t=~e,o=2**32,f=Math,a=f.floor,l=r=>16*a((r+8)/64)+16,c=[],d=(d,i,u=0,g=l(i),h,s,w,y,A=[r,t,n,e],v=[...A])=>{for(d[g-1]=0|8*i/o,d[g-2]=0|8*i,d[a(i/4)]|=128<<i%4*8;u<d.length;u+=16){for(y=g=0;g<64;)A[3&y]=0|((h=0|(h=A[3&++y],s=A[3&++y],w=A[3&++y],((i=g>>4<<2)?i>4?i>8?s^(h|~w):h^s^w:h&w|s&~w:h&s|~h&w)+(0|d[u+(g*(29521>>i)+(1296>>i)&15)])+(s="',16%).4$+07&*/5".charCodeAt(i+g%4),c[63-g++]??=0|o*f.abs(f.sin(g)))+A[y+1&3]))<<s|h>>>64-s)+A[y+2&3];for(y=4;y;)v[--y]=A[y]=0|v[y]+A[y]}return A},i=(r,e,n=("string"==typeof r?r=(new TextEncoder).encode(r):r).length,t=new Int32Array(l(4*e+n)),o=0)=>{for(;o<n;)t[e++]=r[o++]|r[o++]<<8|r[o++]<<16|r[o++]<<24;return[t,n]};var md5=(r,e,n)=>{var t=16,o=null!=e,[f,a]=i(r,o*t),l=new Uint8Array(t);if(o){let[r,n]=i(e,0),o=[];for(n>64&&(r=d(r,n));t;)o[--t]=1785358954^(f[t]=909522486^r[t]);t=16,f=o.concat(d(f,64+a)),a=80}for(f=d(f,a);t;)l[--t]=f[t>>2]>>>t%4*8;return n?l:l.reduce((r,e)=>r+(e>>4&&"")+e.toString(16),"")}}
|
package/main.js
CHANGED
|
@@ -73,12 +73,12 @@ let binlMD5 = (
|
|
|
73
73
|
0 | x[i + (j * (0x7351 >> l) + (0x0510 >> l) & 15)]
|
|
74
74
|
) +
|
|
75
75
|
(
|
|
76
|
-
t1 = "',16%).4$+07&*/5".charCodeAt(l + j % 4)
|
|
76
|
+
t1 = "',16%).4$+07&*/5".charCodeAt(l + j % 4),
|
|
77
77
|
K[63 - j++] ??= 0 | $2_32 * $Math.abs($Math.sin(j))
|
|
78
78
|
) +
|
|
79
79
|
output[oi + 1 & 3]
|
|
80
80
|
),
|
|
81
|
-
0 | (t0 << t1 | t0 >>>
|
|
81
|
+
0 | (t0 << t1 | t0 >>> 64 - t1) + output[oi + 2 & 3]
|
|
82
82
|
)
|
|
83
83
|
}
|
|
84
84
|
for (oi = 4; oi;) {
|
|
@@ -163,12 +163,11 @@ var md5 = (data, key, raw) => {
|
|
|
163
163
|
bkey = binlMD5(bkey, keyByteLen)
|
|
164
164
|
}
|
|
165
165
|
for (; i;) {
|
|
166
|
-
|
|
167
|
-
opad[i] =
|
|
166
|
+
// (0x36363636 ^ 0x5c5c5c5c) == 0x6a6a6a6a
|
|
167
|
+
opad[--i] = 0x6a6a6a6a ^ (bdata[i] = 0x36363636 ^ bkey[i])
|
|
168
168
|
}
|
|
169
169
|
i = 16
|
|
170
|
-
bdata = binlMD5(bdata, 64 + dataByteLen)
|
|
171
|
-
bdata.unshift(...opad)
|
|
170
|
+
bdata = opad.concat(binlMD5(bdata, 64 + dataByteLen))
|
|
172
171
|
dataByteLen = 80
|
|
173
172
|
}
|
|
174
173
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tinyhmacmd5",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "A tiny, fully compliant HMAC-MD5 implementation for JavaScript: browser.min.js is only
|
|
3
|
+
"version": "0.1.4",
|
|
4
|
+
"description": "A tiny, fully compliant HMAC-MD5 implementation for JavaScript: browser.min.js is only 1045 bytes.",
|
|
5
5
|
"author": "bddjr",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"type": "module",
|