]> git.proxmox.com Git - mirror_novnc.git/blob - core/base64.js
Merge pull request #1013 from juanjoDiaz/es6_refactor_2
[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: function (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 toBinaryTable : [
47 -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
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,62, -1,-1,-1,63,
50 52,53,54,55, 56,57,58,59, 60,61,-1,-1, -1, 0,-1,-1,
51 -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,10, 11,12,13,14,
52 15,16,17,18, 19,20,21,22, 23,24,25,-1, -1,-1,-1,-1,
53 -1,26,27,28, 29,30,31,32, 33,34,35,36, 37,38,39,40,
54 41,42,43,44, 45,46,47,48, 49,50,51,-1, -1,-1,-1,-1
55 ],
56
57 decode: function (data, offset) {
58 "use strict";
59 offset = typeof(offset) !== 'undefined' ? offset : 0;
60
61 let data_length = data.indexOf('=') - offset;
62 if (data_length < 0) { data_length = data.length - offset; }
63
64 /* Every four characters is 3 resulting numbers */
65 const result_length = (data_length >> 2) * 3 + Math.floor((data_length % 4) / 1.5);
66 const result = new Array(result_length);
67
68 // Convert one by one.
69
70 let leftbits = 0; // number of bits decoded, but yet to be appended
71 let leftdata = 0; // bits decoded, but yet to be appended
72 for (let idx = 0, i = offset; i < data.length; i++) {
73 const c = this.toBinaryTable[data.charCodeAt(i) & 0x7f];
74 const padding = (data.charAt(i) === this.base64Pad);
75 // Skip illegal characters and whitespace
76 if (c === -1) {
77 Log.Error("Illegal character code " + data.charCodeAt(i) + " at position " + i);
78 continue;
79 }
80
81 // Collect data into leftdata, update bitcount
82 leftdata = (leftdata << 6) | c;
83 leftbits += 6;
84
85 // If we have 8 or more bits, append 8 bits to the result
86 if (leftbits >= 8) {
87 leftbits -= 8;
88 // Append if not padding.
89 if (!padding) {
90 result[idx++] = (leftdata >> leftbits) & 0xff;
91 }
92 leftdata &= (1 << leftbits) - 1;
93 }
94 }
95
96 // If there are any bits left, the base64 string was corrupted
97 if (leftbits) {
98 const err = new Error('Corrupted base64 string');
99 err.name = 'Base64-Error';
100 throw err;
101 }
102
103 return result;
104 }
105 }; /* End of Base64 namespace */