mirror of
https://github.com/OneKeyHQ/bip39.git
synced 2026-04-18 16:32:18 +00:00
Support for optional passphrase in offline page
This commit is contained in:
@@ -73,6 +73,12 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="passphrase" class="col-sm-2 control-label">BIP39 Passphrase (optional)</label>
|
||||||
|
<div class="col-sm-10">
|
||||||
|
<textarea id="passphrase" class="passphrase form-control"></textarea>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="root-key" class="col-sm-2 control-label">BIP32 Root Key</label>
|
<label for="root-key" class="col-sm-2 control-label">BIP32 Root Key</label>
|
||||||
<div class="col-sm-10">
|
<div class="col-sm-10">
|
||||||
@@ -22775,6 +22781,7 @@ WORDLISTS = {
|
|||||||
|
|
||||||
var DOM = {};
|
var DOM = {};
|
||||||
DOM.phrase = $(".phrase");
|
DOM.phrase = $(".phrase");
|
||||||
|
DOM.passphrase = $(".passphrase");
|
||||||
DOM.generate = $(".generate");
|
DOM.generate = $(".generate");
|
||||||
DOM.rootKey = $(".root-key");
|
DOM.rootKey = $(".root-key");
|
||||||
DOM.extendedPrivKey = $(".extended-priv-key");
|
DOM.extendedPrivKey = $(".extended-priv-key");
|
||||||
@@ -22800,6 +22807,7 @@ WORDLISTS = {
|
|||||||
function init() {
|
function init() {
|
||||||
// Events
|
// Events
|
||||||
DOM.phrase.on("keyup", delayedPhraseChanged);
|
DOM.phrase.on("keyup", delayedPhraseChanged);
|
||||||
|
DOM.passphrase.on("keyup", delayedPhraseChanged);
|
||||||
DOM.generate.on("click", generateClicked);
|
DOM.generate.on("click", generateClicked);
|
||||||
DOM.more.on("click", showMore);
|
DOM.more.on("click", showMore);
|
||||||
DOM.bip32path.on("keyup", bip32Changed);
|
DOM.bip32path.on("keyup", bip32Changed);
|
||||||
@@ -22832,6 +22840,7 @@ WORDLISTS = {
|
|||||||
hideValidationError();
|
hideValidationError();
|
||||||
// Get the mnemonic phrase
|
// Get the mnemonic phrase
|
||||||
var phrase = DOM.phrase.val();
|
var phrase = DOM.phrase.val();
|
||||||
|
var passphrase = DOM.passphrase.val();
|
||||||
var errorText = findPhraseErrors(phrase);
|
var errorText = findPhraseErrors(phrase);
|
||||||
if (errorText) {
|
if (errorText) {
|
||||||
showValidationError(errorText);
|
showValidationError(errorText);
|
||||||
@@ -22844,7 +22853,7 @@ WORDLISTS = {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
// Calculate and display
|
// Calculate and display
|
||||||
calcBip32Seed(phrase, derivationPath);
|
calcBip32Seed(phrase, passphrase, derivationPath);
|
||||||
displayBip32Info();
|
displayBip32Info();
|
||||||
hidePending();
|
hidePending();
|
||||||
}
|
}
|
||||||
@@ -22924,8 +22933,8 @@ WORDLISTS = {
|
|||||||
return words;
|
return words;
|
||||||
}
|
}
|
||||||
|
|
||||||
function calcBip32Seed(phrase, path) {
|
function calcBip32Seed(phrase, passphrase, path) {
|
||||||
var seed = mnemonic.toSeed(phrase);
|
var seed = mnemonic.toSeed(phrase, passphrase);
|
||||||
var seedHash = Bitcoin.crypto.sha256(seed).toString("hex");
|
var seedHash = Bitcoin.crypto.sha256(seed).toString("hex");
|
||||||
bip32RootKey = Bitcoin.HDNode.fromSeedHex(seedHash, network);
|
bip32RootKey = Bitcoin.HDNode.fromSeedHex(seedHash, network);
|
||||||
bip32ExtendedKey = bip32RootKey;
|
bip32ExtendedKey = bip32RootKey;
|
||||||
|
|||||||
Reference in New Issue
Block a user