tinyhmacmd5 0.3.1 → 0.3.2-es2026
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 +18 -22
- package/browser.min.js +1 -1
- package/main.js +5 -11
- package/package.json +3 -3
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 **952 bytes**.
|
|
6
6
|
|
|
7
7
|
- **Input type**: `string` (UTF‑8), `Uint8Array` or `Uint8ClampedArray`
|
|
8
8
|
- **Output type**: hex `string` or bytes `Uint8Array`
|
|
@@ -10,14 +10,10 @@ A tiny and reliable HMAC-MD5 implementation for JavaScript: [`browser.min.js`](b
|
|
|
10
10
|
- **TypeScript‑ready**: [`main.d.ts`](main.d.ts)
|
|
11
11
|
- **0 dependencies**
|
|
12
12
|
|
|
13
|
-
**Live demo**: https://bddjr.github.io/tinyhmacmd5/
|
|
14
|
-
|
|
15
13
|
`tinyhmacmd5` does not simply aim for the smallest possible size.
|
|
16
14
|
Its goal is to balance code size and runtime performance, so some performance-oriented implementations are intentionally retained.
|
|
17
15
|
As a result, the final size is not the smallest theoretically achievable.
|
|
18
16
|
|
|
19
|
-
If you need a smaller implementation that targets ECMAScript 2026, see the [`es2026`](https://github.com/bddjr/tinyhmacmd5/tree/es2026) branch.
|
|
20
|
-
|
|
21
17
|
> [!WARNING]
|
|
22
18
|
> MD5 is cryptographically broken and unsafe for security-sensitive applications.
|
|
23
19
|
> Do not rely on it for password hashing, digital signatures, or certificate verification.
|
|
@@ -27,7 +23,7 @@ If you need a smaller implementation that targets ECMAScript 2026, see the [`es2
|
|
|
27
23
|
### npm
|
|
28
24
|
|
|
29
25
|
```
|
|
30
|
-
npm i tinyhmacmd5
|
|
26
|
+
npm i tinyhmacmd5@es2026
|
|
31
27
|
```
|
|
32
28
|
|
|
33
29
|
```js
|
|
@@ -43,7 +39,7 @@ You can also use other package managers (e.g. `pnpm` or `yarn`) in place of `npm
|
|
|
43
39
|
See https://www.jsdelivr.com/package/npm/tinyhmacmd5
|
|
44
40
|
|
|
45
41
|
```html
|
|
46
|
-
<script src="https://cdn.jsdelivr.net/npm/tinyhmacmd5"></script>
|
|
42
|
+
<script src="https://cdn.jsdelivr.net/npm/tinyhmacmd5@es2026"></script>
|
|
47
43
|
```
|
|
48
44
|
|
|
49
45
|
It will define the `md5` function using `var`.
|
|
@@ -51,7 +47,7 @@ It will define the `md5` function using `var`.
|
|
|
51
47
|
### UNPKG
|
|
52
48
|
|
|
53
49
|
```html
|
|
54
|
-
<script src="https://unpkg.com/tinyhmacmd5"></script>
|
|
50
|
+
<script src="https://unpkg.com/tinyhmacmd5@es2026"></script>
|
|
55
51
|
```
|
|
56
52
|
|
|
57
53
|
It will define the `md5` function using `var`.
|
|
@@ -142,22 +138,22 @@ md5(data)
|
|
|
142
138
|
|
|
143
139
|
## Runtime Environment
|
|
144
140
|
|
|
145
|
-
Environments that support [
|
|
141
|
+
Environments that support [`Uint8Array.prototype.toHex()`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array/toHex) :
|
|
146
142
|
|
|
147
143
|
- Desktop
|
|
148
|
-
- Chrome ≥
|
|
149
|
-
- Edge ≥
|
|
150
|
-
- Firefox ≥
|
|
151
|
-
- Opera ≥
|
|
152
|
-
- Safari ≥
|
|
144
|
+
- Chrome ≥ 140 (2025-09-02)
|
|
145
|
+
- Edge ≥ 140 (2025-09-05)
|
|
146
|
+
- Firefox ≥ 133 (2024-11-26)
|
|
147
|
+
- Opera ≥ 124 (2025-11-13)
|
|
148
|
+
- Safari ≥ 18.2 (2024-12-11)
|
|
153
149
|
- Mobile
|
|
154
|
-
- Chrome Android ≥
|
|
155
|
-
- Firefox for Android ≥
|
|
156
|
-
- Opera Android ≥
|
|
157
|
-
- Safari on iOS ≥
|
|
158
|
-
- Samsung Browser
|
|
159
|
-
- WebView Android ≥
|
|
160
|
-
- WebView on iOS ≥
|
|
150
|
+
- Chrome Android ≥ 140 (2025-09-02)
|
|
151
|
+
- Firefox for Android ≥ 133 (2024-11-26)
|
|
152
|
+
- Opera Android ≥ 92 (2025-10-08)
|
|
153
|
+
- Safari on iOS ≥ 18.2 (2024-12-11)
|
|
154
|
+
- Samsung Browser ×
|
|
155
|
+
- WebView Android ≥ 140 (2025-09-02)
|
|
156
|
+
- WebView on iOS ≥ 18.2 (2024-12-11)
|
|
161
157
|
|
|
162
158
|
Not recommended for use in environments that support `node:crypto`, as `node:crypto` already provides HMAC-MD5.
|
|
163
159
|
|
|
@@ -205,7 +201,7 @@ During the adaptation, I discovered that `blueimp-md5` did not correctly handle
|
|
|
205
201
|
|
|
206
202
|
I also found that using `Array` to process inputs over 512 MiB could throw a `RangeError`, so I replaced it with `Int32Array`.
|
|
207
203
|
|
|
208
|
-
I demonstrated in practice that HMAC-MD5 can be implemented in an extremely small footprint (
|
|
204
|
+
I demonstrated in practice that HMAC-MD5 can be implemented in an extremely small footprint (952 bytes) while also improving reliability.
|
|
209
205
|
|
|
210
206
|
Maybe not many people care about saving just a few KB, but `tinyhmacmd5` exists precisely to "explore the unknown".
|
|
211
207
|
|
package/browser.min.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! npmjs.com/tinyhmacmd5 */{let r=Math,e=r.floor,n=Int32Array,t=new n(64).map((e,n)=>2**32*r.abs(r.sin(n+1))),o=(r,o,f=0,a,l=1732584193,w=271733878,
|
|
1
|
+
/*! npmjs.com/tinyhmacmd5 */{let r=Math,e=r.floor,n=Int32Array,t=new n(64).map((e,n)=>2**32*r.abs(r.sin(n+1))),o=(r,o,f=0,a,l=1732584193,w=271733878,d,h,i=r.length,s=n.of(l,~w,~l,w),u=new n(s))=>{for(r[i-1]=o/2**29,r[e(o/4)]|=128<<(r[i-2]=o<<3);f<i;f+=16){for(o=0;o<16;o+=4)for(a=0;a<16;)s[h&=3]=((w=s[h]+t[4*o|a]+(l=s[3&++h],w=s[3&++h],d=s[3&++h],o?o>4?o>8?w^(l|~d):l^w^d:l&d|w&~d:l&w|~l&d)+r[f+(a*(29521>>o)+(1296>>o)&15)])<<(d="',16%).4$+07&*/5".charCodeAt(3&a++|o))|w>>>64-d)+l;for(;h;)u[--h]=s[h]+=u[h]}return s},f=(r,t,o=("string"==typeof r?r=(new TextEncoder).encode(r):r).length,f=new n(16*e((4*t+o+72)/64)),a=0)=>{for(;a<o;)f[t++]=r[a++]|r[a++]<<8|r[a++]<<16|r[a++]<<24;return[f,o]};var md5=(r,e,t)=>{var a=16,l=null!=e,[w,d]=f(r,l*a),h=new Uint8Array(a);if(l){let[r,t]=f(e,0),l=new n(32);for(t>64&&(r=o(r,t)),t=a;t;)l[--t]=1785358954^(w[t]=909522486^r[t]);l.set(o(w,64+d),a),w=l,d=80}for(w=o(w,d);a;)h[--a]=w[a>>2]>>8*a;return t?h:h.toHex()}}
|
package/main.js
CHANGED
|
@@ -125,9 +125,7 @@ var md5 = (data, key, raw) => {
|
|
|
125
125
|
var i = 16
|
|
126
126
|
, hasKey = key != null
|
|
127
127
|
, [bdata, temp] = inputToWords(data, /**@type {*}*/(hasKey) * i)
|
|
128
|
-
|
|
129
|
-
/** @type {*} */
|
|
130
|
-
var out = raw ? new Uint8Array(i) : ''
|
|
128
|
+
, out = new Uint8Array(i)
|
|
131
129
|
|
|
132
130
|
if (hasKey) {
|
|
133
131
|
// HMAC
|
|
@@ -140,7 +138,7 @@ var md5 = (data, key, raw) => {
|
|
|
140
138
|
// (0x36363636 ^ 0x5c5c5c5c) == 0x6a6a6a6a
|
|
141
139
|
opad[--j] = 0x6a6a6a6a ^ (bdata[j] = 0x36363636 ^ bkey[j])
|
|
142
140
|
}
|
|
143
|
-
opad.set(wordsMD5(bdata, 64 + temp),
|
|
141
|
+
opad.set(wordsMD5(bdata, 64 + temp), i)
|
|
144
142
|
bdata = opad
|
|
145
143
|
temp = 80
|
|
146
144
|
}
|
|
@@ -148,15 +146,11 @@ var md5 = (data, key, raw) => {
|
|
|
148
146
|
bdata = wordsMD5(bdata, temp)
|
|
149
147
|
|
|
150
148
|
// words to bytes or hex
|
|
151
|
-
for (; i;
|
|
152
|
-
|
|
153
|
-
? out[i] = temp
|
|
154
|
-
: out = (temp >> 4 && '') + temp.toString(16) + out
|
|
155
|
-
) {
|
|
156
|
-
temp = bdata[--i >> 2] >> i * 8 & 0xff
|
|
149
|
+
for (; i;) {
|
|
150
|
+
out[--i] = bdata[i >> 2] >> i * 8
|
|
157
151
|
}
|
|
158
152
|
|
|
159
|
-
return out
|
|
153
|
+
return raw ? out : out.toHex()
|
|
160
154
|
}
|
|
161
155
|
|
|
162
156
|
export default md5
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tinyhmacmd5",
|
|
3
|
-
"version": "0.3.
|
|
4
|
-
"description": "A tiny and reliable HMAC-MD5 implementation for JavaScript: browser.min.js is only
|
|
3
|
+
"version": "0.3.2-es2026",
|
|
4
|
+
"description": "A tiny and reliable HMAC-MD5 implementation for JavaScript: browser.min.js is only 952 bytes.",
|
|
5
5
|
"author": "bddjr",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"type": "module",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"typescript": "^7.0.2"
|
|
64
64
|
},
|
|
65
65
|
"scripts": {
|
|
66
|
-
"build": "tsc && node scripts/build.mjs && es-check
|
|
66
|
+
"build": "tsc && node scripts/build.mjs && es-check es2026 --module --checkFeatures main.js browser.min.js",
|
|
67
67
|
"build:unchanged": "node scripts/build-unchanged.mjs",
|
|
68
68
|
"test": "pnpm build && pnpm test:only",
|
|
69
69
|
"test:only": "node scripts/test.mjs && node scripts/test-513MiB.mjs",
|