remove changes on crypto code
This commit is contained in:
parent
2ee9278fec
commit
c31e9f2d56
20 changed files with 683 additions and 683 deletions
668
index.html
668
index.html
File diff suppressed because it is too large
Load diff
|
@ -1,57 +1,57 @@
|
||||||
// Array.prototype.map function is in the public domain.
|
// Array.prototype.map function is in the public domain.
|
||||||
// Production steps of ECMA-262, Edition 5, 15.4.4.19
|
// Production steps of ECMA-262, Edition 5, 15.4.4.19
|
||||||
// Reference: http://es5.github.com/#x15.4.4.19
|
// Reference: http://es5.github.com/#x15.4.4.19
|
||||||
if (!Array.prototype.map) {
|
if (!Array.prototype.map) {
|
||||||
Array.prototype.map = function (callback, thisArg) {
|
Array.prototype.map = function (callback, thisArg) {
|
||||||
var T, A, k;
|
var T, A, k;
|
||||||
if (this == null) {
|
if (this == null) {
|
||||||
throw new TypeError(" this is null or not defined");
|
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);
|
var O = Object(this);
|
||||||
// 2. Let lenValue be the result of calling the Get internal method of O with the argument "length".
|
// 2. Let lenValue be the result of calling the Get internal method of O with the argument "length".
|
||||||
// 3. Let len be ToUint32(lenValue).
|
// 3. Let len be ToUint32(lenValue).
|
||||||
var len = O.length >>> 0;
|
var len = O.length >>> 0;
|
||||||
// 4. If IsCallable(callback) is false, throw a TypeError exception.
|
// 4. If IsCallable(callback) is false, throw a TypeError exception.
|
||||||
// See: http://es5.github.com/#x9.11
|
// See: http://es5.github.com/#x9.11
|
||||||
if ({}.toString.call(callback) != "[object Function]") {
|
if ({}.toString.call(callback) != "[object Function]") {
|
||||||
throw new TypeError(callback + " is not a 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) {
|
if (thisArg) {
|
||||||
T = thisArg;
|
T = thisArg;
|
||||||
}
|
}
|
||||||
// 6. Let A be a new array created as if by the expression new Array(len) where Array is
|
// 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.
|
// the standard built-in constructor with that name and len is the value of len.
|
||||||
A = new Array(len);
|
A = new Array(len);
|
||||||
// 7. Let k be 0
|
// 7. Let k be 0
|
||||||
k = 0;
|
k = 0;
|
||||||
// 8. Repeat, while k < len
|
// 8. Repeat, while k < len
|
||||||
while (k < len) {
|
while (k < len) {
|
||||||
var kValue, mappedValue;
|
var kValue, mappedValue;
|
||||||
// a. Let Pk be ToString(k).
|
// a. Let Pk be ToString(k).
|
||||||
// This is implicit for LHS operands of the in operator
|
// 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.
|
// b. Let kPresent be the result of calling the HasProperty internal method of O with argument Pk.
|
||||||
// This step can be combined with c
|
// This step can be combined with c
|
||||||
// c. If kPresent is true, then
|
// c. If kPresent is true, then
|
||||||
if (k in O) {
|
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];
|
kValue = O[k];
|
||||||
// ii. Let mappedValue be the result of calling the Call internal method of callback
|
// 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.
|
// with T as the this value and argument list containing kValue, k, and O.
|
||||||
mappedValue = callback.call(T, kValue, k, O);
|
mappedValue = callback.call(T, kValue, k, O);
|
||||||
// iii. Call the DefineOwnProperty internal method of A with arguments
|
// iii. Call the DefineOwnProperty internal method of A with arguments
|
||||||
// Pk, Property Descriptor {Value: mappedValue, Writable: true, Enumerable: true, Configurable: true},
|
// Pk, Property Descriptor {Value: mappedValue, Writable: true, Enumerable: true, Configurable: true},
|
||||||
// and false.
|
// and false.
|
||||||
// In browsers that support Object.defineProperty, use the following:
|
// In browsers that support Object.defineProperty, use the following:
|
||||||
// Object.defineProperty(A, Pk, { value: mappedValue, writable: true, enumerable: true, configurable: true });
|
// Object.defineProperty(A, Pk, { value: mappedValue, writable: true, enumerable: true, configurable: true });
|
||||||
// For best browser support, use the following:
|
// For best browser support, use the following:
|
||||||
A[k] = mappedValue;
|
A[k] = mappedValue;
|
||||||
}
|
}
|
||||||
// d. Increase k by 1.
|
// d. Increase k by 1.
|
||||||
k++;
|
k++;
|
||||||
}
|
}
|
||||||
// 9. return A
|
// 9. return A
|
||||||
return A;
|
return A;
|
||||||
};
|
};
|
||||||
}
|
}
|
|
@ -1,6 +1,6 @@
|
||||||
/*!
|
/*!
|
||||||
* Basic JavaScript BN library - subset useful for RSA encryption. v1.3
|
* Basic JavaScript BN library - subset useful for RSA encryption. v1.3
|
||||||
*
|
*
|
||||||
* Copyright (c) 2005 Tom Wu
|
* Copyright (c) 2005 Tom Wu
|
||||||
* All Rights Reserved.
|
* All Rights Reserved.
|
||||||
* BSD License
|
* BSD License
|
||||||
|
@ -1268,4 +1268,4 @@
|
||||||
// r = x^2 mod m; x != r
|
// r = x^2 mod m; x != r
|
||||||
Barrett.prototype.sqrTo = function (x, r) { x.squareTo(r); this.reduce(r); };
|
Barrett.prototype.sqrTo = function (x, r) { x.squareTo(r); this.reduce(r); };
|
||||||
|
|
||||||
})();
|
})();
|
|
@ -136,7 +136,7 @@ Bitcoin.ECDSA = (function () {
|
||||||
* Parses a byte array containing a DER-encoded signature.
|
* Parses a byte array containing a DER-encoded signature.
|
||||||
*
|
*
|
||||||
* This function will return an object of the form:
|
* This function will return an object of the form:
|
||||||
*
|
*
|
||||||
* {
|
* {
|
||||||
* r: BigInteger,
|
* r: BigInteger,
|
||||||
* s: BigInteger
|
* s: BigInteger
|
||||||
|
@ -280,4 +280,4 @@ Bitcoin.ECDSA = (function () {
|
||||||
};
|
};
|
||||||
|
|
||||||
return ECDSA;
|
return ECDSA;
|
||||||
})();
|
})();
|
|
@ -29,7 +29,7 @@ Bitcoin.ECKey = (function () {
|
||||||
} else if (ECKey.isBase64Format(input)) {
|
} else if (ECKey.isBase64Format(input)) {
|
||||||
bytes = Crypto.util.base64ToBytes(input);
|
bytes = Crypto.util.base64ToBytes(input);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ECKey.isBase6Format(input)) {
|
if (ECKey.isBase6Format(input)) {
|
||||||
this.priv = new BigInteger(input, 6);
|
this.priv = new BigInteger(input, 6);
|
||||||
} else if (bytes == null || bytes.length != 32) {
|
} else if (bytes == null || bytes.length != 32) {
|
||||||
|
@ -127,7 +127,7 @@ Bitcoin.ECKey = (function () {
|
||||||
return this;
|
return this;
|
||||||
};
|
};
|
||||||
|
|
||||||
// Sipa Private Key Wallet Import Format
|
// Sipa Private Key Wallet Import Format
|
||||||
ECKey.prototype.getBitcoinWalletImportFormat = function () {
|
ECKey.prototype.getBitcoinWalletImportFormat = function () {
|
||||||
var bytes = this.getBitcoinPrivateKeyByteArray();
|
var bytes = this.getBitcoinPrivateKeyByteArray();
|
||||||
bytes.unshift(janin.currency.privateKeyPrefix()); // prepend private key prefix
|
bytes.unshift(janin.currency.privateKeyPrefix()); // prepend private key prefix
|
||||||
|
@ -138,12 +138,12 @@ Bitcoin.ECKey = (function () {
|
||||||
return privWif;
|
return privWif;
|
||||||
};
|
};
|
||||||
|
|
||||||
// Private Key Hex Format
|
// Private Key Hex Format
|
||||||
ECKey.prototype.getBitcoinHexFormat = function () {
|
ECKey.prototype.getBitcoinHexFormat = function () {
|
||||||
return Crypto.util.bytesToHex(this.getBitcoinPrivateKeyByteArray()).toString().toUpperCase();
|
return Crypto.util.bytesToHex(this.getBitcoinPrivateKeyByteArray()).toString().toUpperCase();
|
||||||
};
|
};
|
||||||
|
|
||||||
// Private Key Base64 Format
|
// Private Key Base64 Format
|
||||||
ECKey.prototype.getBitcoinBase64Format = function () {
|
ECKey.prototype.getBitcoinBase64Format = function () {
|
||||||
return Crypto.util.bytesToBase64(this.getBitcoinPrivateKeyByteArray());
|
return Crypto.util.bytesToBase64(this.getBitcoinPrivateKeyByteArray());
|
||||||
};
|
};
|
||||||
|
@ -151,7 +151,7 @@ Bitcoin.ECKey = (function () {
|
||||||
ECKey.prototype.getBitcoinPrivateKeyByteArray = function () {
|
ECKey.prototype.getBitcoinPrivateKeyByteArray = function () {
|
||||||
// Get a copy of private key as a byte array
|
// Get a copy of private key as a byte array
|
||||||
var bytes = this.priv.toByteArrayUnsigned();
|
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);
|
while (bytes.length < 32) bytes.unshift(0x00);
|
||||||
return bytes;
|
return bytes;
|
||||||
};
|
};
|
||||||
|
@ -263,4 +263,4 @@ Bitcoin.ECKey = (function () {
|
||||||
};
|
};
|
||||||
|
|
||||||
return ECKey;
|
return ECKey;
|
||||||
})();
|
})();
|
|
@ -1,16 +1,16 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2010-2011 Intalio Pte, All Rights Reserved
|
* Copyright (c) 2010-2011 Intalio Pte, All Rights Reserved
|
||||||
*
|
*
|
||||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
* of this software and associated documentation files (the "Software"), to deal
|
* of this software and associated documentation files (the "Software"), to deal
|
||||||
* in the Software without restriction, including without limitation the rights
|
* in the Software without restriction, including without limitation the rights
|
||||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
* copies of the Software, and to permit persons to whom the Software is
|
* copies of the Software, and to permit persons to whom the Software is
|
||||||
* furnished to do so, subject to the following conditions:
|
* furnished to do so, subject to the following conditions:
|
||||||
*
|
*
|
||||||
* The above copyright notice and this permission notice shall be included in
|
* The above copyright notice and this permission notice shall be included in
|
||||||
* all copies or substantial portions of the Software.
|
* all copies or substantial portions of the Software.
|
||||||
*
|
*
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
@ -30,7 +30,7 @@
|
||||||
* N = Cpu cost
|
* N = Cpu cost
|
||||||
* r = Memory cost
|
* r = Memory cost
|
||||||
* p = parallelization cost
|
* p = parallelization cost
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
window.Crypto_scrypt = function (passwd, salt, N, r, p, dkLen, callback) {
|
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");
|
if (N == 0 || (N & (N - 1)) != 0) throw Error("N must be > 0 and a power of 2");
|
||||||
|
@ -292,4 +292,4 @@
|
||||||
}
|
}
|
||||||
} // scryptCore
|
} // scryptCore
|
||||||
}; // window.Crypto_scrypt
|
}; // window.Crypto_scrypt
|
||||||
})();
|
})();
|
|
@ -102,7 +102,7 @@
|
||||||
// Allow mode to override options
|
// Allow mode to override options
|
||||||
if (mode.fixOptions) mode.fixOptions(options);
|
if (mode.fixOptions) mode.fixOptions(options);
|
||||||
|
|
||||||
var
|
var
|
||||||
|
|
||||||
// Convert to bytes if message is a string
|
// Convert to bytes if message is a string
|
||||||
m = (
|
m = (
|
||||||
|
@ -143,7 +143,7 @@
|
||||||
// Allow mode to override options
|
// Allow mode to override options
|
||||||
if (mode.fixOptions) mode.fixOptions(options);
|
if (mode.fixOptions) mode.fixOptions(options);
|
||||||
|
|
||||||
var
|
var
|
||||||
|
|
||||||
// Convert to bytes if ciphertext is a string
|
// Convert to bytes if ciphertext is a string
|
||||||
c = (
|
c = (
|
||||||
|
@ -404,4 +404,4 @@
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
})();
|
})();
|
|
@ -176,9 +176,9 @@
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Electronic Code Book mode.
|
* Electronic Code Book mode.
|
||||||
*
|
*
|
||||||
* ECB applies the cipher directly against each block of the input.
|
* ECB applies the cipher directly against each block of the input.
|
||||||
*
|
*
|
||||||
* ECB does not require an initialization vector.
|
* ECB does not require an initialization vector.
|
||||||
*/
|
*/
|
||||||
var ECB = C_mode.ECB = function () {
|
var ECB = C_mode.ECB = function () {
|
||||||
|
@ -213,7 +213,7 @@
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Cipher block chaining
|
* Cipher block chaining
|
||||||
*
|
*
|
||||||
* The first block is XORed with the IV. Subsequent blocks are XOR with the
|
* The first block is XORed with the IV. Subsequent blocks are XOR with the
|
||||||
* previous cipher output.
|
* previous cipher output.
|
||||||
*/
|
*/
|
||||||
|
@ -267,11 +267,11 @@
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Cipher feed back
|
* Cipher feed back
|
||||||
*
|
*
|
||||||
* The cipher output is XORed with the plain text to produce the cipher output,
|
* 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
|
* which is then fed back into the cipher to produce a bit pattern to XOR the
|
||||||
* next block with.
|
* next block with.
|
||||||
*
|
*
|
||||||
* This is a stream cipher mode and does not require padding.
|
* This is a stream cipher mode and does not require padding.
|
||||||
*/
|
*/
|
||||||
var CFB = C_mode.CFB = function () {
|
var CFB = C_mode.CFB = function () {
|
||||||
|
@ -319,10 +319,10 @@
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Output feed back
|
* Output feed back
|
||||||
*
|
*
|
||||||
* The cipher repeatedly encrypts its own output. The output is XORed with the
|
* The cipher repeatedly encrypts its own output. The output is XORed with the
|
||||||
* plain text to produce the cipher text.
|
* plain text to produce the cipher text.
|
||||||
*
|
*
|
||||||
* This is a stream cipher mode and does not require padding.
|
* This is a stream cipher mode and does not require padding.
|
||||||
*/
|
*/
|
||||||
var OFB = C_mode.OFB = function () {
|
var OFB = C_mode.OFB = function () {
|
||||||
|
@ -407,4 +407,4 @@
|
||||||
};
|
};
|
||||||
CTR_prototype._doDecrypt = CTR_prototype._doEncrypt;
|
CTR_prototype._doDecrypt = CTR_prototype._doEncrypt;
|
||||||
|
|
||||||
})(Crypto);
|
})(Crypto);
|
|
@ -3,7 +3,7 @@
|
||||||
* Basic Javascript Elliptic Curve implementation
|
* Basic Javascript Elliptic Curve implementation
|
||||||
* Ported loosely from BouncyCastle's Java EC code
|
* Ported loosely from BouncyCastle's Java EC code
|
||||||
* Only Fp curves implemented for now
|
* Only Fp curves implemented for now
|
||||||
*
|
*
|
||||||
* Copyright Tom Wu, bitaddress.org BSD License.
|
* Copyright Tom Wu, bitaddress.org BSD License.
|
||||||
* http://www-cs-students.stanford.edu/~tjw/jsbn/LICENSE
|
* http://www-cs-students.stanford.edu/~tjw/jsbn/LICENSE
|
||||||
*/
|
*/
|
||||||
|
@ -64,7 +64,7 @@
|
||||||
/**
|
/**
|
||||||
* return a sqrt root - the routine verifies that the calculation
|
* return a sqrt root - the routine verifies that the calculation
|
||||||
* returns the right value - if none exists it returns null.
|
* returns the right value - if none exists it returns null.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2000 - 2011 The Legion Of The Bouncy Castle (http://www.bouncycastle.org)
|
* Copyright (c) 2000 - 2011 The Legion Of The Bouncy Castle (http://www.bouncycastle.org)
|
||||||
* Ported to JavaScript by bitaddress.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 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);
|
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 (compressed) {
|
||||||
if (y.isEven()) {
|
if (y.isEven()) {
|
||||||
enc.unshift(0x02);
|
enc.unshift(0x02);
|
||||||
|
@ -666,4 +666,4 @@
|
||||||
if (ec.secNamedCurves[name] == undefined) return null;
|
if (ec.secNamedCurves[name] == undefined) return null;
|
||||||
return ec.secNamedCurves[name]();
|
return ec.secNamedCurves[name]();
|
||||||
}
|
}
|
||||||
})();
|
})();
|
502
src/jsqrcode.js
502
src/jsqrcode.js
File diff suppressed because it is too large
Load diff
|
@ -43,8 +43,8 @@ ninja.wallets.bulkwallet = {
|
||||||
bulkWallet.csv.push((bulkWallet.csvRowLimit - bulkWallet.csvRowsRemaining + bulkWallet.csvStartIndex)
|
bulkWallet.csv.push((bulkWallet.csvRowLimit - bulkWallet.csvRowsRemaining + bulkWallet.csvStartIndex)
|
||||||
+ ",\"" + key.getBitcoinAddress() + "\",\"" + key.toString("wif")
|
+ ",\"" + key.getBitcoinAddress() + "\",\"" + key.toString("wif")
|
||||||
//+ "\",\"" + key.toString("wifcomp") // uncomment these lines to add different private key formats to the CSV
|
//+ "\",\"" + key.toString("wifcomp") // uncomment these lines to add different private key formats to the CSV
|
||||||
//+ "\",\"" + key.getBitcoinHexFormat()
|
//+ "\",\"" + key.getBitcoinHexFormat()
|
||||||
//+ "\",\"" + key.toString("base64")
|
//+ "\",\"" + key.toString("base64")
|
||||||
+ "\"");
|
+ "\"");
|
||||||
|
|
||||||
document.getElementById("bulktextarea").value = ninja.translator.get("bulkgeneratingaddresses") + bulkWallet.csvRowsRemaining;
|
document.getElementById("bulktextarea").value = ninja.translator.get("bulkgeneratingaddresses") + bulkWallet.csvRowsRemaining;
|
||||||
|
@ -70,4 +70,4 @@ ninja.wallets.bulkwallet = {
|
||||||
document.getElementById("bulke" + faqNum).setAttribute("class", "less");
|
document.getElementById("bulke" + faqNum).setAttribute("class", "less");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
|
@ -38,7 +38,7 @@ ninja.wallets.detailwallet = {
|
||||||
document.getElementById("detailarea").style.display = "block";
|
document.getElementById("detailarea").style.display = "block";
|
||||||
document.getElementById("detailprivkey").focus();
|
document.getElementById("detailprivkey").focus();
|
||||||
if (!ninja.wallets.detailwallet.qrscanner.scanner) {
|
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) {
|
function(data) {
|
||||||
document.getElementById('detailprivkey').value = data;
|
document.getElementById('detailprivkey').value = data;
|
||||||
document.getElementById('paperqrscanner').className = '';
|
document.getElementById('paperqrscanner').className = '';
|
||||||
|
@ -183,4 +183,4 @@ ninja.wallets.detailwallet = {
|
||||||
document.getElementById("detailbip38commands").style.display = "none";
|
document.getElementById("detailbip38commands").style.display = "none";
|
||||||
document.getElementById("detailbip38").style.display = "none";
|
document.getElementById("detailbip38").style.display = "none";
|
||||||
}
|
}
|
||||||
};
|
};
|
|
@ -6,13 +6,13 @@ ninja.wallets.donate = {
|
||||||
close: function () {
|
close: function () {
|
||||||
document.getElementById("donatearea").style.display = "none";
|
document.getElementById("donatearea").style.display = "none";
|
||||||
},
|
},
|
||||||
|
|
||||||
displayQrCode: function (currencyid, e) {
|
displayQrCode: function (currencyid, e) {
|
||||||
var keyValuePair = {};
|
var keyValuePair = {};
|
||||||
keyValuePair["donateqrcode"] = janin.currencies[currencyid].donate;
|
keyValuePair["donateqrcode"] = janin.currencies[currencyid].donate;
|
||||||
ninja.qrCode.showQrCode(keyValuePair, 4);
|
ninja.qrCode.showQrCode(keyValuePair, 4);
|
||||||
|
|
||||||
document.getElementById("donateqrcode").style.display = "block";
|
document.getElementById("donateqrcode").style.display = "block";
|
||||||
document.getElementById("donateqrcode").style.top = (e.offsetTop+15) + 'px';
|
document.getElementById("donateqrcode").style.top = (e.offsetTop+15) + 'px';
|
||||||
}
|
}
|
||||||
};
|
};
|
|
@ -53,7 +53,7 @@ ninja.privateKey = {
|
||||||
callback(new Error(ninja.translator.get("detailalertnotvalidprivatekey")));
|
callback(new Error(ninja.translator.get("detailalertnotvalidprivatekey")));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
// first byte is always 0x01
|
// first byte is always 0x01
|
||||||
else if (hex[0] != 0x01) {
|
else if (hex[0] != 0x01) {
|
||||||
callback(new Error(ninja.translator.get("detailalertnotvalidprivatekey")));
|
callback(new Error(ninja.translator.get("detailalertnotvalidprivatekey")));
|
||||||
return;
|
return;
|
||||||
|
@ -82,7 +82,7 @@ ninja.privateKey = {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// second byte for EC-multiplied key
|
// second byte for EC-multiplied key
|
||||||
else if (hex[1] == 0x43) {
|
else if (hex[1] == 0x43) {
|
||||||
isECMult = true;
|
isECMult = true;
|
||||||
isCompPoint = (hex[2] & 0x20) != 0;
|
isCompPoint = (hex[2] & 0x20) != 0;
|
||||||
|
@ -347,4 +347,4 @@ ninja.publicKey = {
|
||||||
var pubHexUncompressed = ninja.publicKey.getHexFromByteArray(pubByteArray);
|
var pubHexUncompressed = ninja.publicKey.getHexFromByteArray(pubByteArray);
|
||||||
return pubHexUncompressed;
|
return pubHexUncompressed;
|
||||||
}
|
}
|
||||||
};
|
};
|
|
@ -16,7 +16,7 @@
|
||||||
isDone: function() {
|
isDone: function() {
|
||||||
return ninja.seeder.seedCount >= ninja.seeder.seedLimit;
|
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 exists to wait for mouse movement to add more entropy before generating an address
|
||||||
seed: function (evt) {
|
seed: function (evt) {
|
||||||
if (!evt) var evt = window.event;
|
if (!evt) var evt = window.event;
|
||||||
|
@ -76,7 +76,7 @@
|
||||||
div.setAttribute("class", "seedpoint");
|
div.setAttribute("class", "seedpoint");
|
||||||
div.style.top = y + "px";
|
div.style.top = y + "px";
|
||||||
div.style.left = x + "px";
|
div.style.left = x + "px";
|
||||||
|
|
||||||
// let's make the entropy 'points' grow and change color!
|
// let's make the entropy 'points' grow and change color!
|
||||||
percentageComplete = ninja.seeder.seedCount / ninja.seeder.seedLimit;
|
percentageComplete = ninja.seeder.seedCount / ninja.seeder.seedLimit;
|
||||||
document.getElementById("progress-bar-percentage").style.width=Math.ceil(percentageComplete*100)+"%";
|
document.getElementById("progress-bar-percentage").style.width=Math.ceil(percentageComplete*100)+"%";
|
||||||
|
@ -145,7 +145,7 @@ ninja.qrCode = {
|
||||||
return canvas;
|
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) {
|
createTableHtml: function (text) {
|
||||||
var typeNumber = ninja.qrCode.getTypeNumber(text);
|
var typeNumber = ninja.qrCode.getTypeNumber(text);
|
||||||
var qr = new QRCode(typeNumber, QRCode.ErrorCorrectLevel.H);
|
var qr = new QRCode(typeNumber, QRCode.ErrorCorrectLevel.H);
|
||||||
|
@ -168,7 +168,7 @@ ninja.qrCode = {
|
||||||
},
|
},
|
||||||
|
|
||||||
// show QRCodes with canvas OR table (IE8)
|
// show QRCodes with canvas OR table (IE8)
|
||||||
// parameter: keyValuePair
|
// parameter: keyValuePair
|
||||||
// example: { "id1": "string1", "id2": "string2"}
|
// example: { "id1": "string1", "id2": "string2"}
|
||||||
// "id1" is the id of a div element where you want a QRCode inserted.
|
// "id1" is the id of a div element where you want a QRCode inserted.
|
||||||
// "string1" is the string you want encoded into the QRCode.
|
// "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>';
|
innerHTML = '<span style="color: #009900;">' + ninja.translator.get("securitychecklistofflineOK") + '</span>';
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
}
|
}
|
||||||
document.getElementById('envSecurityCheck').innerHTML = innerHTML;
|
document.getElementById('envSecurityCheck').innerHTML = innerHTML;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -222,7 +222,7 @@ ninja.browserSecurityCheck = function() {
|
||||||
innerHTML = '<span style="color: #009900;">' + ninja.translator.get("securitychecklistrandomOK") + '</span>';
|
innerHTML = '<span style="color: #009900;">' + ninja.translator.get("securitychecklistrandomOK") + '</span>';
|
||||||
} else {
|
} else {
|
||||||
innerHTML = '<span style="color: #990000;">' + ninja.translator.get("securitychecklistrandomNOK") + '</span>';
|
innerHTML = '<span style="color: #990000;">' + ninja.translator.get("securitychecklistrandomNOK") + '</span>';
|
||||||
}
|
}
|
||||||
document.getElementById('browserSecurityCheck').innerHTML = innerHTML;
|
document.getElementById('browserSecurityCheck').innerHTML = innerHTML;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -271,4 +271,4 @@ ninja.foreachSerialized = function (collection, whatToDo, onComplete) {
|
||||||
ninja.toggleFaqQuestion = function (elementId) {
|
ninja.toggleFaqQuestion = function (elementId) {
|
||||||
var answerDiv = document.getElementById(elementId);
|
var answerDiv = document.getElementById(elementId);
|
||||||
answerDiv.style.display = answerDiv.style.display == "block" ? "none" : "block";
|
answerDiv.style.display = answerDiv.style.display == "block" ? "none" : "block";
|
||||||
};
|
};
|
|
@ -78,9 +78,9 @@ if (ninja.getQueryString()["i18nextract"]) {
|
||||||
elem.setAttribute("rows", "30");
|
elem.setAttribute("rows", "30");
|
||||||
elem.setAttribute("style", "width: 99%");
|
elem.setAttribute("style", "width: 99%");
|
||||||
elem.setAttribute("wrap", "off");
|
elem.setAttribute("wrap", "off");
|
||||||
|
|
||||||
a=document.getElementsByClassName("i18n");
|
a=document.getElementsByClassName("i18n");
|
||||||
|
|
||||||
var i18n = "\"" + culture + "\": {\n";
|
var i18n = "\"" + culture + "\": {\n";
|
||||||
for(x=0; x<a.length; x++) {
|
for(x=0; x<a.length; x++) {
|
||||||
i18n += "\t";
|
i18n += "\t";
|
||||||
|
@ -100,9 +100,9 @@ if (ninja.getQueryString()["i18nextract"]) {
|
||||||
i18n += "(ENGLISH)" + cleani18n(ninja.translator.translations["en"][ninja.translator.staticID[x]]);
|
i18n += "(ENGLISH)" + cleani18n(ninja.translator.translations["en"][ninja.translator.staticID[x]]);
|
||||||
i18n += "\",\n";
|
i18n += "\",\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
i18n += "},"
|
i18n += "},"
|
||||||
|
|
||||||
elem.innerHTML = i18n;
|
elem.innerHTML = i18n;
|
||||||
div.appendChild(elem);
|
div.appendChild(elem);
|
||||||
document.body.appendChild(div);
|
document.body.appendChild(div);
|
||||||
|
|
|
@ -93,10 +93,10 @@ ninja.wallets.paperwallet = {
|
||||||
ninja.wallets.paperwallet.showArtisticWallet(idPostFix, bitcoinAddress, privateKeyWif);
|
ninja.wallets.paperwallet.showArtisticWallet(idPostFix, bitcoinAddress, privateKeyWif);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
// Verify that a self-entered key is valid, and compute the corresponding
|
// Verify that a self-entered key is valid, and compute the corresponding
|
||||||
// public address, render the wallet.
|
// public address, render the wallet.
|
||||||
testAndApplyVanityKey: function () {
|
testAndApplyVanityKey: function () {
|
||||||
var suppliedKey = document.getElementById('suppliedPrivateKey').value;
|
var suppliedKey = document.getElementById('suppliedPrivateKey').value;
|
||||||
suppliedKey = suppliedKey.trim(); // in case any spaces or whitespace got pasted in
|
suppliedKey = suppliedKey.trim(); // in case any spaces or whitespace got pasted in
|
||||||
document.getElementById('suppliedPrivateKey').value = suppliedKey;
|
document.getElementById('suppliedPrivateKey').value = suppliedKey;
|
||||||
|
@ -139,11 +139,11 @@ ninja.wallets.paperwallet = {
|
||||||
var keyValuePair = {};
|
var keyValuePair = {};
|
||||||
keyValuePair["qrcode_public" + idPostFix] = bitcoinAddress;
|
keyValuePair["qrcode_public" + idPostFix] = bitcoinAddress;
|
||||||
ninja.qrCode.showQrCode(keyValuePair, 3.5);
|
ninja.qrCode.showQrCode(keyValuePair, 3.5);
|
||||||
|
|
||||||
var keyValuePair = {};
|
var keyValuePair = {};
|
||||||
keyValuePair["qrcode_private" + idPostFix] = privateKey;
|
keyValuePair["qrcode_private" + idPostFix] = privateKey;
|
||||||
ninja.qrCode.showQrCode(keyValuePair, 2.8);
|
ninja.qrCode.showQrCode(keyValuePair, 2.8);
|
||||||
|
|
||||||
document.getElementById("btcaddress" + idPostFix).innerHTML = bitcoinAddress;
|
document.getElementById("btcaddress" + idPostFix).innerHTML = bitcoinAddress;
|
||||||
document.getElementById("btcprivwif" + idPostFix).innerHTML = privateKey;
|
document.getElementById("btcprivwif" + idPostFix).innerHTML = privateKey;
|
||||||
},
|
},
|
||||||
|
@ -164,4 +164,4 @@ ninja.wallets.paperwallet = {
|
||||||
document.getElementById("paperkeyarea").style.fontSize = "95%";
|
document.getElementById("paperkeyarea").style.fontSize = "95%";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
|
@ -40,7 +40,7 @@ ninja.translator = {
|
||||||
var translation = ninja.translator.translations[ninja.translator.currentCulture][id];
|
var translation = ninja.translator.translations[ninja.translator.currentCulture][id];
|
||||||
return translation;
|
return translation;
|
||||||
},
|
},
|
||||||
|
|
||||||
staticID: [
|
staticID: [
|
||||||
"defaultTitle",
|
"defaultTitle",
|
||||||
"title",
|
"title",
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
// Licensed under the MIT license:
|
// Licensed under the MIT license:
|
||||||
// http://www.opensource.org/licenses/mit-license.php
|
// 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
|
// DENSO WAVE INCORPORATED
|
||||||
// http://www.denso-wave.com/qrcode/faqpatent-e.html
|
// http://www.denso-wave.com/qrcode/faqpatent-e.html
|
||||||
//
|
//
|
||||||
|
@ -222,7 +222,7 @@
|
||||||
var data = (this.errorCorrectLevel << 3) | maskPattern;
|
var data = (this.errorCorrectLevel << 3) | maskPattern;
|
||||||
var bits = QRCode.Util.getBCHTypeInfo(data);
|
var bits = QRCode.Util.getBCHTypeInfo(data);
|
||||||
|
|
||||||
// vertical
|
// vertical
|
||||||
for (var i = 0; i < 15; i++) {
|
for (var i = 0; i < 15; i++) {
|
||||||
|
|
||||||
var mod = (!test && ((bits >> i) & 1) == 1);
|
var mod = (!test && ((bits >> i) & 1) == 1);
|
||||||
|
@ -905,7 +905,7 @@
|
||||||
[2, 35, 17],
|
[2, 35, 17],
|
||||||
[2, 35, 13],
|
[2, 35, 13],
|
||||||
|
|
||||||
// 4
|
// 4
|
||||||
[1, 100, 80],
|
[1, 100, 80],
|
||||||
[2, 50, 32],
|
[2, 50, 32],
|
||||||
[2, 50, 24],
|
[2, 50, 24],
|
||||||
|
@ -923,7 +923,7 @@
|
||||||
[4, 43, 19],
|
[4, 43, 19],
|
||||||
[4, 43, 15],
|
[4, 43, 15],
|
||||||
|
|
||||||
// 7
|
// 7
|
||||||
[2, 98, 78],
|
[2, 98, 78],
|
||||||
[4, 49, 31],
|
[4, 49, 31],
|
||||||
[2, 32, 14, 4, 33, 15],
|
[2, 32, 14, 4, 33, 15],
|
||||||
|
@ -941,7 +941,7 @@
|
||||||
[4, 36, 16, 4, 37, 17],
|
[4, 36, 16, 4, 37, 17],
|
||||||
[4, 36, 12, 4, 37, 13],
|
[4, 36, 12, 4, 37, 13],
|
||||||
|
|
||||||
// 10
|
// 10
|
||||||
[2, 86, 68, 2, 87, 69],
|
[2, 86, 68, 2, 87, 69],
|
||||||
[4, 69, 43, 1, 70, 44],
|
[4, 69, 43, 1, 70, 44],
|
||||||
[6, 43, 19, 2, 44, 20],
|
[6, 43, 19, 2, 44, 20],
|
||||||
|
@ -1031,4 +1031,4 @@
|
||||||
this.length++;
|
this.length++;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
})();
|
})();
|
|
@ -1,10 +1,10 @@
|
||||||
/*!
|
/*!
|
||||||
* Random number generator with ArcFour PRNG
|
* Random number generator with ArcFour PRNG
|
||||||
*
|
*
|
||||||
* NOTE: For best results, put code like
|
* NOTE: For best results, put code like
|
||||||
* <body onclick='SecureRandom.seedTime();' onkeypress='SecureRandom.seedTime();'>
|
* <body onclick='SecureRandom.seedTime();' onkeypress='SecureRandom.seedTime();'>
|
||||||
* in your main HTML document.
|
* in your main HTML document.
|
||||||
*
|
*
|
||||||
* Copyright Tom Wu, bitaddress.org BSD License.
|
* Copyright Tom Wu, bitaddress.org BSD License.
|
||||||
* http://www-cs-students.stanford.edu/~tjw/jsbn/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.");
|
alert("Premature initialisation of the random generator. Something is really wrong, do not generate wallets.");
|
||||||
return NaN;
|
return NaN;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (sr.state == null) {
|
if (sr.state == null) {
|
||||||
sr.seedTime();
|
sr.seedTime();
|
||||||
sr.state = sr.ArcFour(); // Plug in your RNG constructor here
|
sr.state = sr.ArcFour(); // Plug in your RNG constructor here
|
||||||
|
@ -184,4 +184,4 @@
|
||||||
sr.seedInt8(entropyBytes[i]);
|
sr.seedInt8(entropyBytes[i]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})();
|
})();
|
Loading…
Add table
Reference in a new issue