aboutsummaryrefslogtreecommitdiff
path: root/src/js
diff options
context:
space:
mode:
authorIan Coleman <ian@iancoleman.io>2019-12-17 13:42:44 +1100
committerIan Coleman <ian@iancoleman.io>2019-12-17 14:10:45 +1100
commit516c16d721db88b4b2c39964e2d5e8f6310c7bff (patch)
treeca4d1e8742d46715892adabe5003396819d7d12b /src/js
parentf7e9fdf002e7355a122a86a8407b470b56bf3f59 (diff)
downloadBIP39-516c16d721db88b4b2c39964e2d5e8f6310c7bff.tar.gz
BIP39-516c16d721db88b4b2c39964e2d5e8f6310c7bff.tar.zst
BIP39-516c16d721db88b4b2c39964e2d5e8f6310c7bff.zip
Allow manual override for entropy type
Diffstat (limited to 'src/js')
-rw-r--r--src/js/entropy.js17
-rw-r--r--src/js/index.js19
2 files changed, 27 insertions, 9 deletions
diff --git a/src/js/entropy.js b/src/js/entropy.js
index a709c78..a4c7622 100644
--- a/src/js/entropy.js
+++ b/src/js/entropy.js
@@ -67,9 +67,9 @@ window.Entropy = new (function() {
67 return ints; 67 return ints;
68 } 68 }
69 69
70 this.fromString = function(rawEntropyStr) { 70 this.fromString = function(rawEntropyStr, baseStr) {
71 // Find type of entropy being used (binary, hex, dice etc) 71 // Find type of entropy being used (binary, hex, dice etc)
72 var base = getBase(rawEntropyStr); 72 var base = getBase(rawEntropyStr, baseStr);
73 // Convert dice to base6 entropy (ie 1-6 to 0-5) 73 // Convert dice to base6 entropy (ie 1-6 to 0-5)
74 // This is done by changing all 6s to 0s 74 // This is done by changing all 6s to 0s
75 if (base.str == "dice") { 75 if (base.str == "dice") {
@@ -166,13 +166,14 @@ window.Entropy = new (function() {
166 return s; 166 return s;
167 } 167 }
168 168
169 function getBase(str) { 169 function getBase(str, baseStr) {
170 // Need to get the lowest base for the supplied entropy. 170 // Need to get the lowest base for the supplied entropy.
171 // This prevents interpreting, say, dice rolls as hexadecimal. 171 // This prevents interpreting, say, dice rolls as hexadecimal.
172 var binaryMatches = matchers.binary(str); 172 var binaryMatches = matchers.binary(str);
173 var hexMatches = matchers.hex(str); 173 var hexMatches = matchers.hex(str);
174 var autodetect = baseStr === undefined;
174 // Find the lowest base that can be used, whilst ignoring any irrelevant chars 175 // Find the lowest base that can be used, whilst ignoring any irrelevant chars
175 if (binaryMatches.length == hexMatches.length && hexMatches.length > 0) { 176 if ((binaryMatches.length == hexMatches.length && hexMatches.length > 0 && autodetect) || baseStr === "binary") {
176 var ints = binaryMatches.map(function(i) { return parseInt(i, 2) }); 177 var ints = binaryMatches.map(function(i) { return parseInt(i, 2) });
177 return { 178 return {
178 ints: ints, 179 ints: ints,
@@ -183,7 +184,7 @@ window.Entropy = new (function() {
183 } 184 }
184 } 185 }
185 var cardMatches = matchers.card(str); 186 var cardMatches = matchers.card(str);
186 if (cardMatches.length >= hexMatches.length / 2) { 187 if ((cardMatches.length >= hexMatches.length / 2 && autodetect) || baseStr === "card") {
187 var ints = convertCardsToInts(cardMatches); 188 var ints = convertCardsToInts(cardMatches);
188 return { 189 return {
189 ints: ints, 190 ints: ints,
@@ -194,7 +195,7 @@ window.Entropy = new (function() {
194 } 195 }
195 } 196 }
196 var diceMatches = matchers.dice(str); 197 var diceMatches = matchers.dice(str);
197 if (diceMatches.length == hexMatches.length && hexMatches.length > 0) { 198 if ((diceMatches.length == hexMatches.length && hexMatches.length > 0 && autodetect) || baseStr === "dice") {
198 var ints = diceMatches.map(function(i) { return parseInt(i) }); 199 var ints = diceMatches.map(function(i) { return parseInt(i) });
199 return { 200 return {
200 ints: ints, 201 ints: ints,
@@ -205,7 +206,7 @@ window.Entropy = new (function() {
205 } 206 }
206 } 207 }
207 var base6Matches = matchers.base6(str); 208 var base6Matches = matchers.base6(str);
208 if (base6Matches.length == hexMatches.length && hexMatches.length > 0) { 209 if ((base6Matches.length == hexMatches.length && hexMatches.length > 0 && autodetect) || baseStr === "base 6") {
209 var ints = base6Matches.map(function(i) { return parseInt(i) }); 210 var ints = base6Matches.map(function(i) { return parseInt(i) });
210 return { 211 return {
211 ints: ints, 212 ints: ints,
@@ -216,7 +217,7 @@ window.Entropy = new (function() {
216 } 217 }
217 } 218 }
218 var base10Matches = matchers.base10(str); 219 var base10Matches = matchers.base10(str);
219 if (base10Matches.length == hexMatches.length && hexMatches.length > 0) { 220 if ((base10Matches.length == hexMatches.length && hexMatches.length > 0 && autodetect) || baseStr === "base 10") {
220 var ints = base10Matches.map(function(i) { return parseInt(i) }); 221 var ints = base10Matches.map(function(i) { return parseInt(i) });
221 return { 222 return {
222 ints: ints, 223 ints: ints,
diff --git a/src/js/index.js b/src/js/index.js
index 5fb0c47..3db0a31 100644
--- a/src/js/index.js
+++ b/src/js/index.js
@@ -16,6 +16,7 @@
16 var showQr = false; 16 var showQr = false;
17 var litecoinUseLtub = true; 17 var litecoinUseLtub = true;
18 18
19 var entropyTypeAutoDetect = true;
19 var entropyChangeTimeoutEvent = null; 20 var entropyChangeTimeoutEvent = null;
20 var phraseChangeTimeoutEvent = null; 21 var phraseChangeTimeoutEvent = null;
21 var rootKeyChangedTimeoutEvent = null; 22 var rootKeyChangedTimeoutEvent = null;
@@ -32,6 +33,7 @@
32 DOM.entropy = $(".entropy"); 33 DOM.entropy = $(".entropy");
33 DOM.entropyFiltered = DOM.entropyContainer.find(".filtered"); 34 DOM.entropyFiltered = DOM.entropyContainer.find(".filtered");
34 DOM.entropyType = DOM.entropyContainer.find(".type"); 35 DOM.entropyType = DOM.entropyContainer.find(".type");
36 DOM.entropyTypeInputs = DOM.entropyContainer.find("input[name='entropy-type']");
35 DOM.entropyCrackTime = DOM.entropyContainer.find(".crack-time"); 37 DOM.entropyCrackTime = DOM.entropyContainer.find(".crack-time");
36 DOM.entropyEventCount = DOM.entropyContainer.find(".event-count"); 38 DOM.entropyEventCount = DOM.entropyContainer.find(".event-count");
37 DOM.entropyBits = DOM.entropyContainer.find(".bits"); 39 DOM.entropyBits = DOM.entropyContainer.find(".bits");
@@ -128,6 +130,7 @@
128 DOM.useEntropy.on("change", setEntropyVisibility); 130 DOM.useEntropy.on("change", setEntropyVisibility);
129 DOM.entropy.on("input", delayedEntropyChanged); 131 DOM.entropy.on("input", delayedEntropyChanged);
130 DOM.entropyMnemonicLength.on("change", entropyChanged); 132 DOM.entropyMnemonicLength.on("change", entropyChanged);
133 DOM.entropyTypeInputs.on("change", entropyTypeChanged);
131 DOM.phrase.on("input", delayedPhraseChanged); 134 DOM.phrase.on("input", delayedPhraseChanged);
132 DOM.passphrase.on("input", delayedPhraseChanged); 135 DOM.passphrase.on("input", delayedPhraseChanged);
133 DOM.generate.on("click", generateClicked); 136 DOM.generate.on("click", generateClicked);
@@ -330,6 +333,11 @@
330 } 333 }
331 } 334 }
332 335
336 function entropyTypeChanged() {
337 entropyTypeAutoDetect = false;
338 entropyChanged();
339 }
340
333 function delayedRootKeyChanged() { 341 function delayedRootKeyChanged() {
334 // Warn if there is an existing mnemonic or passphrase. 342 // Warn if there is an existing mnemonic or passphrase.
335 if (DOM.phrase.val().length > 0 || DOM.passphrase.val().length > 0) { 343 if (DOM.phrase.val().length > 0 || DOM.passphrase.val().length > 0) {
@@ -1551,7 +1559,14 @@
1551 // Get entropy value 1559 // Get entropy value
1552 var entropyStr = DOM.entropy.val(); 1560 var entropyStr = DOM.entropy.val();
1553 // Work out minimum base for entropy 1561 // Work out minimum base for entropy
1554 var entropy = Entropy.fromString(entropyStr); 1562 var entropy = null;
1563 if (entropyTypeAutoDetect) {
1564 entropy = Entropy.fromString(entropyStr);
1565 }
1566 else {
1567 let base = DOM.entropyTypeInputs.filter(":checked").val();
1568 entropy = Entropy.fromString(entropyStr, base);
1569 }
1555 if (entropy.binaryStr.length == 0) { 1570 if (entropy.binaryStr.length == 0) {
1556 return; 1571 return;
1557 } 1572 }
@@ -1632,6 +1647,8 @@
1632 console.log(e); 1647 console.log(e);
1633 } 1648 }
1634 var entropyTypeStr = getEntropyTypeStr(entropy); 1649 var entropyTypeStr = getEntropyTypeStr(entropy);
1650 DOM.entropyTypeInputs.attr("checked", false);
1651 DOM.entropyTypeInputs.filter("[value='" + entropyTypeStr + "']").attr("checked", true);
1635 var wordCount = Math.floor(numberOfBits / 32) * 3; 1652 var wordCount = Math.floor(numberOfBits / 32) * 3;
1636 var bitsPerEvent = entropy.bitsPerEvent.toFixed(2); 1653 var bitsPerEvent = entropy.bitsPerEvent.toFixed(2);
1637 var spacedBinaryStr = addSpacesEveryElevenBits(entropy.binaryStr); 1654 var spacedBinaryStr = addSpacesEveryElevenBits(entropy.binaryStr);