forked from margelo/react-native-quick-crypto
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathencoding.ts
More file actions
385 lines (329 loc) · 8.27 KB
/
encoding.ts
File metadata and controls
385 lines (329 loc) · 8.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
import {
bufferToString,
stringToBuffer,
Buffer as CraftzdogBuffer,
} from 'react-native-quick-crypto';
// For utf16le, the native implementation could be disabled for non-Hermes runtimes or older versions of RN.
// Use the fallbacks to meature the performance without causing errors, even if it could use Buffer polyfill.
import { ab2str, binaryLikeToArrayBuffer } from 'react-native-quick-crypto';
import type { BenchFn } from '../../types/benchmarks';
import { Bench } from 'tinybench';
function ab2str_old(buf: ArrayBuffer, encoding: string = 'hex'): string {
return CraftzdogBuffer.from(buf).toString(encoding);
}
function stringToBuffer_old(
input: string,
encoding: string = 'utf-8',
): ArrayBuffer {
const buffer = CraftzdogBuffer.from(input, encoding);
return buffer.buffer.slice(
buffer.byteOffset,
buffer.byteOffset + buffer.byteLength,
);
}
// Generate test data
const generateData = (size: number, asciiOnly: boolean = true): ArrayBuffer => {
if (size < 2 || size % 2 !== 0) {
throw new Error('Size must be at least 2 and even');
}
const bytes = new Uint8Array(size); // Implicitly filled with 0
// Fill ASCII characters in UTF-16LE code units, which can also be represented as binary/ASCII/Latin1/UTF-8
for (let i = 0; i < bytes.length; i += 2) {
bytes[i] = i & 0x7f;
}
if (!asciiOnly) {
// \xC3\xA9 in UTF-8 or \uA9C3 in UTF-16LE
bytes[0] = 0xc3;
bytes[1] = 0xa9;
}
return bytes.buffer as ArrayBuffer;
};
const ab1MB_ascii = generateData(1024 * 1024, true);
const ab1MB = generateData(1024 * 1024, false);
const ab32B_ascii = generateData(32, true);
const ab32B = generateData(32, false);
// Pre-encode strings for decode benchmarks
const hex_1MB = ab2str(ab1MB, 'hex');
const hex_32B = ab2str(ab32B, 'hex');
const base64_1MB = ab2str(ab1MB, 'base64');
const base64_32B = ab2str(ab32B, 'base64');
const utf16le_1MB_ascii = ab2str(ab1MB_ascii, 'utf16le');
const utf16le_32B_ascii = ab2str(ab32B_ascii, 'utf16le');
const utf16le_1MB_non_ascii = ab2str(ab1MB, 'utf16le');
const utf16le_32B_non_ascii = ab2str(ab32B, 'utf16le');
// --- Encode benchmarks (ArrayBuffer → string) ---
const encode_hex_32b: BenchFn = () => {
const bench = new Bench({
name: 'hex encode 32B (digest size)',
iterations: 100,
warmupIterations: 10,
time: 0,
});
bench
.add('rnqc', () => {
bufferToString(ab32B, 'hex');
})
.add('Buffer polyfill', () => {
ab2str_old(ab32B, 'hex');
});
return bench;
};
const encode_hex_1mb: BenchFn = () => {
const bench = new Bench({
name: 'hex encode 1MB',
iterations: 10,
warmupIterations: 2,
time: 0,
});
bench
.add('rnqc', () => {
bufferToString(ab1MB, 'hex');
})
.add('Buffer polyfill', () => {
ab2str_old(ab1MB, 'hex');
});
return bench;
};
const encode_base64_32b: BenchFn = () => {
const bench = new Bench({
name: 'base64 encode 32B (digest size)',
iterations: 100,
warmupIterations: 10,
time: 0,
});
bench
.add('rnqc', () => {
bufferToString(ab32B, 'base64');
})
.add('Buffer polyfill', () => {
ab2str_old(ab32B, 'base64');
});
return bench;
};
const encode_base64_1mb: BenchFn = () => {
const bench = new Bench({
name: 'base64 encode 1MB',
iterations: 10,
warmupIterations: 2,
time: 0,
});
bench
.add('rnqc', () => {
bufferToString(ab1MB, 'base64');
})
.add('Buffer polyfill', () => {
ab2str_old(ab1MB, 'base64');
});
return bench;
};
const encode_utf16le_32b: BenchFn = () => {
const bench = new Bench({
name: 'utf16le encode 32B',
iterations: 100,
warmupIterations: 10,
time: 0,
});
bench
.add('rnqc', () => {
ab2str(ab32B, 'utf16le');
})
.add('Buffer polyfill', () => {
ab2str_old(ab32B, 'utf16le');
});
return bench;
};
const encode_utf16le_1mb: BenchFn = () => {
const bench = new Bench({
name: 'utf16le encode 1MB',
iterations: 10,
warmupIterations: 2,
time: 0,
});
bench
.add('rnqc', () => {
ab2str(ab1MB, 'utf16le');
})
.add('Buffer polyfill', () => {
ab2str_old(ab1MB, 'utf16le');
});
return bench;
};
const encode_utf16le_32b_ascii: BenchFn = () => {
const bench = new Bench({
name: 'utf16le encode 32B (ASCII only)',
iterations: 100,
warmupIterations: 10,
time: 0,
});
bench
.add('rnqc', () => {
ab2str(ab32B_ascii, 'utf16le');
})
.add('Buffer polyfill', () => {
ab2str_old(ab32B_ascii, 'utf16le');
});
return bench;
};
const encode_utf16le_1mb_ascii: BenchFn = () => {
const bench = new Bench({
name: 'utf16le encode 1MB (ASCII only)',
iterations: 10,
warmupIterations: 2,
time: 0,
});
bench
.add('rnqc', () => {
ab2str(ab1MB_ascii, 'utf16le');
})
.add('Buffer polyfill', () => {
ab2str_old(ab1MB_ascii, 'utf16le');
});
return bench;
};
// --- Decode benchmarks (string → ArrayBuffer) ---
const decode_hex_32b: BenchFn = () => {
const bench = new Bench({
name: 'hex decode 32B',
iterations: 100,
warmupIterations: 10,
time: 0,
});
bench
.add('rnqc', () => {
stringToBuffer(hex_32B, 'hex');
})
.add('Buffer polyfill', () => {
stringToBuffer_old(hex_32B, 'hex');
});
return bench;
};
const decode_hex_1mb: BenchFn = () => {
const bench = new Bench({
name: 'hex decode 1MB',
iterations: 10,
warmupIterations: 2,
time: 0,
});
bench
.add('rnqc', () => {
stringToBuffer(hex_1MB, 'hex');
})
.add('Buffer polyfill', () => {
stringToBuffer_old(hex_1MB, 'hex');
});
return bench;
};
const decode_base64_32b: BenchFn = () => {
const bench = new Bench({
name: 'base64 decode 32B',
iterations: 100,
warmupIterations: 10,
time: 0,
});
bench
.add('rnqc', () => {
stringToBuffer(base64_32B, 'base64');
})
.add('Buffer polyfill', () => {
stringToBuffer_old(base64_32B, 'base64');
});
return bench;
};
const decode_base64_1mb: BenchFn = () => {
const bench = new Bench({
name: 'base64 decode 1MB',
iterations: 10,
warmupIterations: 2,
time: 0,
});
bench
.add('rnqc', () => {
stringToBuffer(base64_1MB, 'base64');
})
.add('Buffer polyfill', () => {
stringToBuffer_old(base64_1MB, 'base64');
});
return bench;
};
const decode_utf16le_32b: BenchFn = () => {
const bench = new Bench({
name: 'utf16le decode 32B',
iterations: 100,
warmupIterations: 10,
time: 0,
});
bench
.add('rnqc', () => {
binaryLikeToArrayBuffer(utf16le_32B_non_ascii, 'utf16le');
})
.add('Buffer polyfill', () => {
stringToBuffer_old(utf16le_32B_non_ascii, 'utf16le');
});
return bench;
};
const decode_utf16le_1mb: BenchFn = () => {
const bench = new Bench({
name: 'utf16le decode 1MB',
iterations: 10,
warmupIterations: 2,
time: 0,
});
bench
.add('rnqc', () => {
binaryLikeToArrayBuffer(utf16le_1MB_non_ascii, 'utf16le');
})
.add('Buffer polyfill', () => {
stringToBuffer_old(utf16le_1MB_non_ascii, 'utf16le');
});
return bench;
};
const decode_utf16le_32b_ascii: BenchFn = () => {
const bench = new Bench({
name: 'utf16le decode 32B (ASCII only)',
iterations: 100,
warmupIterations: 10,
time: 0,
});
bench
.add('rnqc', () => {
binaryLikeToArrayBuffer(utf16le_32B_ascii, 'utf16le');
})
.add('Buffer polyfill', () => {
stringToBuffer_old(utf16le_32B_ascii, 'utf16le');
});
return bench;
};
const decode_utf16le_1mb_ascii: BenchFn = () => {
const bench = new Bench({
name: 'utf16le decode 1MB (ASCII only)',
iterations: 10,
warmupIterations: 2,
time: 0,
});
bench
.add('rnqc', () => {
binaryLikeToArrayBuffer(utf16le_1MB_ascii, 'utf16le');
})
.add('Buffer polyfill', () => {
stringToBuffer_old(utf16le_1MB_ascii, 'utf16le');
});
return bench;
};
export default [
encode_hex_32b,
encode_hex_1mb,
encode_base64_32b,
encode_base64_1mb,
encode_utf16le_32b,
encode_utf16le_1mb,
encode_utf16le_32b_ascii,
encode_utf16le_1mb_ascii,
decode_hex_32b,
decode_hex_1mb,
decode_base64_32b,
decode_base64_1mb,
decode_utf16le_32b,
decode_utf16le_1mb,
decode_utf16le_32b_ascii,
decode_utf16le_1mb_ascii,
];