-
Notifications
You must be signed in to change notification settings - Fork 119
Expand file tree
/
Copy pathencoding.ts
More file actions
213 lines (181 loc) · 4.41 KB
/
encoding.ts
File metadata and controls
213 lines (181 loc) · 4.41 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
import {
bufferToString,
stringToBuffer,
Buffer as CraftzdogBuffer,
} 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 generate1MB = (): ArrayBuffer => {
const bytes = new Uint8Array(1024 * 1024);
for (let i = 0; i < bytes.length; i++) {
bytes[i] = i & 0xff;
}
return bytes.buffer as ArrayBuffer;
};
const ab1MB = generate1MB();
const ab32B = new Uint8Array(32).buffer as ArrayBuffer; // typical hash digest size
// Fill 32B with non-zero data
new Uint8Array(ab32B).set([
0xde, 0xad, 0xbe, 0xef, 0xca, 0xfe, 0xba, 0xbe, 0x01, 0x23, 0x45, 0x67, 0x89,
0xab, 0xcd, 0xef, 0xfe, 0xdc, 0xba, 0x98, 0x76, 0x54, 0x32, 0x10, 0x11, 0x22,
0x33, 0x44, 0x55, 0x66, 0x77, 0x88,
]);
// Pre-encode strings for decode benchmarks
const hex1MB = bufferToString(ab1MB, 'hex');
const base64_1MB = bufferToString(ab1MB, 'base64');
const hex32B = bufferToString(ab32B, 'hex');
const base64_32B = bufferToString(ab32B, 'base64');
// --- 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;
};
// --- 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(hex32B, 'hex');
})
.add('Buffer polyfill', () => {
stringToBuffer_old(hex32B, '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(hex1MB, 'hex');
})
.add('Buffer polyfill', () => {
stringToBuffer_old(hex1MB, '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;
};
export default [
encode_hex_32b,
encode_hex_1mb,
encode_base64_32b,
encode_base64_1mb,
decode_hex_32b,
decode_hex_1mb,
decode_base64_32b,
decode_base64_1mb,
];