remove changes on crypto code

This commit is contained in:
Michael Muré 2017-01-03 18:05:37 +13:00
parent 2ee9278fec
commit c31e9f2d56
20 changed files with 683 additions and 683 deletions

File diff suppressed because it is too large Load diff

View file

@ -1,57 +1,57 @@
// Array.prototype.map function is in the public domain.
// Production steps of ECMA-262, Edition 5, 15.4.4.19
// Reference: http://es5.github.com/#x15.4.4.19
// Production steps of ECMA-262, Edition 5, 15.4.4.19
// Reference: http://es5.github.com/#x15.4.4.19
if (!Array.prototype.map) {
Array.prototype.map = function (callback, thisArg) {
var T, A, k;
if (this == null) {
throw new TypeError(" this is null or not defined");
}
// 1. Let O be the result of calling ToObject passing the |this| value as the argument.
// 1. Let O be the result of calling ToObject passing the |this| value as the argument.
var O = Object(this);
// 2. Let lenValue be the result of calling the Get internal method of O with the argument "length".
// 3. Let len be ToUint32(lenValue).
// 2. Let lenValue be the result of calling the Get internal method of O with the argument "length".
// 3. Let len be ToUint32(lenValue).
var len = O.length >>> 0;
// 4. If IsCallable(callback) is false, throw a TypeError exception.
// See: http://es5.github.com/#x9.11
// 4. If IsCallable(callback) is false, throw a TypeError exception.
// See: http://es5.github.com/#x9.11
if ({}.toString.call(callback) != "[object Function]") {
throw new TypeError(callback + " is not a function");
}
// 5. If thisArg was supplied, let T be thisArg; else let T be undefined.
// 5. If thisArg was supplied, let T be thisArg; else let T be undefined.
if (thisArg) {
T = thisArg;
}
// 6. Let A be a new array created as if by the expression new Array(len) where Array is
// the standard built-in constructor with that name and len is the value of len.
// 6. Let A be a new array created as if by the expression new Array(len) where Array is
// the standard built-in constructor with that name and len is the value of len.
A = new Array(len);
// 7. Let k be 0
// 7. Let k be 0
k = 0;
// 8. Repeat, while k < len
// 8. Repeat, while k < len
while (k < len) {
var kValue, mappedValue;
// a. Let Pk be ToString(k).
// This is implicit for LHS operands of the in operator
// b. Let kPresent be the result of calling the HasProperty internal method of O with argument Pk.
// This step can be combined with c
// c. If kPresent is true, then
// a. Let Pk be ToString(k).
// This is implicit for LHS operands of the in operator
// b. Let kPresent be the result of calling the HasProperty internal method of O with argument Pk.
// This step can be combined with c
// c. If kPresent is true, then
if (k in O) {
// i. Let kValue be the result of calling the Get internal method of O with argument Pk.
// i. Let kValue be the result of calling the Get internal method of O with argument Pk.
kValue = O[k];
// ii. Let mappedValue be the result of calling the Call internal method of callback
// with T as the this value and argument list containing kValue, k, and O.
// ii. Let mappedValue be the result of calling the Call internal method of callback
// with T as the this value and argument list containing kValue, k, and O.
mappedValue = callback.call(T, kValue, k, O);
// iii. Call the DefineOwnProperty internal method of A with arguments
// Pk, Property Descriptor {Value: mappedValue, Writable: true, Enumerable: true, Configurable: true},
// and false.
// In browsers that support Object.defineProperty, use the following:
// Object.defineProperty(A, Pk, { value: mappedValue, writable: true, enumerable: true, configurable: true });
// For best browser support, use the following:
// iii. Call the DefineOwnProperty internal method of A with arguments
// Pk, Property Descriptor {Value: mappedValue, Writable: true, Enumerable: true, Configurable: true},
// and false.
// In browsers that support Object.defineProperty, use the following:
// Object.defineProperty(A, Pk, { value: mappedValue, writable: true, enumerable: true, configurable: true });
// For best browser support, use the following:
A[k] = mappedValue;
}
// d. Increase k by 1.
// d. Increase k by 1.
k++;
}
// 9. return A
// 9. return A
return A;
};
}
}

