]> git.proxmox.com Git - mirror_novnc.git/blob - core/base64.js
Enforce comma spacing
[mirror_novnc.git] / core / base64.js
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
4
5 // From: http://hg.mozilla.org/mozilla-central/raw-file/ec10630b1a54/js/src/devtools/jint/sunspider/string-base64.js
6
7 import * as Log from './util/logging.js';
8
9 export default {
10 /* Convert data (an array of integers) to a Base64 string. */
11 toBase64Table : 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/='.split(''),
12 base64Pad : '=',
13
14 encode(data) {
15 "use strict";
16 let result = '';
17 const length = data.length;
18 const lengthpad = (length % 3);
19 // Convert every three bytes to 4 ascii characters.
20
21 for (let i = 0; i < (length - 2); i += 3) {
22 result += this.toBase64Table[data[i] >> 2];
23 result += this.toBase64Table[((data[i] & 0x03) << 4) + (data[i + 1] >> 4)];
24 result += this.toBase64Table[((data[i + 1] & 0x0f) << 2) + (data[i + 2] >> 6)];
25 result += this.toBase64Table[data[i + 2] & 0x3f];
26 }
27
28 // Convert the remaining 1 or 2 bytes, pad out to 4 characters.
29 const j = length - lengthpad;
30 if (lengthpad === 2) {
31 result += this.toBase64Table[data[j] >> 2];
32 result += this.toBase64Table[((data[j] & 0x03) << 4) + (data[j + 1] >> 4)];
33 result += this.toBase64Table[(data[j + 1] & 0x0f) << 2];
34 result += this.toBase64Table[64];
35 } else if (lengthpad === 1) {
36 result += this.toBase64Table[data[j] >> 2];
37 result += this.toBase64Table[(data[j] & 0x03) << 4];
38 result += this.toBase64Table[64];
39 result += this.toBase64Table[64];
40 }
41
42 return result;
43 },
44
45 /* Convert Base64 data to a string */
46 /* eslint-disable comma-spacing */
47 toBinaryTable : [
48 -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
49 -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
50 -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,62, -1,-1,-1,63,
51 52,53,54,55, 56,57,58,59, 60,61,-1,-1, -1, 0,-1,-1,
52 -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,10, 11,12,13,14,
53 15,16,17,18, 19,20,21,22, 23,24,25,-1, -1,-1,-1,-1,
54 -1,26,27,28, 29,30,31,32, 33,34,35,36, 37,38,39,40,
55 41,42,43,44, 45,46,47,48, 49,50,51,-1, -1,-1,-1,-1
56 ],
57 /* eslint-enable comma-spacing */
58
59 decode(data, offset) {
60 offset = typeof(offset) !== 'undefined' ? offset : 0;
61
62 let data_length = data.indexOf('=') - offset;
63 if (data_length < 0) { data_length = data.length - offset; }
64
65 /* Every four characters is 3 resulting numbers */
66 const result_length = (data_length >> 2) * 3 + Math.floor((data_length % 4) / 1.5);
67 const result = new Array(result_length);
68
69 // Convert one by one.
70
71 let leftbits = 0; // number of bits decoded, but yet to be appended
72 let leftdata = 0; // bits decoded, but yet to be appended
73 for (let idx = 0, i = offset; i < data.length; i++) {
74 const c = this.toBinaryTable[data.charCodeAt(i) & 0x7f];
75 const padding = (data.charAt(i) === this.base64Pad);
76 // Skip illegal characters and whitespace
77 if (c === -1) {
78 Log.Error("Illegal character code " + data.charCodeAt(i) + " at position " + i);
79 continue;
80 }
81
82 // Collect data into leftdata, update bitcount
83 leftdata = (leftdata << 6) | c;
84 leftbits += 6;
85
86 // If we have 8 or more bits, append 8 bits to the result
87 if (leftbits >= 8) {
88 leftbits -= 8;
89 // Append if not padding.
90 if (!padding) {
91 result[idx++] = (leftdata >> leftbits) & 0xff;
92 }
93 leftdata &= (1 << leftbits) - 1;
94 }
95 }
96
97 // If there are any bits left, the base64 string was corrupted
98 if (leftbits) {
99 const err = new Error('Corrupted base64 string');
100 err.name = 'Base64-Error';
101 throw err;
102 }
103
104 return result;
105 }
106 }; /* End of Base64 namespace */