I got a webSocket comunication, I recieve base64 encoded string, convert it to uint8 and work on it, but now I need to send back, I got the uint8 array, and need to convert it to base64 string, so I can send it. How can I make this convertion?
Advertisement
Answer
All solutions already proposed have severe problems. Some solutions fail to work on large arrays, some provide wrong output, some throw an error on btoa call if an intermediate string contains multibyte characters, some consume more memory than needed.
So I implemented a direct conversion function which just works regardless of the input. It converts about 5 million bytes per second on my machine.
https://gist.github.com/enepomnyaschih/72c423f727d395eeaa09697058238727
JavaScript
x
133
133
1
/*
2
MIT License
3
Copyright (c) 2020 Egor Nepomnyaschih
4
Permission is hereby granted, free of charge, to any person obtaining a copy
5
of this software and associated documentation files (the "Software"), to deal
6
in the Software without restriction, including without limitation the rights
7
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8
copies of the Software, and to permit persons to whom the Software is
9
furnished to do so, subject to the following conditions:
10
The above copyright notice and this permission notice shall be included in all
11
copies or substantial portions of the Software.
12
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
13
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
14
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
15
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
16
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
17
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
18
SOFTWARE.
19
*/
20
21
/*
22
// This constant can also be computed with the following algorithm:
23
const base64abc = [],
24
A = "A".charCodeAt(0),
25
a = "a".charCodeAt(0),
26
n = "0".charCodeAt(0);
27
for (let i = 0; i < 26; ++i) {
28
base64abc.push(String.fromCharCode(A + i));
29
}
30
for (let i = 0; i < 26; ++i) {
31
base64abc.push(String.fromCharCode(a + i));
32
}
33
for (let i = 0; i < 10; ++i) {
34
base64abc.push(String.fromCharCode(n + i));
35
}
36
base64abc.push("+");
37
base64abc.push("/");
38
*/
39
const base64abc = [
40
"A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M",
41
"N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z",
42
"a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m",
43
"n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z",
44
"0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "+", "/"
45
];
46
47
/*
48
// This constant can also be computed with the following algorithm:
49
const l = 256, base64codes = new Uint8Array(l);
50
for (let i = 0; i < l; ++i) {
51
base64codes[i] = 255; // invalid character
52
}
53
base64abc.forEach((char, index) => {
54
base64codes[char.charCodeAt(0)] = index;
55
});
56
base64codes["=".charCodeAt(0)] = 0; // ignored anyway, so we just need to prevent an error
57
*/
58
const base64codes = [
59
255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
60
255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
61
255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 62, 255, 255, 255, 63,
62
52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 255, 255, 255, 0, 255, 255,
63
255, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
64
15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 255, 255, 255, 255, 255,
65
255, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
66
41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51
67
];
68
69
function getBase64Code(charCode) {
70
if (charCode >= base64codes.length) {
71
throw new Error("Unable to parse base64 string.");
72
}
73
const code = base64codes[charCode];
74
if (code === 255) {
75
throw new Error("Unable to parse base64 string.");
76
}
77
return code;
78
}
79
80
export function bytesToBase64(bytes) {
81
let result = '', i, l = bytes.length;
82
for (i = 2; i < l; i += 3) {
83
result += base64abc[bytes[i - 2] >> 2];
84
result += base64abc[((bytes[i - 2] & 0x03) << 4) | (bytes[i - 1] >> 4)];
85
result += base64abc[((bytes[i - 1] & 0x0F) << 2) | (bytes[i] >> 6)];
86
result += base64abc[bytes[i] & 0x3F];
87
}
88
if (i === l + 1) { // 1 octet yet to write
89
result += base64abc[bytes[i - 2] >> 2];
90
result += base64abc[(bytes[i - 2] & 0x03) << 4];
91
result += "==";
92
}
93
if (i === l) { // 2 octets yet to write
94
result += base64abc[bytes[i - 2] >> 2];
95
result += base64abc[((bytes[i - 2] & 0x03) << 4) | (bytes[i - 1] >> 4)];
96
result += base64abc[(bytes[i - 1] & 0x0F) << 2];
97
result += "=";
98
}
99
return result;
100
}
101
102
export function base64ToBytes(str) {
103
if (str.length % 4 !== 0) {
104
throw new Error("Unable to parse base64 string.");
105
}
106
const index = str.indexOf("=");
107
if (index !== -1 && index < str.length - 2) {
108
throw new Error("Unable to parse base64 string.");
109
}
110
let missingOctets = str.endsWith("==") ? 2 : str.endsWith("=") ? 1 : 0,
111
n = str.length,
112
result = new Uint8Array(3 * (n / 4)),
113
buffer;
114
for (let i = 0, j = 0; i < n; i += 4, j += 3) {
115
buffer =
116
getBase64Code(str.charCodeAt(i)) << 18 |
117
getBase64Code(str.charCodeAt(i + 1)) << 12 |
118
getBase64Code(str.charCodeAt(i + 2)) << 6 |
119
getBase64Code(str.charCodeAt(i + 3));
120
result[j] = buffer >> 16;
121
result[j + 1] = (buffer >> 8) & 0xFF;
122
result[j + 2] = buffer & 0xFF;
123
}
124
return result.subarray(0, result.length - missingOctets);
125
}
126
127
export function base64encode(str, encoder = new TextEncoder()) {
128
return bytesToBase64(encoder.encode(str));
129
}
130
131
export function base64decode(str, decoder = new TextDecoder()) {
132
return decoder.decode(base64ToBytes(str));
133
}