View file

@ -1,6 +1,6 @@
/*!
* Basic JavaScript BN library - subset useful for RSA encryption. v1.3
*
*
* Copyright (c) 2005 Tom Wu
* All Rights Reserved.
* BSD License
@ -1268,4 +1268,4 @@
// r = x^2 mod m; x != r
Barrett.prototype.sqrTo = function (x, r) { x.squareTo(r); this.reduce(r); };
})();
})();

View file

@ -136,7 +136,7 @@ Bitcoin.ECDSA = (function () {
* Parses a byte array containing a DER-encoded signature.
*
* This function will return an object of the form:
*
*
* {
* r: BigInteger,
* s: BigInteger
@ -280,4 +280,4 @@ Bitcoin.ECDSA = (function () {
};
return ECDSA;
})();
})();

View file

@ -29,7 +29,7 @@ Bitcoin.ECKey = (function () {
} else if (ECKey.isBase64Format(input)) {
bytes = Crypto.util.base64ToBytes(input);
}
if (ECKey.isBase6Format(input)) {
this.priv = new BigInteger(input, 6);
} else if (bytes == null || bytes.length != 32) {
@ -127,7 +127,7 @@ Bitcoin.ECKey = (function () {
return this;
};
// Sipa Private Key Wallet Import Format
// Sipa Private Key Wallet Import Format
ECKey.prototype.getBitcoinWalletImportFormat = function () {
var bytes = this.getBitcoinPrivateKeyByteArray();
bytes.unshift(janin.currency.privateKeyPrefix()); // prepend private key prefix
@ -138,12 +138,12 @@ Bitcoin.ECKey = (function () {
return privWif;
};
// Private Key Hex Format
// Private Key Hex Format
ECKey.prototype.getBitcoinHexFormat = function () {
return Crypto.util.bytesToHex(this.getBitcoinPrivateKeyByteArray()).toString().toUpperCase();
};
// Private Key Base64 Format
// Private Key Base64 Format
ECKey.prototype.getBitcoinBase64Format = function () {
return Crypto.util.bytesToBase64(this.getBitcoinPrivateKeyByteArray());
};
@ -151,7 +151,7 @@ Bitcoin.ECKey = (function () {
ECKey.prototype.getBitcoinPrivateKeyByteArray = function () {
// Get a copy of private key as a byte array
var bytes = this.priv.toByteArrayUnsigned();
// zero pad if private key is less than 32 bytes
// zero pad if private key is less than 32 bytes
while (bytes.length < 32) bytes.unshift(0x00);
return bytes;
};
@ -263,4 +263,4 @@ Bitcoin.ECKey = (function () {
};
return ECKey;
})();
})();

View file

@ -1,16 +1,16 @@
/*
* Copyright (c) 2010-2011 Intalio Pte, All Rights Reserved
*
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
@ -30,7 +30,7 @@
* N = Cpu cost
* r = Memory cost
* p = parallelization cost
*
*
*/
window.Crypto_scrypt = function (passwd, salt, N, r, p, dkLen, callback) {
if (N == 0 || (N & (N - 1)) != 0) throw Error("N must be > 0 and a power of 2");
@ -292,4 +292,4 @@
}
} // scryptCore
}; // window.Crypto_scrypt
})();
})();

View file

@ -102,7 +102,7 @@
// Allow mode to override options
if (mode.fixOptions) mode.fixOptions(options);
var
var
// Convert to bytes if message is a string
m = (
@ -143,7 +143,7 @@
// Allow mode to override options
if (mode.fixOptions) mode.fixOptions(options);
var
var
// Convert to bytes if ciphertext is a string
c = (
@ -404,4 +404,4 @@
};
})();
})();

View file

