X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=bip39-standalone.html;h=dfeaa651ed6b0e921fe44bc9e76bf78be2fc9271;hb=30c9e79de32e529e9b87b836a1bc808e6dbbc646;hp=5ef69eacea5452a9bf741784ac912c3c60fcfd9d;hpb=bffa8eda540af07f253259b155c5b23aa54d8d57;p=perso%2FImmae%2FProjets%2FCryptomonnaies%2FBIP39.git diff --git a/bip39-standalone.html b/bip39-standalone.html index 5ef69ea..dfeaa65 100644 --- a/bip39-standalone.html +++ b/bip39-standalone.html @@ -70,7 +70,16 @@
- + @@ -83,6 +92,12 @@
+
+ +
+ +
+
@@ -14511,7 +14526,7 @@ var Mnemonic = function(language) { self.toSeed = function(mnemonic, passphrase) { passphrase = passphrase || ''; - mnemonic = self.normalizeString(mnemonic) + mnemonic = self.normalizeString(mnemonic).split(' ').filter(function(x) { return x.length; }).join(' '); passphrase = self.normalizeString(passphrase) passphrase = "mnemonic" + passphrase; var mnemonicBits = sjcl.codec.utf8String.toBits(mnemonic); @@ -14592,6 +14607,7 @@ var Mnemonic = function(language) {