build/pgo/js-input/string-base64.html

Sat, 03 Jan 2015 20:18:00 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sat, 03 Jan 2015 20:18:00 +0100
branch
TOR_BUG_3246
changeset 7
129ffea94266
permissions
-rw-r--r--

Conditionally enable double key logic according to:
private browsing mode or privacy.thirdparty.isolate preference and
implement in GetCookieStringCommon and FindCookie where it counts...
With some reservations of how to convince FindCookie users to test
condition and pass a nullptr when disabling double key logic.

michael@0 1 <!DOCTYPE html>
michael@0 2 <head>
michael@0 3 <!--
michael@0 4 Copyright (C) 2007 Apple Inc. All rights reserved.
michael@0 5
michael@0 6 Redistribution and use in source and binary forms, with or without
michael@0 7 modification, are permitted provided that the following conditions
michael@0 8 are met:
michael@0 9 1. Redistributions of source code must retain the above copyright
michael@0 10 notice, this list of conditions and the following disclaimer.
michael@0 11 2. Redistributions in binary form must reproduce the above copyright
michael@0 12 notice, this list of conditions and the following disclaimer in the
michael@0 13 documentation and/or other materials provided with the distribution.
michael@0 14
michael@0 15 THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
michael@0 16 EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
michael@0 17 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
michael@0 18 PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
michael@0 19 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
michael@0 20 EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
michael@0 21 PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
michael@0 22 PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
michael@0 23 OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
michael@0 24 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
michael@0 25 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
michael@0 26 -->
michael@0 27
michael@0 28 <title>SunSpider string-base64</title>
michael@0 29
michael@0 30 </head>
michael@0 31
michael@0 32 <body>
michael@0 33 <h3>string-base64</h3>
michael@0 34 <div id="console">
michael@0 35 </div>
michael@0 36
michael@0 37 <script>
michael@0 38
michael@0 39 var _sunSpiderStartDate = new Date();
michael@0 40
michael@0 41 /* This Source Code Form is subject to the terms of the Mozilla Public
michael@0 42 * License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 43 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
michael@0 44
michael@0 45 // From: http://lxr.mozilla.org/mozilla/source/extensions/xml-rpc/src/nsXmlRpcClient.js#956
michael@0 46
michael@0 47 /* Convert data (an array of integers) to a Base64 string. */
michael@0 48 var toBase64Table = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
michael@0 49 var base64Pad = '=';
michael@0 50
michael@0 51 function toBase64(data) {
michael@0 52 var result = '';
michael@0 53 var length = data.length;
michael@0 54 var i;
michael@0 55 // Convert every three bytes to 4 ascii characters.
michael@0 56 for (i = 0; i < (length - 2); i += 3) {
michael@0 57 result += toBase64Table[data[i] >> 2];
michael@0 58 result += toBase64Table[((data[i] & 0x03) << 4) + (data[i+1] >> 4)];
michael@0 59 result += toBase64Table[((data[i+1] & 0x0f) << 2) + (data[i+2] >> 6)];
michael@0 60 result += toBase64Table[data[i+2] & 0x3f];
michael@0 61 }
michael@0 62
michael@0 63 // Convert the remaining 1 or 2 bytes, pad out to 4 characters.
michael@0 64 if (length%3) {
michael@0 65 i = length - (length%3);
michael@0 66 result += toBase64Table[data[i] >> 2];
michael@0 67 if ((length%3) == 2) {
michael@0 68 result += toBase64Table[((data[i] & 0x03) << 4) + (data[i+1] >> 4)];
michael@0 69 result += toBase64Table[(data[i+1] & 0x0f) << 2];
michael@0 70 result += base64Pad;
michael@0 71 } else {
michael@0 72 result += toBase64Table[(data[i] & 0x03) << 4];
michael@0 73 result += base64Pad + base64Pad;
michael@0 74 }
michael@0 75 }
michael@0 76
michael@0 77 return result;
michael@0 78 }
michael@0 79
michael@0 80 /* Convert Base64 data to a string */
michael@0 81 var toBinaryTable = [
michael@0 82 -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
michael@0 83 -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
michael@0 84 -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,62, -1,-1,-1,63,
michael@0 85 52,53,54,55, 56,57,58,59, 60,61,-1,-1, -1, 0,-1,-1,
michael@0 86 -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,10, 11,12,13,14,
michael@0 87 15,16,17,18, 19,20,21,22, 23,24,25,-1, -1,-1,-1,-1,
michael@0 88 -1,26,27,28, 29,30,31,32, 33,34,35,36, 37,38,39,40,
michael@0 89 41,42,43,44, 45,46,47,48, 49,50,51,-1, -1,-1,-1,-1
michael@0 90 ];
michael@0 91
michael@0 92 function base64ToString(data) {
michael@0 93 var result = '';
michael@0 94 var leftbits = 0; // number of bits decoded, but yet to be appended
michael@0 95 var leftdata = 0; // bits decoded, but yet to be appended
michael@0 96
michael@0 97 // Convert one by one.
michael@0 98 for (var i = 0; i < data.length; i++) {
michael@0 99 var c = toBinaryTable[data.charCodeAt(i) & 0x7f];
michael@0 100 var padding = (data[i] == base64Pad);
michael@0 101 // Skip illegal characters and whitespace
michael@0 102 if (c == -1) continue;
michael@0 103
michael@0 104 // Collect data into leftdata, update bitcount
michael@0 105 leftdata = (leftdata << 6) | c;
michael@0 106 leftbits += 6;
michael@0 107
michael@0 108 // If we have 8 or more bits, append 8 bits to the result
michael@0 109 if (leftbits >= 8) {
michael@0 110 leftbits -= 8;
michael@0 111 // Append if not padding.
michael@0 112 if (!padding)
michael@0 113 result += String.fromCharCode((leftdata >> leftbits) & 0xff);
michael@0 114 leftdata &= (1 << leftbits) - 1;
michael@0 115 }
michael@0 116 }
michael@0 117
michael@0 118 // If there are any bits left, the base64 string was corrupted
michael@0 119 if (leftbits)
michael@0 120 throw Components.Exception('Corrupted base64 string');
michael@0 121
michael@0 122 return result;
michael@0 123 }
michael@0 124
michael@0 125 var str = "";
michael@0 126
michael@0 127 for ( var i = 0; i < 8192; i++ )
michael@0 128 str += String.fromCharCode( (25 * Math.random()) + 97 );
michael@0 129
michael@0 130 for ( var i = 8192; i <= 16384; i *= 2 ) {
michael@0 131
michael@0 132 var base64;
michael@0 133
michael@0 134 base64 = toBase64(str);
michael@0 135 base64ToString(base64);
michael@0 136
michael@0 137 // Double the string
michael@0 138 str += str;
michael@0 139 }
michael@0 140
michael@0 141 toBinaryTable = null;
michael@0 142
michael@0 143
michael@0 144 var _sunSpiderInterval = new Date() - _sunSpiderStartDate;
michael@0 145
michael@0 146 document.getElementById("console").innerHTML = _sunSpiderInterval;
michael@0 147 </script>
michael@0 148
michael@0 149
michael@0 150 </body>
michael@0 151 </html>

mercurial