@ -176,9 +176,9 @@
/**
* Electronic Code Book mode.
*
*
* ECB applies the cipher directly against each block of the input.
*
*
* ECB does not require an initialization vector.
*/
var ECB = C_mode.ECB = function () {
@ -213,7 +213,7 @@
/**
* Cipher block chaining
*
*
* The first block is XORed with the IV. Subsequent blocks are XOR with the
* previous cipher output.
*/
@ -267,11 +267,11 @@
/**
* Cipher feed back
*
*
* The cipher output is XORed with the plain text to produce the cipher output,
* which is then fed back into the cipher to produce a bit pattern to XOR the
* next block with.
*
*
* This is a stream cipher mode and does not require padding.
*/
var CFB = C_mode.CFB = function () {
@ -319,10 +319,10 @@
/**
* Output feed back
*
*
* The cipher repeatedly encrypts its own output. The output is XORed with the
* plain text to produce the cipher text.
*
*
* This is a stream cipher mode and does not require padding.
*/
var OFB = C_mode.OFB = function () {
@ -407,4 +407,4 @@
};
CTR_prototype._doDecrypt = CTR_prototype._doEncrypt;
})(Crypto);
})(Crypto);

View file

@ -3,7 +3,7 @@
* Basic Javascript Elliptic Curve implementation
* Ported loosely from BouncyCastle's Java EC code
* Only Fp curves implemented for now
*
*
* Copyright Tom Wu, bitaddress.org BSD License.
* http://www-cs-students.stanford.edu/~tjw/jsbn/LICENSE
*/
@ -64,7 +64,7 @@
/**
* return a sqrt root - the routine verifies that the calculation
* returns the right value - if none exists it returns null.
*
*
* Copyright (c) 2000 - 2011 The Legion Of The Bouncy Castle (http://www.bouncycastle.org)
* Ported to JavaScript by bitaddress.org
*/
@ -353,7 +353,7 @@
var len = 32; // integerToBytes will zero pad if integer is less than 32 bytes. 32 bytes length is required by the Bitcoin protocol.
var enc = ec.integerToBytes(x, len);
// when compressed prepend byte depending if y point is even or odd
// when compressed prepend byte depending if y point is even or odd
if (compressed) {
if (y.isEven()) {
enc.unshift(0x02);
@ -666,4 +666,4 @@
if (ec.secNamedCurves[name] == undefined) return null;
return ec.secNamedCurves[name]();
}
})();
})();

File diff suppressed because it is too large Load diff

View file

@ -43,8 +43,8 @@ ninja.wallets.bulkwallet = {
bulkWallet.csv.push((bulkWallet.csvRowLimit - bulkWallet.csvRowsRemaining + bulkWallet.csvStartIndex)
+ ",\"" + key.getBitcoinAddress() + "\",\"" + key.toString("wif")
//+ "\",\"" + key.toString("wifcomp") // uncomment these lines to add different private key formats to the CSV
//+ "\",\"" + key.getBitcoinHexFormat()
//+ "\",\"" + key.toString("base64")
//+ "\",\"" + key.getBitcoinHexFormat()
//+ "\",\"" + key.toString("base64")
+ "\"");
document.getElementById("bulktextarea").value = ninja.translator.get("bulkgeneratingaddresses") + bulkWallet.csvRowsRemaining;
@ -70,4 +70,4 @@ ninja.wallets.bulkwallet = {
document.getElementById("bulke" + faqNum).setAttribute("class", "less");
}
}
};
};

View file

