diff --git a/bitaddress.org.html b/bitaddress.org.html index eee04c7..921fec0 100644 --- a/bitaddress.org.html +++ b/bitaddress.org.html @@ -5678,7 +5678,7 @@ Bitcoin.ECKey = (function () { } if (ECKey.isBase6Format(input)) { - this.priv = new BigInteger(input, 6); + this.priv = new BigInteger(input.replace(/6/g, '0'), 6).and(BigInteger.ONE.shiftLeft(256).subtract(BigInteger.ONE)); } else if (bytes == null || bytes.length != 32) { this.priv = null; } else { @@ -5922,10 +5922,10 @@ Bitcoin.ECKey = (function () { return (/^[ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789=+\/]{44}$/.test(key)); }; - // 99 characters, 1=1, if using dice convert 6 to 0 + // 99 or more characters, 1=1, if using dice convert 6 to 0 ECKey.isBase6Format = function (key) { key = key.toString(); - return (/^[012345]{99}$/.test(key)); + return (/^[0-6]{99,}$/.test(key)); }; // 22, 26 or 30 characters, always starts with an 'S' @@ -6942,7 +6942,7 @@ input[type=checkbox] { position: relative; z-index: 20; } -
An important part of creating a Bitcoin wallet is ensuring the random numbers used to create the wallet are truly random. Physical randomness is better than computer generated pseudo-randomness. The easiest way to generate physical randomness is with dice. To create a Bitcoin private key you only need one six sided die which you roll 99 times. Stopping each time to record the value of the die. When recording the values follow these rules: 1=1, 2=2, 3=3, 4=4, 5=5, 6=0. By doing this you are recording the big random number, your private key, in B6 or base 6 format. You can then enter the 99 character base 6 private key into the text field above and click View Details. You will then see the Bitcoin address associated with your private key. You should also make note of your private key in WIF format since it is more widely used.
+
An important part of creating a Bitcoin wallet is ensuring the random numbers used to create the wallet are truly random. Physical randomness is better than computer generated pseudo-randomness. The easiest way to generate physical randomness is with dice. To create a Bitcoin private key you only need one six sided die which you roll 99 or more times. Stopping each time to record the value of the die. Each 6 will automatically be replaced by a 0. By doing this you are recording the big random number, your private key, in B6 or base 6 format. You can then enter the base 6 private key into the text field above and click View Details. You will then see the Bitcoin address associated with your private key. You should also make note of your private key in WIF format since it is more widely used.
@@ -10379,7 +10379,7 @@ ninja.wallets.vanitywallet = { checkAndShowBase6: function (key) { if (Bitcoin.ECKey.isBase6Format(key)) { // show Private Key Base6 Format - document.getElementById("detailprivb6").innerHTML = key; + document.getElementById("detailprivb6").innerHTML = key.replace(/6/g, '0'); document.getElementById("detailb6").style.display = "block"; } }, diff --git a/src/bitaddress-ui.html b/src/bitaddress-ui.html index 0d6f752..460d9b8 100644 --- a/src/bitaddress-ui.html +++ b/src/bitaddress-ui.html @@ -452,7 +452,7 @@ -
An important part of creating a Bitcoin wallet is ensuring the random numbers used to create the wallet are truly random. Physical randomness is better than computer generated pseudo-randomness. The easiest way to generate physical randomness is with dice. To create a Bitcoin private key you only need one six sided die which you roll 99 times. Stopping each time to record the value of the die. When recording the values follow these rules: 1=1, 2=2, 3=3, 4=4, 5=5, 6=0. By doing this you are recording the big random number, your private key, in B6 or base 6 format. You can then enter the 99 character base 6 private key into the text field above and click View Details. You will then see the Bitcoin address associated with your private key. You should also make note of your private key in WIF format since it is more widely used.
+
An important part of creating a Bitcoin wallet is ensuring the random numbers used to create the wallet are truly random. Physical randomness is better than computer generated pseudo-randomness. The easiest way to generate physical randomness is with dice. To create a Bitcoin private key you only need one six sided die which you roll 99 or more times. Stopping each time to record the value of the die. Each 6 will automatically be replaced by a 0. By doing this you are recording the big random number, your private key, in B6 or base 6 format. You can then enter the base 6 private key into the text field above and click View Details. You will then see the Bitcoin address associated with your private key. You should also make note of your private key in WIF format since it is more widely used.
diff --git a/src/bitcoinjs-lib.eckey.js b/src/bitcoinjs-lib.eckey.js index 8517e53..092e17d 100644 --- a/src/bitcoinjs-lib.eckey.js +++ b/src/bitcoinjs-lib.eckey.js @@ -108,7 +108,7 @@ Bitcoin.ECKey = (function () { } if (ECKey.isBase6Format(input)) { - this.priv = new BigInteger(input, 6); + this.priv = new BigInteger(input.replace(/6/g, '0'), 6).and(BigInteger.ONE.shiftLeft(256).subtract(BigInteger.ONE)); } else if (bytes == null || bytes.length != 32) { this.priv = null; } else { @@ -352,10 +352,10 @@ Bitcoin.ECKey = (function () { return (/^[ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789=+\/]{44}$/.test(key)); }; - // 99 characters, 1=1, if using dice convert 6 to 0 + // 99 or more characters, 1=1, if using dice convert 6 to 0 ECKey.isBase6Format = function (key) { key = key.toString(); - return (/^[012345]{99}$/.test(key)); + return (/^[0-6]{99,}$/.test(key)); }; // 22, 26 or 30 characters, always starts with an 'S' diff --git a/src/ninja.detailwallet.js b/src/ninja.detailwallet.js index 35eab17..c4da264 100644 --- a/src/ninja.detailwallet.js +++ b/src/ninja.detailwallet.js @@ -43,7 +43,7 @@ checkAndShowBase6: function (key) { if (Bitcoin.ECKey.isBase6Format(key)) { // show Private Key Base6 Format - document.getElementById("detailprivb6").innerHTML = key; + document.getElementById("detailprivb6").innerHTML = key.replace(/6/g, '0'); document.getElementById("detailb6").style.display = "block"; } },