Merge branch 'master' into i18n
This commit is contained in:
commit
6b3b7666af
12 changed files with 296 additions and 206 deletions
251
index.html
251
index.html
|
@ -1508,7 +1508,6 @@ if (typeof Crypto == "undefined" || !Crypto.util) {
|
|||
sr.state;
|
||||
sr.pool;
|
||||
sr.pptr;
|
||||
sr.poolCopyOnInit;
|
||||
|
||||
// Pool size must be a multiple of 4 and greater than 32.
|
||||
// An array of bytes the size of the pool will be passed to init()
|
||||
|
@ -1544,13 +1543,15 @@ if (typeof Crypto == "undefined" || !Crypto.util) {
|
|||
}
|
||||
|
||||
sr.getByte = function () {
|
||||
if(!ninja.seeder.isDone()) {
|
||||
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
|
||||
sr.state.init(sr.pool);
|
||||
sr.poolCopyOnInit = [];
|
||||
for (sr.pptr = 0; sr.pptr < sr.pool.length; ++sr.pptr)
|
||||
sr.poolCopyOnInit[sr.pptr] = sr.pool[sr.pptr];
|
||||
sr.pptr = 0;
|
||||
}
|
||||
// TODO: allow reseeding after first request
|
||||
|
@ -9326,6 +9327,16 @@ body { font-family: Arial; background-image: url('images/diamonds.png'); height:
|
|||
.answer { padding: 0 15px 10px 25px; text-align: left; display: none; font-size: 80%; }
|
||||
.faq { border: 0; border-top: 1px solid #BFBFBF; }
|
||||
|
||||
#initBanner { position: relative; text-align: left; padding: 15px; background-color: white; border-bottom: 1px solid #bfbfbf; }
|
||||
#walletCommands { display: none; }
|
||||
#keyarea { display: none; }
|
||||
|
||||
#faqZone { text-align: left; padding: 10px 30px 30px 30px; }
|
||||
.faqQuestion { margin-left: 15px; }
|
||||
.faqAnswer { margin-left: 30px; display: none; }
|
||||
.faqListBullet { padding: 0 5px 0px 15px; }
|
||||
.faqLink { cursor: pointer; }
|
||||
|
||||
#btcaddress, #btcprivwif, #detailaddress, #detailaddresscomp, #detailprivwif, #detailprivwifcomp { font-family: monospace; font-size: 1.25em; }
|
||||
#seedpoolarea { display: none; }
|
||||
#seedpooldisplay { font-family: monospace; font-size: 1em; width: 640px; padding: 15px 5px; word-wrap: break-word; min-height: 98px; }
|
||||
|
@ -9355,7 +9366,7 @@ body { font-family: Arial; background-image: url('images/diamonds.png'); height:
|
|||
|
||||
h1 { margin: 0px; height: 91px; }
|
||||
|
||||
#keyarea { height: 250px; }
|
||||
#keyarea { height: 250px; border-bottom: 1px solid #bfbfbf; }
|
||||
#keyarea .pubaddress { float: none; display: block; padding: 0; height: auto; }
|
||||
#keyarea .label { text-decoration: none; }
|
||||
#keyarea .privwif { float: none; text-align: right; position: relative; padding: 0; }
|
||||
|
@ -9363,10 +9374,10 @@ h1 { margin: 0px; height: 91px; }
|
|||
#keyarea .qrcode_private { float: none; display: block; top: 0; text-align: right; padding: 13px 11px 11px 11px; }
|
||||
#keyarea .private { width: 30%; display: table-cell; }
|
||||
#keyarea .public { width: 30%; display: table-cell; }
|
||||
#singlearea { font-size: 90%; }
|
||||
#singlearea { font-size: 90%; display: block; }
|
||||
#singlesecret { position: relative; top: -130px; float: right; right: 200px; color: red; font-weight: bolder; font-size: 200%; }
|
||||
#singleshare { position: relative; top: -110px; float: left; left: 160px; color: green; font-weight: bolder; font-size: 200%; }
|
||||
#singlesafety { text-align: left; border-top: 1px solid #BFBFBF; position: relative; min-height: 500px; }
|
||||
#singlesafety { text-align: left; border-bottom: 1px solid #bfbfbf; position: relative; min-height: 500px; }
|
||||
|
||||
#singlesafety p { font-size: 13px; }
|
||||
|
||||
|
@ -9681,68 +9692,29 @@ h1 { margin: 0px; height: 91px; }
|
|||
<div class="tab" id="detailwallet" onclick="ninja.tabSwitch(this);">Wallet Details</div>
|
||||
<div class="tab" id="donate" onclick="ninja.tabSwitch(this);">Support</div>
|
||||
</div>
|
||||
|
||||
<div id="generate">
|
||||
|
||||
|
||||
<span id="generatelabelbitcoinaddress">Generating new Address...</span><br />
|
||||
<span id="generatelabelmovemouse">MOVE your mouse around to add some extra randomness... </span><span id="mousemovelimit"></span><br />
|
||||
<span id="generatelabelkeypress">OR type some random characters into this textbox</span> <input type="text" id="generatekeyinput" onkeypress="ninja.seeder.seedKeyPress(event);" /><br />
|
||||
<div id="seedpooldisplay"></div>
|
||||
|
||||
<div id="rightArea">
|
||||
<div id="progress-bar" class="fullyRounded">
|
||||
<div id="progress-bar-percentage" class="fullyRounded 1percentwidth"></div>
|
||||
</div>
|
||||
|
||||
<div id="seedSkipper">
|
||||
<a href="#" class="nicerButton 100pxwidth" onClick="ninja.seeder.seedCount = ninja.seeder.seedLimit; ninja.seeder.seed();">Skip »</a>
|
||||
<p class="skipMessage">You may skip this step if you do not plan to use the random key generator.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<hr />
|
||||
|
||||
<div class="frontPageText">
|
||||
|
||||
<div class="firstHalfSingleSafety">
|
||||
|
||||
<div class="supportedCurrenciesChecklist">
|
||||
<b>Supported currencies :</b>
|
||||
<div id="supportedcurrencies"></div>
|
||||
</div>
|
||||
|
||||
<div class="frontPageInstructions">
|
||||
<h3>Step 0. Follow the security checklist recommendation</h3>
|
||||
<p>
|
||||
First step is to <strong>download</strong> this website from <a href="https://github.com/MichaelMure/PaperWallet/archive/master.zip">Github</a> and open the index.html file directly from your computer. It's just too easy to sneak some evil code in the 6000+ lines of javascript to leak your private key, and you don't want to see your fund stolen. Code version control make it much easier to cross-check what actually run. For extra security, <strong>unplug your Internet access</strong> while generating your wallet.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="securityChecklist">
|
||||
<b>Security Checklist :</b>
|
||||
|
||||
<ul>
|
||||
<li id="seedEnvSecurityCheck"></li>
|
||||
|
||||
<li id="seedBrowserSecurityCheck"></li>
|
||||
|
||||
<li>
|
||||
Are you using a secure operating system guaranteed to be free of spyware and viruses, for example, an Ubuntu LiveCD?
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="secondHalfSingleSafety">
|
||||
<img class="seedFrontPageImage" alt="Paper wallet from walletgenerator.net" src="images/overview.png" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="wallets">
|
||||
<div id="singlearea" class="walletarea">
|
||||
<div class="commands">
|
||||
|
||||
<div id="initBanner">
|
||||
<span id="generatelabelbitcoinaddress">Generating new Address...</span><br />
|
||||
<span id="generatelabelmovemouse">MOVE your mouse around to add some extra randomness... </span><span id="mousemovelimit"></span><br />
|
||||
<span id="generatelabelkeypress">OR type some random characters into this textbox</span> <input type="text" id="generatekeyinput" onkeypress="ninja.seeder.seedKeyPress(event);" /><br />
|
||||
<div id="seedpooldisplay"></div>
|
||||
|
||||
<div id="rightArea">
|
||||
<div id="progress-bar" class="fullyRounded">
|
||||
<div id="progress-bar-percentage" class="fullyRounded 1percentwidth"></div>
|
||||
</div>
|
||||
|
||||
<div id="seedSkipper">
|
||||
<a href="#" class="nicerButton 100pxwidth" onClick="ninja.seeder.seedCount = ninja.seeder.seedLimit; ninja.seeder.seed();">Skip »</a>
|
||||
<p class="skipMessage">You may skip this step if you do not plan to use the random key generator.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="walletCommands" class="commands">
|
||||
<div id="singlecommands" class="row">
|
||||
<span><input type="button" id="newaddress" value="Generate New Address" onclick="ninja.wallets.singlewallet.generateNewAddressAndKey();" /></span>
|
||||
<span class="print"><input type="button" name="print" value="Print" id="singleprint" onclick="window.print();" /></span>
|
||||
|
@ -9773,6 +9745,7 @@ h1 { margin: 0px; height: 91px; }
|
|||
|
||||
<div id="singlesafety">
|
||||
<div class="firstHalfSingleSafety">
|
||||
|
||||
<h3>Step 0. Follow the security checklist recommendation</h3>
|
||||
<p>
|
||||
First step is to <strong>download</strong> this website from <a href="https://github.com/MichaelMure/PaperWallet/archive/master.zip">Github</a> and open the index.html file directly from your computer. It's just too easy to sneak some evil code in the 6000+ lines of javascript to leak your private key, and you don't want to see your fund stolen. Code version control make it much easier to cross-check what actually run. For extra security, <strong>unplug your Internet access</strong> while generating your wallet.
|
||||
|
@ -9804,9 +9777,7 @@ h1 { margin: 0px; height: 91px; }
|
|||
<strong>Please test spending a small amount before receiving any large payments.</strong><br /><br />
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<a href="https://blockchain.info/fr/wallet/paper-tutorial" target="_blank">For an extended tutorial on paper wallets, click here</a>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class="secondHalfSingleSafety">
|
||||
<img class="frontPageImage" src="images/overview.png" alt="Overview image of 4 paper wallet" />
|
||||
|
@ -9824,8 +9795,68 @@ h1 { margin: 0px; height: 91px; }
|
|||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="supportedCurrenciesChecklist">
|
||||
<b>Supported currencies :</b>
|
||||
<div id="supportedcurrencies"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div id="faqZone">
|
||||
<h2>Frequently asked questions :</h2>
|
||||
|
||||
<h3 class="faqQuestion"><a class="faqLink" onclick="ninja.toggleFaqQuestion('faqQuestion1');">• Is it safe ?</a></h3>
|
||||
<p class="faqAnswer" id="faqQuestion1">
|
||||
We try to make it that way ! The core the tool, that generate the keys is 99% the same as the well reviewed bitaddress.org. We only changed it to be able to generate address for different crypto-currencies.
|
||||
We think that having a unique generator for multiple currency lead to a much better reviewed tool for all than having a myriad of half backed generator.
|
||||
Changes made to this generator are available on Github in small and divided commits and thus are easy to review and reuse.
|
||||
Walletgenerator.net use the same security measure as its original. All-in-one html document, no ajax, no analytics, no external calls, no CDN that can inject anything they want. And trust us, we have seen some nasty things when reviewing some wallet generator.
|
||||
</p>
|
||||
|
||||
<h3 class="faqQuestion"><a class="faqLink" onclick="ninja.toggleFaqQuestion('faqQuestion2');">• Why use a paper wallet ?</a></h3>
|
||||
<p class="faqAnswer" id="faqQuestion2">
|
||||
Advantages of a paper wallet are multiple:<br/><br/>
|
||||
<span class="faqListBullet">⇒</span> They are not subject to malware and keylogger<br/>
|
||||
<span class="faqListBullet">⇒</span> You don’t rely on a third party’s honesty or capacity to protect your coins<br/>
|
||||
<span class="faqListBullet">⇒</span> You won't lose your coin when your device break
|
||||
</p>
|
||||
|
||||
<h3 class="faqQuestion"><a class="faqLink" onclick="ninja.toggleFaqQuestion('faqQuestion3');">• How to use a paper wallet ?</a></h3>
|
||||
<p class="faqAnswer" id="faqQuestion3">
|
||||
Once you have generated and printed a wallet, you can send coins to the public address, like for any wallet. Store your paper wallet securely. It contains everything that is needed to spend your funds. Consider using BIP38 to secure your paper wallet with a password.
|
||||
</p>
|
||||
|
||||
<h3 class="faqQuestion"><a class="faqLink" onclick="ninja.toggleFaqQuestion('faqQuestion4');">• How to spend the coin stored in a paper wallet ?</a></h3>
|
||||
<p class="faqAnswer" id="faqQuestion4">
|
||||
You will need to import your private key in a real client, that you can download from the currency website. The exact method to do that will depend on the client. If there is no integrated method, you can usually fall back to the debug console and use the command “importprivkey yourprivatekey“.
|
||||
</p>
|
||||
|
||||
<h3 class="faqQuestion"><a class="faqLink" onclick="ninja.toggleFaqQuestion('faqQuestion5');">• How walletgenerator.net is different than another wallet generator ?</a></h3>
|
||||
<p class="faqAnswer" id="faqQuestion5">
|
||||
It’s not that different. You will find another design for the paper wallet and some improvement here and there. The big difference is that this is a unique project for a lot of currencies, so more people can review it and check its safety.
|
||||
</p>
|
||||
|
||||
<h3 class="faqQuestion"><a class="faqLink" onclick="ninja.toggleFaqQuestion('faqQuestion6');">• Where is the https:// ?</a></h3>
|
||||
<p class="faqAnswer" id="faqQuestion6">
|
||||
There is none. The web hosting solution we currently use doesn't provide SSL support, so we would need to upgrade that. It should happen in the future, but remember that there is almost no point in doing that. You are not supposed to generate anything from the live website, and even if you do, as everything is client-side javascript, HTTPS won’t help you at all.
|
||||
</p>
|
||||
|
||||
<h3 class="faqQuestion"><a class="faqLink" onclick="ninja.toggleFaqQuestion('faqQuestion7');">• Can you add support for cryptocurrency XYZ ?</a></h3>
|
||||
<p class="faqAnswer" id="faqQuestion7">
|
||||
Absolutely ! To help us do that, you can provide us a high resolution logo, some sample of public address, the link to download a client, a very short amount of the currency to make some test. But keep in mind that there is some currency that we cannot support. If the developers made some change in the address format, we won’t hack the crypto core of the project and taking the risk to tamper the security of the others currencies. Please contact us using <a href="http://twitter.com/WalletGenerator" target="_blank">Twitter</a> or <a href="https://github.com/MichaelMure/WalletGenerator.net" target="_blank">Github</a>.
|
||||
</p>
|
||||
|
||||
<h3 class="faqQuestion"><a class="faqLink" onclick="ninja.toggleFaqQuestion('faqQuestion8');">• Why should I make a donation ?</a></h3>
|
||||
<p class="faqAnswer" id="faqQuestion8">
|
||||
Donations money are used to pay our hosting service provider, but it’ll also be used to make walletgenerator.net more secure as we plan to organize a CrowdCurity campain as soon as we get enough money to pay for it.
|
||||
</p>
|
||||
|
||||
<h3 class="faqQuestion"><a class="faqLink" onclick="ninja.toggleFaqQuestion('faqQuestion9');">• I found a bug, what shall I do ?</a></h3>
|
||||
<p class="faqAnswer" id="faqQuestion9">
|
||||
You can report bugs using GitHub. You can also contact us using our twitter account (<a href="http://twitter.com/WalletGenerator" target="_blank">@WalletGenerator</a>). Just try to explain clearly what is wrong and we will try to fix the bug as soon as possible.
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
@ -9994,7 +10025,7 @@ h1 { margin: 0px; height: 91px; }
|
|||
</div>
|
||||
<div id="detailkeyarea">
|
||||
<div class="notes">
|
||||
<span id="detaillabelnote1">Your Private Key is a unique secret number that only you know. It can be encoded in a number of different formats. Below we show the Public Address and Public Key that corresponds to your Private Key as well as your Private Key in the most popular encoding formats (WIF, WIFC, HEX, B64, MINI).</span>
|
||||
<span id="detaillabelnote1">Your Private Key is a unique secret number that only you know. It can be encoded in a number of different formats. Below we show the Public Address and Public Key that corresponds to your Private Key as well as your Private Key in the most popular encoding formats (WIF, WIFC, HEX, B64).</span>
|
||||
<br /><br />
|
||||
</div>
|
||||
<div class="pubqr">
|
||||
|
@ -10073,6 +10104,20 @@ h1 { margin: 0px; height: 91px; }
|
|||
<hr/>
|
||||
<h3>Release notes</h3>
|
||||
<p>
|
||||
07.2014 --
|
||||
<ul>
|
||||
<li>Fix a vulnerability that lead to the generation of less random wallet that normal on old browser. If you use a browser older than the mentionned version/date, we advise you to regenerate your wallets.
|
||||
<ul>
|
||||
<li>Firefox 21: may 2013</li>
|
||||
<li>Chrome 11: april 2011</li>
|
||||
<li>IE 11: october 2013</li>
|
||||
<li>Opera 14: july 2013</li>
|
||||
<li>Safari 3.1: march 2008</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>Added a Frequently Asked Question section on the main page</li>
|
||||
</ul>
|
||||
<p>
|
||||
06.2014 --
|
||||
<ul>
|
||||
<li>Add support for GlobalBoost, Fluttercoin, Guncoin, Birdcoin</li>
|
||||
|
@ -10257,11 +10302,14 @@ janin.currency = {
|
|||
// Update title depending on currency
|
||||
document.title = janin.currency.name() + "'s paper wallet generator";
|
||||
document.getElementById("siteTitle").alt = janin.currency.name() + " Paper Wallet Generator";
|
||||
|
||||
// Regenerate a new wallet when not expensive
|
||||
ninja.wallets.singlewallet.generateNewAddressAndKey();
|
||||
ninja.wallets.paperwallet.build(document.getElementById('paperpassphrase').value);
|
||||
ninja.wallets.brainwallet.view();
|
||||
|
||||
if(ninja.seeder.isDone())
|
||||
{
|
||||
// Regenerate a new wallet when not expensive
|
||||
ninja.wallets.singlewallet.generateNewAddressAndKey();
|
||||
ninja.wallets.paperwallet.build(document.getElementById('paperpassphrase').value);
|
||||
ninja.wallets.brainwallet.view();
|
||||
}
|
||||
|
||||
// Reset wallet tab when expensive or not applicable
|
||||
document.getElementById("bulktextarea").value = "";
|
||||
|
@ -10286,7 +10334,6 @@ janin.currency = {
|
|||
janin.doge.stop();
|
||||
janin.doge = null;
|
||||
}
|
||||
|
||||
},
|
||||
};
|
||||
|
||||
|
@ -10309,11 +10356,9 @@ janin.currencies = [
|
|||
janin.currency.createCurrency ("Fastcoin", 0x60, 0xe0, "8", "a" , "frxe8F7gQdiAVgy4mRXjpXH5vN1wyta1db"),
|
||||
janin.currency.createCurrency ("Feathercoin",0x0e, 0x8e, "5", "N" , "6dxAP6oacHsove5X2kZPpddcT1Am167YzC"),
|
||||
janin.currency.createCurrency ("Fluttercoin",0x23, 0xa3, "6", "R" , "FJioRLt3gLtqk3tUdMhwjAVo1sdWjRuwqt"),
|
||||
janin.currency.createCurrency ("Fuelcoin",0x24, 0xa4, "6", "R" , ""),
|
||||
janin.currency.createCurrency ("GlobalBoost",0x26, 0xa6, "6", "R" , "GeXdH1WhzA7ayYim9sdCCQKcVukUq1W8LJ"),
|
||||
janin.currency.createCurrency ("Goodcoin", 0x26, 0xa6, "6", "R" , "GM3kAbQGaMVAYk8U3CrVGhSwz1hZaF6gVM"),
|
||||
janin.currency.createCurrency ("Gridcoin", 0x25, 0xa5, "6", "R" , "FyYkg3xhJVcVzMMw8JKfQaBxA9DAVhivq4"),
|
||||
janin.currency.createCurrency ("Guldencoin",0x26, 0xa6, "6", "R" , ""),
|
||||
janin.currency.createCurrency ("Guncoin", 0x27, 0xa7, "6", "R" , "GwVej6c3tF9GqEdSKmwJiUDWtQVK2wY9fP"),
|
||||
janin.currency.createCurrency ("HTMLCoin", 0x1e, 0x9e, "6", "Q" , "DP4AVuekGEatNmpCL99m46k8THwS9yNVqy"),
|
||||
janin.currency.createCurrency ("Litecoin", 0x30, 0xb0, "6", "T" , "LiScnsyPcqsyxn1fx92BcFguryXcw4DgCy"),
|
||||
|
@ -10702,15 +10747,18 @@ ninja.publicKey = {
|
|||
lastInputTime: new Date().getTime(),
|
||||
seedPoints: [],
|
||||
|
||||
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;
|
||||
var timeStamp = new Date().getTime();
|
||||
// seeding is over now we generate and display the address
|
||||
// seeding is over now we generate and display the address
|
||||
if (ninja.seeder.seedCount == ninja.seeder.seedLimit) {
|
||||
ninja.seeder.seedCount++;
|
||||
ninja.wallets.singlewallet.open();
|
||||
document.getElementById("generate").style.display = "none";
|
||||
ninja.wallets.singlewallet.open();
|
||||
document.getElementById("menu").style.visibility = "visible";
|
||||
ninja.seeder.removePoints();
|
||||
}
|
||||
|
@ -10731,7 +10779,7 @@ ninja.publicKey = {
|
|||
// seeding is over now we generate and display the address
|
||||
if (ninja.seeder.seedCount == ninja.seeder.seedLimit) {
|
||||
ninja.seeder.seedCount++;
|
||||
ninja.wallets.singlewallet.open();
|
||||
ninja.wallets.singlewallet.open();
|
||||
document.getElementById("generate").style.display = "none";
|
||||
document.getElementById("menu").style.visibility = "visible";
|
||||
ninja.seeder.removePoints();
|
||||
|
@ -10751,17 +10799,9 @@ ninja.publicKey = {
|
|||
},
|
||||
|
||||
showPool: function () {
|
||||
var poolHex;
|
||||
if (SecureRandom.poolCopyOnInit != null) {
|
||||
poolHex = Crypto.util.bytesToHex(SecureRandom.poolCopyOnInit);
|
||||
document.getElementById("seedpool").innerHTML = poolHex;
|
||||
document.getElementById("seedpooldisplay").innerHTML = poolHex;
|
||||
}
|
||||
else {
|
||||
poolHex = Crypto.util.bytesToHex(SecureRandom.pool);
|
||||
document.getElementById("seedpool").innerHTML = poolHex;
|
||||
document.getElementById("seedpooldisplay").innerHTML = poolHex;
|
||||
}
|
||||
var poolHex = Crypto.util.bytesToHex(SecureRandom.pool);
|
||||
document.getElementById("seedpool").innerHTML = poolHex;
|
||||
document.getElementById("seedpooldisplay").innerHTML = poolHex;
|
||||
document.getElementById("mousemovelimit").innerHTML = (ninja.seeder.seedLimit - ninja.seeder.seedCount);
|
||||
},
|
||||
|
||||
|
@ -10908,7 +10948,6 @@ ninja.envSecurityCheck = function() {
|
|||
default:
|
||||
}
|
||||
document.getElementById('envSecurityCheck').innerHTML = innerHTML;
|
||||
document.getElementById('seedEnvSecurityCheck').innerHTML = innerHTML;
|
||||
};
|
||||
|
||||
ninja.browserSecurityCheck = function() {
|
||||
|
@ -10919,7 +10958,6 @@ ninja.browserSecurityCheck = function() {
|
|||
innerHTML = '<span style="color: #990000;">Your browser does NOT support window.crypto.getRandomValues(), which is important for generating the most secure random numbers possible. Please use a more modern browser.</span>';
|
||||
}
|
||||
document.getElementById('browserSecurityCheck').innerHTML = innerHTML;
|
||||
document.getElementById('seedBrowserSecurityCheck').innerHTML = innerHTML;
|
||||
}
|
||||
|
||||
ninja.getQueryString = function () {
|
||||
|
@ -10963,6 +11001,11 @@ ninja.foreachSerialized = function (collection, whatToDo, onComplete) {
|
|||
whatToDo(keys[i], callback);
|
||||
}, onComplete);
|
||||
};
|
||||
|
||||
ninja.toggleFaqQuestion = function (elementId) {
|
||||
var answerDiv = document.getElementById(elementId);
|
||||
answerDiv.style.display = answerDiv.style.display == "block" ? "none" : "block";
|
||||
};
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
ninja.translator = {
|
||||
|
@ -11059,8 +11102,11 @@ ninja.wallets.singlewallet = {
|
|||
if (document.getElementById("btcaddress").innerHTML == "") {
|
||||
ninja.wallets.singlewallet.generateNewAddressAndKey();
|
||||
}
|
||||
document.getElementById("singlearea").style.display = "block";
|
||||
document.getElementById("walletCommands").style.display = "block";
|
||||
document.getElementById("keyarea").style.display = "block";
|
||||
document.getElementById("currencyddl").style.display = "block";
|
||||
document.getElementById("singlearea").style.display = "block";
|
||||
document.getElementById("initBanner").style.display = "none";
|
||||
},
|
||||
|
||||
close: function () {
|
||||
|
@ -12352,12 +12398,11 @@ if (ninja.getQueryString()["showseedpool"] == "true" || ninja.getQueryString()["
|
|||
document.getElementById("seedpoolarea").style.display = "block";
|
||||
}
|
||||
// change currency
|
||||
janin.currency.useCurrency(4);
|
||||
if (ninja.getQueryString()["currency"] != undefined) {
|
||||
for(i = 0; i < janin.currencies.length; i++) {
|
||||
if (janin.currencies[i].name.toLowerCase() == ninja.getQueryString()["currency"].toLowerCase())
|
||||
janin.currency.useCurrency(i);
|
||||
}
|
||||
var currency = ninja.getQueryString()["currency"] || "bitcoin";
|
||||
currency = currency.toLowerCase();
|
||||
for(i = 0; i < janin.currencies.length; i++) {
|
||||
if (janin.currencies[i].name.toLowerCase() == currency)
|
||||
janin.currency.useCurrency(i);
|
||||
}
|
||||
// populate currency dropdown list
|
||||
var select = document.getElementById("currency");
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 101 KiB |
Binary file not shown.
Before Width: | Height: | Size: 33 KiB |
162
src/index.html
162
src/index.html
|
@ -150,68 +150,29 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|||
<div class="tab" id="detailwallet" onclick="ninja.tabSwitch(this);">Wallet Details</div>
|
||||
<div class="tab" id="donate" onclick="ninja.tabSwitch(this);">Support</div>
|
||||
</div>
|
||||
|
||||
<div id="generate">
|
||||
|
||||
|
||||
<span id="generatelabelbitcoinaddress">Generating new Address...</span><br />
|
||||
<span id="generatelabelmovemouse">MOVE your mouse around to add some extra randomness... </span><span id="mousemovelimit"></span><br />
|
||||
<span id="generatelabelkeypress">OR type some random characters into this textbox</span> <input type="text" id="generatekeyinput" onkeypress="ninja.seeder.seedKeyPress(event);" /><br />
|
||||
<div id="seedpooldisplay"></div>
|
||||
|
||||
<div id="rightArea">
|
||||
<div id="progress-bar" class="fullyRounded">
|
||||
<div id="progress-bar-percentage" class="fullyRounded 1percentwidth"></div>
|
||||
</div>
|
||||
|
||||
<div id="seedSkipper">
|
||||
<a href="#" class="nicerButton 100pxwidth" onClick="ninja.seeder.seedCount = ninja.seeder.seedLimit; ninja.seeder.seed();">Skip »</a>
|
||||
<p class="skipMessage">You may skip this step if you do not plan to use the random key generator.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<hr />
|
||||
|
||||
<div class="frontPageText">
|
||||
|
||||
<div class="firstHalfSingleSafety">
|
||||
|
||||
<div class="supportedCurrenciesChecklist">
|
||||
<b>Supported currencies :</b>
|
||||
<div id="supportedcurrencies"></div>
|
||||
</div>
|
||||
|
||||
<div class="frontPageInstructions">
|
||||
<h3>Step 0. Follow the security checklist recommendation</h3>
|
||||
<p>
|
||||
First step is to <strong>download</strong> this website from <a href="https://github.com/MichaelMure/PaperWallet/archive/master.zip">Github</a> and open the index.html file directly from your computer. It's just too easy to sneak some evil code in the 6000+ lines of javascript to leak your private key, and you don't want to see your fund stolen. Code version control make it much easier to cross-check what actually run. For extra security, <strong>unplug your Internet access</strong> while generating your wallet.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="securityChecklist">
|
||||
<b>Security Checklist :</b>
|
||||
|
||||
<ul>
|
||||
<li id="seedEnvSecurityCheck"></li>
|
||||
|
||||
<li id="seedBrowserSecurityCheck"></li>
|
||||
|
||||
<li>
|
||||
Are you using a secure operating system guaranteed to be free of spyware and viruses, for example, an Ubuntu LiveCD?
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="secondHalfSingleSafety">
|
||||
<img class="seedFrontPageImage" alt="Paper wallet from walletgenerator.net" src="images/overview.png" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="wallets">
|
||||
<div id="singlearea" class="walletarea">
|
||||
<div class="commands">
|
||||
|
||||
<div id="initBanner">
|
||||
<span id="generatelabelbitcoinaddress">Generating new Address...</span><br />
|
||||
<span id="generatelabelmovemouse">MOVE your mouse around to add some extra randomness... </span><span id="mousemovelimit"></span><br />
|
||||
<span id="generatelabelkeypress">OR type some random characters into this textbox</span> <input type="text" id="generatekeyinput" onkeypress="ninja.seeder.seedKeyPress(event);" /><br />
|
||||
<div id="seedpooldisplay"></div>
|
||||
|
||||
<div id="rightArea">
|
||||
<div id="progress-bar" class="fullyRounded">
|
||||
<div id="progress-bar-percentage" class="fullyRounded 1percentwidth"></div>
|
||||
</div>
|
||||
|
||||
<div id="seedSkipper">
|
||||
<a href="#" class="nicerButton 100pxwidth" onClick="ninja.seeder.seedCount = ninja.seeder.seedLimit; ninja.seeder.seed();">Skip »</a>
|
||||
<p class="skipMessage">You may skip this step if you do not plan to use the random key generator.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="walletCommands" class="commands">
|
||||
<div id="singlecommands" class="row">
|
||||
<span><input type="button" id="newaddress" value="Generate New Address" onclick="ninja.wallets.singlewallet.generateNewAddressAndKey();" /></span>
|
||||
<span class="print"><input type="button" name="print" value="Print" id="singleprint" onclick="window.print();" /></span>
|
||||
|
@ -242,6 +203,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|||
|
||||
<div id="singlesafety">
|
||||
<div class="firstHalfSingleSafety">
|
||||
|
||||
<h3>Step 0. Follow the security checklist recommendation</h3>
|
||||
<p>
|
||||
First step is to <strong>download</strong> this website from <a href="https://github.com/MichaelMure/PaperWallet/archive/master.zip">Github</a> and open the index.html file directly from your computer. It's just too easy to sneak some evil code in the 6000+ lines of javascript to leak your private key, and you don't want to see your fund stolen. Code version control make it much easier to cross-check what actually run. For extra security, <strong>unplug your Internet access</strong> while generating your wallet.
|
||||
|
@ -273,9 +235,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|||
<strong>Please test spending a small amount before receiving any large payments.</strong><br /><br />
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<a href="https://blockchain.info/fr/wallet/paper-tutorial" target="_blank">For an extended tutorial on paper wallets, click here</a>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class="secondHalfSingleSafety">
|
||||
<img class="frontPageImage" src="images/overview.png" alt="Overview image of 4 paper wallet" />
|
||||
|
@ -293,8 +253,68 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="supportedCurrenciesChecklist">
|
||||
<b>Supported currencies :</b>
|
||||
<div id="supportedcurrencies"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div id="faqZone">
|
||||
<h2>Frequently asked questions :</h2>
|
||||
|
||||
<h3 class="faqQuestion"><a class="faqLink" onclick="ninja.toggleFaqQuestion('faqQuestion1');">• Is it safe ?</a></h3>
|
||||
<p class="faqAnswer" id="faqQuestion1">
|
||||
We try to make it that way ! The core the tool, that generate the keys is 99% the same as the well reviewed bitaddress.org. We only changed it to be able to generate address for different crypto-currencies.
|
||||
We think that having a unique generator for multiple currency lead to a much better reviewed tool for all than having a myriad of half backed generator.
|
||||
Changes made to this generator are available on Github in small and divided commits and thus are easy to review and reuse.
|
||||
Walletgenerator.net use the same security measure as its original. All-in-one html document, no ajax, no analytics, no external calls, no CDN that can inject anything they want. And trust us, we have seen some nasty things when reviewing some wallet generator.
|
||||
</p>
|
||||
|
||||
<h3 class="faqQuestion"><a class="faqLink" onclick="ninja.toggleFaqQuestion('faqQuestion2');">• Why use a paper wallet ?</a></h3>
|
||||
<p class="faqAnswer" id="faqQuestion2">
|
||||
Advantages of a paper wallet are multiple:<br/><br/>
|
||||
<span class="faqListBullet">⇒</span> They are not subject to malware and keylogger<br/>
|
||||
<span class="faqListBullet">⇒</span> You don’t rely on a third party’s honesty or capacity to protect your coins<br/>
|
||||
<span class="faqListBullet">⇒</span> You won't lose your coin when your device break
|
||||
</p>
|
||||
|
||||
<h3 class="faqQuestion"><a class="faqLink" onclick="ninja.toggleFaqQuestion('faqQuestion3');">• How to use a paper wallet ?</a></h3>
|
||||
<p class="faqAnswer" id="faqQuestion3">
|
||||
Once you have generated and printed a wallet, you can send coins to the public address, like for any wallet. Store your paper wallet securely. It contains everything that is needed to spend your funds. Consider using BIP38 to secure your paper wallet with a password.
|
||||
</p>
|
||||
|
||||
<h3 class="faqQuestion"><a class="faqLink" onclick="ninja.toggleFaqQuestion('faqQuestion4');">• How to spend the coin stored in a paper wallet ?</a></h3>
|
||||
<p class="faqAnswer" id="faqQuestion4">
|
||||
You will need to import your private key in a real client, that you can download from the currency website. The exact method to do that will depend on the client. If there is no integrated method, you can usually fall back to the debug console and use the command “importprivkey yourprivatekey“.
|
||||
</p>
|
||||
|
||||
<h3 class="faqQuestion"><a class="faqLink" onclick="ninja.toggleFaqQuestion('faqQuestion5');">• How walletgenerator.net is different than another wallet generator ?</a></h3>
|
||||
<p class="faqAnswer" id="faqQuestion5">
|
||||
It’s not that different. You will find another design for the paper wallet and some improvement here and there. The big difference is that this is a unique project for a lot of currencies, so more people can review it and check its safety.
|
||||
</p>
|
||||
|
||||
<h3 class="faqQuestion"><a class="faqLink" onclick="ninja.toggleFaqQuestion('faqQuestion6');">• Where is the https:// ?</a></h3>
|
||||
<p class="faqAnswer" id="faqQuestion6">
|
||||
There is none. The web hosting solution we currently use doesn't provide SSL support, so we would need to upgrade that. It should happen in the future, but remember that there is almost no point in doing that. You are not supposed to generate anything from the live website, and even if you do, as everything is client-side javascript, HTTPS won’t help you at all.
|
||||
</p>
|
||||
|
||||
<h3 class="faqQuestion"><a class="faqLink" onclick="ninja.toggleFaqQuestion('faqQuestion7');">• Can you add support for cryptocurrency XYZ ?</a></h3>
|
||||
<p class="faqAnswer" id="faqQuestion7">
|
||||
Absolutely ! To help us do that, you can provide us a high resolution logo, some sample of public address, the link to download a client, a very short amount of the currency to make some test. But keep in mind that there is some currency that we cannot support. If the developers made some change in the address format, we won’t hack the crypto core of the project and taking the risk to tamper the security of the others currencies. Please contact us using <a href="http://twitter.com/WalletGenerator" target="_blank">Twitter</a> or <a href="https://github.com/MichaelMure/WalletGenerator.net" target="_blank">Github</a>.
|
||||
</p>
|
||||
|
||||
<h3 class="faqQuestion"><a class="faqLink" onclick="ninja.toggleFaqQuestion('faqQuestion8');">• Why should I make a donation ?</a></h3>
|
||||
<p class="faqAnswer" id="faqQuestion8">
|
||||
Donations money are used to pay our hosting service provider, but it’ll also be used to make walletgenerator.net more secure as we plan to organize a CrowdCurity campain as soon as we get enough money to pay for it.
|
||||
</p>
|
||||
|
||||
<h3 class="faqQuestion"><a class="faqLink" onclick="ninja.toggleFaqQuestion('faqQuestion9');">• I found a bug, what shall I do ?</a></h3>
|
||||
<p class="faqAnswer" id="faqQuestion9">
|
||||
You can report bugs using GitHub. You can also contact us using our twitter account (<a href="http://twitter.com/WalletGenerator" target="_blank">@WalletGenerator</a>). Just try to explain clearly what is wrong and we will try to fix the bug as soon as possible.
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
@ -463,7 +483,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|||
</div>
|
||||
<div id="detailkeyarea">
|
||||
<div class="notes">
|
||||
<span id="detaillabelnote1">Your Private Key is a unique secret number that only you know. It can be encoded in a number of different formats. Below we show the Public Address and Public Key that corresponds to your Private Key as well as your Private Key in the most popular encoding formats (WIF, WIFC, HEX, B64, MINI).</span>
|
||||
<span id="detaillabelnote1">Your Private Key is a unique secret number that only you know. It can be encoded in a number of different formats. Below we show the Public Address and Public Key that corresponds to your Private Key as well as your Private Key in the most popular encoding formats (WIF, WIFC, HEX, B64).</span>
|
||||
<br /><br />
|
||||
</div>
|
||||
<div class="pubqr">
|
||||
|
@ -542,6 +562,20 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|||
<hr/>
|
||||
<h3>Release notes</h3>
|
||||
<p>
|
||||
07.2014 --
|
||||
<ul>
|
||||
<li>Fix a vulnerability that lead to the generation of less random wallet that normal on old browser. If you use a browser older than the mentionned version/date, we advise you to regenerate your wallets.
|
||||
<ul>
|
||||
<li>Firefox 21: may 2013</li>
|
||||
<li>Chrome 11: april 2011</li>
|
||||
<li>IE 11: october 2013</li>
|
||||
<li>Opera 14: july 2013</li>
|
||||
<li>Safari 3.1: march 2008</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>Added a Frequently Asked Question section on the main page</li>
|
||||
</ul>
|
||||
<p>
|
||||
06.2014 --
|
||||
<ul>
|
||||
<li>Add support for GlobalBoost, Fluttercoin, Guncoin, Birdcoin</li>
|
||||
|
|
|
@ -42,11 +42,14 @@ janin.currency = {
|
|||
// Update title depending on currency
|
||||
document.title = janin.currency.name() + "'s paper wallet generator";
|
||||
document.getElementById("siteTitle").alt = janin.currency.name() + " Paper Wallet Generator";
|
||||
|
||||
// Regenerate a new wallet when not expensive
|
||||
ninja.wallets.singlewallet.generateNewAddressAndKey();
|
||||
ninja.wallets.paperwallet.build(document.getElementById('paperpassphrase').value);
|
||||
ninja.wallets.brainwallet.view();
|
||||
|
||||
if(ninja.seeder.isDone())
|
||||
{
|
||||
// Regenerate a new wallet when not expensive
|
||||
ninja.wallets.singlewallet.generateNewAddressAndKey();
|
||||
ninja.wallets.paperwallet.build(document.getElementById('paperpassphrase').value);
|
||||
ninja.wallets.brainwallet.view();
|
||||
}
|
||||
|
||||
// Reset wallet tab when expensive or not applicable
|
||||
document.getElementById("bulktextarea").value = "";
|
||||
|
@ -71,7 +74,6 @@ janin.currency = {
|
|||
janin.doge.stop();
|
||||
janin.doge = null;
|
||||
}
|
||||
|
||||
},
|
||||
};
|
||||
|
||||
|
@ -94,11 +96,9 @@ janin.currencies = [
|
|||
janin.currency.createCurrency ("Fastcoin", 0x60, 0xe0, "8", "a" , "frxe8F7gQdiAVgy4mRXjpXH5vN1wyta1db"),
|
||||
janin.currency.createCurrency ("Feathercoin",0x0e, 0x8e, "5", "N" , "6dxAP6oacHsove5X2kZPpddcT1Am167YzC"),
|
||||
janin.currency.createCurrency ("Fluttercoin",0x23, 0xa3, "6", "R" , "FJioRLt3gLtqk3tUdMhwjAVo1sdWjRuwqt"),
|
||||
janin.currency.createCurrency ("Fuelcoin", 0x24, 0xa4, "6", "R" , ""),
|
||||
janin.currency.createCurrency ("GlobalBoost",0x26, 0xa6, "6", "R" , "GeXdH1WhzA7ayYim9sdCCQKcVukUq1W8LJ"),
|
||||
janin.currency.createCurrency ("Goodcoin", 0x26, 0xa6, "6", "R" , "GM3kAbQGaMVAYk8U3CrVGhSwz1hZaF6gVM"),
|
||||
janin.currency.createCurrency ("Gridcoin", 0x25, 0xa5, "6", "R" , "FyYkg3xhJVcVzMMw8JKfQaBxA9DAVhivq4"),
|
||||
janin.currency.createCurrency ("Guldencoin", 0x26, 0xa6, "6", "R" , ""),
|
||||
janin.currency.createCurrency ("Guncoin", 0x27, 0xa7, "6", "R" , "GwVej6c3tF9GqEdSKmwJiUDWtQVK2wY9fP"),
|
||||
janin.currency.createCurrency ("HTMLCoin", 0x1e, 0x9e, "6", "Q" , "DP4AVuekGEatNmpCL99m46k8THwS9yNVqy"),
|
||||
janin.currency.createCurrency ("Litecoin", 0x30, 0xb0, "6", "T" , "LiScnsyPcqsyxn1fx92BcFguryXcw4DgCy"),
|
||||
|
|
16
src/main.css
16
src/main.css
|
@ -22,6 +22,16 @@ body { font-family: Arial; background-image: url('images/diamonds.png'); height:
|
|||
.answer { padding: 0 15px 10px 25px; text-align: left; display: none; font-size: 80%; }
|
||||
.faq { border: 0; border-top: 1px solid #BFBFBF; }
|
||||
|
||||
#initBanner { position: relative; text-align: left; padding: 15px; background-color: white; border-bottom: 1px solid #bfbfbf; }
|
||||
#walletCommands { display: none; }
|
||||
#keyarea { display: none; }
|
||||
|
||||
#faqZone { text-align: left; padding: 10px 30px 30px 30px; }
|
||||
.faqQuestion { margin-left: 15px; }
|
||||
.faqAnswer { margin-left: 30px; display: none; }
|
||||
.faqListBullet { padding: 0 5px 0px 15px; }
|
||||
.faqLink { cursor: pointer; }
|
||||
|
||||
#btcaddress, #btcprivwif, #detailaddress, #detailaddresscomp, #detailprivwif, #detailprivwifcomp { font-family: monospace; font-size: 1.25em; }
|
||||
#seedpoolarea { display: none; }
|
||||
#seedpooldisplay { font-family: monospace; font-size: 1em; width: 640px; padding: 15px 5px; word-wrap: break-word; min-height: 98px; }
|
||||
|
@ -51,7 +61,7 @@ body { font-family: Arial; background-image: url('images/diamonds.png'); height:
|
|||
|
||||
h1 { margin: 0px; height: 91px; }
|
||||
|
||||
#keyarea { height: 250px; }
|
||||
#keyarea { height: 250px; border-bottom: 1px solid #bfbfbf; }
|
||||
#keyarea .pubaddress { float: none; display: block; padding: 0; height: auto; }
|
||||
#keyarea .label { text-decoration: none; }
|
||||
#keyarea .privwif { float: none; text-align: right; position: relative; padding: 0; }
|
||||
|
@ -59,10 +69,10 @@ h1 { margin: 0px; height: 91px; }
|
|||
#keyarea .qrcode_private { float: none; display: block; top: 0; text-align: right; padding: 13px 11px 11px 11px; }
|
||||
#keyarea .private { width: 30%; display: table-cell; }
|
||||
#keyarea .public { width: 30%; display: table-cell; }
|
||||
#singlearea { font-size: 90%; }
|
||||
#singlearea { font-size: 90%; display: block; }
|
||||
#singlesecret { position: relative; top: -130px; float: right; right: 200px; color: red; font-weight: bolder; font-size: 200%; }
|
||||
#singleshare { position: relative; top: -110px; float: left; left: 160px; color: green; font-weight: bolder; font-size: 200%; }
|
||||
#singlesafety { text-align: left; border-top: 1px solid #BFBFBF; position: relative; min-height: 500px; }
|
||||
#singlesafety { text-align: left; border-bottom: 1px solid #bfbfbf; position: relative; min-height: 500px; }
|
||||
|
||||
#singlesafety p { font-size: 13px; }
|
||||
|
||||
|
|
|
@ -13,15 +13,18 @@
|
|||
lastInputTime: new Date().getTime(),
|
||||
seedPoints: [],
|
||||
|
||||
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;
|
||||
var timeStamp = new Date().getTime();
|
||||
// seeding is over now we generate and display the address
|
||||
// seeding is over now we generate and display the address
|
||||
if (ninja.seeder.seedCount == ninja.seeder.seedLimit) {
|
||||
ninja.seeder.seedCount++;
|
||||
ninja.wallets.singlewallet.open();
|
||||
document.getElementById("generate").style.display = "none";
|
||||
ninja.wallets.singlewallet.open();
|
||||
document.getElementById("menu").style.visibility = "visible";
|
||||
ninja.seeder.removePoints();
|
||||
}
|
||||
|
@ -42,7 +45,7 @@
|
|||
// seeding is over now we generate and display the address
|
||||
if (ninja.seeder.seedCount == ninja.seeder.seedLimit) {
|
||||
ninja.seeder.seedCount++;
|
||||
ninja.wallets.singlewallet.open();
|
||||
ninja.wallets.singlewallet.open();
|
||||
document.getElementById("generate").style.display = "none";
|
||||
document.getElementById("menu").style.visibility = "visible";
|
||||
ninja.seeder.removePoints();
|
||||
|
@ -62,17 +65,9 @@
|
|||
},
|
||||
|
||||
showPool: function () {
|
||||
var poolHex;
|
||||
if (SecureRandom.poolCopyOnInit != null) {
|
||||
poolHex = Crypto.util.bytesToHex(SecureRandom.poolCopyOnInit);
|
||||
document.getElementById("seedpool").innerHTML = poolHex;
|
||||
document.getElementById("seedpooldisplay").innerHTML = poolHex;
|
||||
}
|
||||
else {
|
||||
poolHex = Crypto.util.bytesToHex(SecureRandom.pool);
|
||||
document.getElementById("seedpool").innerHTML = poolHex;
|
||||
document.getElementById("seedpooldisplay").innerHTML = poolHex;
|
||||
}
|
||||
var poolHex = Crypto.util.bytesToHex(SecureRandom.pool);
|
||||
document.getElementById("seedpool").innerHTML = poolHex;
|
||||
document.getElementById("seedpooldisplay").innerHTML = poolHex;
|
||||
document.getElementById("mousemovelimit").innerHTML = (ninja.seeder.seedLimit - ninja.seeder.seedCount);
|
||||
},
|
||||
|
||||
|
@ -219,7 +214,6 @@ ninja.envSecurityCheck = function() {
|
|||
default:
|
||||
}
|
||||
document.getElementById('envSecurityCheck').innerHTML = innerHTML;
|
||||
document.getElementById('seedEnvSecurityCheck').innerHTML = innerHTML;
|
||||
};
|
||||
|
||||
ninja.browserSecurityCheck = function() {
|
||||
|
@ -230,7 +224,6 @@ ninja.browserSecurityCheck = function() {
|
|||
innerHTML = '<span style="color: #990000;">Your browser does NOT support window.crypto.getRandomValues(), which is important for generating the most secure random numbers possible. Please use a more modern browser.</span>';
|
||||
}
|
||||
document.getElementById('browserSecurityCheck').innerHTML = innerHTML;
|
||||
document.getElementById('seedBrowserSecurityCheck').innerHTML = innerHTML;
|
||||
}
|
||||
|
||||
ninja.getQueryString = function () {
|
||||
|
@ -273,4 +266,9 @@ ninja.foreachSerialized = function (collection, whatToDo, onComplete) {
|
|||
ninja.forSerialized(0, keys.length, function (i, callback) {
|
||||
whatToDo(keys[i], callback);
|
||||
}, onComplete);
|
||||
};
|
||||
|
||||
ninja.toggleFaqQuestion = function (elementId) {
|
||||
var answerDiv = document.getElementById(elementId);
|
||||
answerDiv.style.display = answerDiv.style.display == "block" ? "none" : "block";
|
||||
};
|
|
@ -8,12 +8,11 @@ if (ninja.getQueryString()["showseedpool"] == "true" || ninja.getQueryString()["
|
|||
document.getElementById("seedpoolarea").style.display = "block";
|
||||
}
|
||||
// change currency
|
||||
janin.currency.useCurrency(4);
|
||||
if (ninja.getQueryString()["currency"] != undefined) {
|
||||
for(i = 0; i < janin.currencies.length; i++) {
|
||||
if (janin.currencies[i].name.toLowerCase() == ninja.getQueryString()["currency"].toLowerCase())
|
||||
janin.currency.useCurrency(i);
|
||||
}
|
||||
var currency = ninja.getQueryString()["currency"] || "bitcoin";
|
||||
currency = currency.toLowerCase();
|
||||
for(i = 0; i < janin.currencies.length; i++) {
|
||||
if (janin.currencies[i].name.toLowerCase() == currency)
|
||||
janin.currency.useCurrency(i);
|
||||
}
|
||||
// populate currency dropdown list
|
||||
var select = document.getElementById("currency");
|
||||
|
|
|
@ -3,8 +3,11 @@ ninja.wallets.singlewallet = {
|
|||
if (document.getElementById("btcaddress").innerHTML == "") {
|
||||
ninja.wallets.singlewallet.generateNewAddressAndKey();
|
||||
}
|
||||
document.getElementById("singlearea").style.display = "block";
|
||||
document.getElementById("walletCommands").style.display = "block";
|
||||
document.getElementById("keyarea").style.display = "block";
|
||||
document.getElementById("currencyddl").style.display = "block";
|
||||
document.getElementById("singlearea").style.display = "block";
|
||||
document.getElementById("initBanner").style.display = "none";
|
||||
},
|
||||
|
||||
close: function () {
|
||||
|
|
|
@ -17,7 +17,6 @@
|
|||
sr.state;
|
||||
sr.pool;
|
||||
sr.pptr;
|
||||
sr.poolCopyOnInit;
|
||||
|
||||
// Pool size must be a multiple of 4 and greater than 32.
|
||||
// An array of bytes the size of the pool will be passed to init()
|
||||
|
@ -53,13 +52,15 @@
|
|||
}
|
||||
|
||||
sr.getByte = function () {
|
||||
if(!ninja.seeder.isDone()) {
|
||||
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
|
||||
sr.state.init(sr.pool);
|
||||
sr.poolCopyOnInit = [];
|
||||
for (sr.pptr = 0; sr.pptr < sr.pool.length; ++sr.pptr)
|
||||
sr.poolCopyOnInit[sr.pptr] = sr.pool[sr.pptr];
|
||||
sr.pptr = 0;
|
||||
}
|
||||
// TODO: allow reseeding after first request
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 520 KiB |
Binary file not shown.
Before Width: | Height: | Size: 480 KiB |
Loading…
Add table
Reference in a new issue