@ -38,7 +38,7 @@ ninja.wallets.detailwallet = {
document.getElementById("detailarea").style.display = "block";
document.getElementById("detailprivkey").focus();
if (!ninja.wallets.detailwallet.qrscanner.scanner) {
ninja.wallets.detailwallet.qrscanner.scanner = new QRCodeScanner(320, 240, 'paperqroutput',
ninja.wallets.detailwallet.qrscanner.scanner = new QRCodeScanner(320, 240, 'paperqroutput',
function(data) {
document.getElementById('detailprivkey').value = data;
document.getElementById('paperqrscanner').className = '';
@ -183,4 +183,4 @@ ninja.wallets.detailwallet = {
document.getElementById("detailbip38commands").style.display = "none";
document.getElementById("detailbip38").style.display = "none";
}
};
};

View file

@ -6,13 +6,13 @@ ninja.wallets.donate = {
close: function () {
document.getElementById("donatearea").style.display = "none";
},
displayQrCode: function (currencyid, e) {
var keyValuePair = {};
keyValuePair["donateqrcode"] = janin.currencies[currencyid].donate;
ninja.qrCode.showQrCode(keyValuePair, 4);
document.getElementById("donateqrcode").style.display = "block";
document.getElementById("donateqrcode").style.top = (e.offsetTop+15) + 'px';
}
};
};

View file

@ -53,7 +53,7 @@ ninja.privateKey = {
callback(new Error(ninja.translator.get("detailalertnotvalidprivatekey")));
return;
}
// first byte is always 0x01
// first byte is always 0x01
else if (hex[0] != 0x01) {
callback(new Error(ninja.translator.get("detailalertnotvalidprivatekey")));
return;
@ -82,7 +82,7 @@ ninja.privateKey = {
return;
}
}
// second byte for EC-multiplied key
// second byte for EC-multiplied key
else if (hex[1] == 0x43) {
isECMult = true;
isCompPoint = (hex[2] & 0x20) != 0;
@ -347,4 +347,4 @@ ninja.publicKey = {
var pubHexUncompressed = ninja.publicKey.getHexFromByteArray(pubByteArray);
return pubHexUncompressed;
}
};
};

View file

@ -16,7 +16,7 @@
isDone: function() {
return ninja.seeder.seedCount >= ninja.seeder.seedLimit;
},
// seed function exists to wait for mouse movement to add more entropy before generating an address
seed: function (evt) {
if (!evt) var evt = window.event;
@ -76,7 +76,7 @@
div.setAttribute("class", "seedpoint");
div.style.top = y + "px";
div.style.left = x + "px";
// let's make the entropy 'points' grow and change color!
percentageComplete = ninja.seeder.seedCount / ninja.seeder.seedLimit;
document.getElementById("progress-bar-percentage").style.width=Math.ceil(percentageComplete*100)+"%";
@ -145,7 +145,7 @@ ninja.qrCode = {
return canvas;
},
// generate a QRCode and return it's representation as an Html table
// generate a QRCode and return it's representation as an Html table
createTableHtml: function (text) {
var typeNumber = ninja.qrCode.getTypeNumber(text);
var qr = new QRCode(typeNumber, QRCode.ErrorCorrectLevel.H);
@ -168,7 +168,7 @@ ninja.qrCode = {
},
// show QRCodes with canvas OR table (IE8)
// parameter: keyValuePair
// parameter: keyValuePair
// example: { "id1": "string1", "id2": "string2"}
// "id1" is the id of a div element where you want a QRCode inserted.
// "string1" is the string you want encoded into the QRCode.
@ -212,7 +212,7 @@ ninja.envSecurityCheck = function() {
innerHTML = '<span style="color: #009900;">' + ninja.translator.get("securitychecklistofflineOK") + '</span>';
break;
default:
}
}
document.getElementById('envSecurityCheck').innerHTML = innerHTML;
};
@ -222,7 +222,7 @@ ninja.browserSecurityCheck = function() {
innerHTML = '<span style="color: #009900;">' + ninja.translator.get("securitychecklistrandomOK") + '</span>';
} else {
innerHTML = '<span style="color: #990000;">' + ninja.translator.get("securitychecklistrandomNOK") + '</span>';
}
}
document.getElementById('browserSecurityCheck').innerHTML = innerHTML;
}
@ -271,4 +271,4 @@ ninja.foreachSerialized = function (collection, whatToDo, onComplete) {
ninja.toggleFaqQuestion = function (elementId) {
var answerDiv = document.getElementById(elementId);
answerDiv.style.display = answerDiv.style.display == "block" ? "none" : "block";
};
};

View file

@ -78,9 +78,9 @@ if (ninja.getQueryString()["i18nextract"]) {
elem.setAttribute("rows", "30");
elem.setAttribute("style", "width: 99%");
elem.setAttribute("wrap", "off");
a=document.getElementsByClassName("i18n");
a=document.getElementsByClassName("i18n");
var i18n = "\"" + culture + "\": {\n";
for(x=0; x<a.length; x++) {
i18n += "\t";
@ -100,9 +100,9 @@ if (ninja.getQueryString()["i18nextract"]) {
i18n += "(ENGLISH)" + cleani18n(ninja.translator.translations["en"][ninja.translator.staticID[x]]);
i18n += "\",\n";
}
i18n += "},"
elem.innerHTML = i18n;
div.appendChild(elem);
document.body.appendChild(div);

View file

@ -93,10 +93,10 @@ ninja.wallets.paperwallet = {
ninja.wallets.paperwallet.showArtisticWallet(idPostFix, bitcoinAddress, privateKeyWif);
}
},
// Verify that a self-entered key is valid, and compute the corresponding
// public address, render the wallet.
testAndApplyVanityKey: function () {
testAndApplyVanityKey: function () {
var suppliedKey = document.getElementById('suppliedPrivateKey').value;
suppliedKey = suppliedKey.trim(); // in case any spaces or whitespace got pasted in
document.getElementById('suppliedPrivateKey').value = suppliedKey;
@ -139,11 +139,11 @@ ninja.wallets.paperwallet = {
var keyValuePair = {};
keyValuePair["qrcode_public" + idPostFix] = bitcoinAddress;
ninja.qrCode.showQrCode(keyValuePair, 3.5);
var keyValuePair = {};
keyValuePair["qrcode_private" + idPostFix] = privateKey;
ninja.qrCode.showQrCode(keyValuePair, 2.8);
document.getElementById("btcaddress" + idPostFix).innerHTML = bitcoinAddress;
document.getElementById("btcprivwif" + idPostFix).innerHTML = privateKey;
},
@ -164,4 +164,4 @@ ninja.wallets.paperwallet = {
document.getElementById("paperkeyarea").style.fontSize = "95%";
}
}
};
};

View file

@ -40,7 +40,7 @@ ninja.translator = {
var translation = ninja.translator.translations[ninja.translator.currentCulture][id];
return translation;
},
staticID: [
"defaultTitle",
"title",

View file

@ -8,7 +8,7 @@
// Licensed under the MIT license:
// http://www.opensource.org/licenses/mit-license.php
//
// The word "QR Code" is registered trademark of
// The word "QR Code" is registered trademark of
// DENSO WAVE INCORPORATED
// http://www.denso-wave.com/qrcode/faqpatent-e.html
//
@ -222,7 +222,7 @@
var data = (this.errorCorrectLevel << 3) | maskPattern;
var bits = QRCode.Util.getBCHTypeInfo(data);
// vertical
// vertical
for (var i = 0; i < 15; i++) {
var mod = (!test && ((bits >> i) & 1) == 1);
@ -905,7 +905,7 @@
[2, 35, 17],
[2, 35, 13],
// 4
// 4
[1, 100, 80],
[2, 50, 32],
[2, 50, 24],
@ -923,7 +923,7 @@
[4, 43, 19],
[4, 43, 15],
// 7
// 7
[2, 98, 78],
[4, 49, 31],
[2, 32, 14, 4, 33, 15],
@ -941,7 +941,7 @@
[4, 36, 16, 4, 37, 17],
[4, 36, 12, 4, 37, 13],
// 10
// 10
[2, 86, 68, 2, 87, 69],
[4, 69, 43, 1, 70, 44],
[6, 43, 19, 2, 44, 20],
@ -1031,4 +1031,4 @@
this.length++;
}
};
})();
})();

View file

@ -1,10 +1,10 @@
/*!
* Random number generator with ArcFour PRNG
*
*
* NOTE: For best results, put code like
* <body onclick='SecureRandom.seedTime();' onkeypress='SecureRandom.seedTime();'>
* in your main HTML document.
*
*
* Copyright Tom Wu, bitaddress.org BSD License.
* http://www-cs-students.stanford.edu/~tjw/jsbn/LICENSE
*/
@ -56,7 +56,7 @@
alert("Premature initialisation of the random generator. Something is really wrong, do not generate wallets.");
return NaN;
}
if (sr.state == null) {
sr.seedTime();
sr.state = sr.ArcFour(); // Plug in your RNG constructor here
@ -184,4 +184,4 @@
sr.seedInt8(entropyBytes[i]);
}
}
})();
})();