X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=bip39-standalone.html;h=a373d6aa2cdd3bebc51dc636685286e0209467fd;hb=87ad2c6e4c7987320d8ce147fe9310b702c5deea;hp=5993b86deaeb00886bd0a99997dd424b41335235;hpb=d737abf6809622228faf7d5fe54101e2d87d72a4;p=perso%2FImmae%2FProjets%2FCryptomonnaies%2FBIP39.git diff --git a/bip39-standalone.html b/bip39-standalone.html index 5993b86..a373d6a 100644 --- a/bip39-standalone.html +++ b/bip39-standalone.html @@ -47,7 +47,7 @@ .phrase { word-break: keep-all; } - .strength { + .generate-container .strength { /* override mobile width from bootstrap */ width: auto!important; display: inline-block; @@ -58,6 +58,29 @@ .monospace { font-family: monospace; } + .entropy-container .filtered, + .entropy-container .binary { + word-wrap: break-word; + } + .entropy-container li { + padding-bottom: 5px; + } + .card-suit { + font-size: 19px; + line-height: 0; + } + .card-suit.club { + color: #009F00; + } + .card-suit.diamond { + color: #3D5DC4; + } + .card-suit.heart { + color: #F00; + } + .card-suit.spade { + color: #000; + } @@ -69,12 +92,14 @@

Mnemonic

-
-
-

You can enter an existing BIP39 mnemonic, or generate a new random one. Typing your own twelve words will probably not work how you expect, since the words require a particular structure (the last word is a checksum)

-

For more info see the BIP39 spec

-
+
+
+

You can enter an existing BIP39 mnemonic, or generate a new random one. Typing your own twelve words will probably not work how you expect, since the words require a particular structure (the last word is a checksum)

+

For more info see the BIP39 spec

+
+
+
@@ -96,7 +121,76 @@
+ +
+
+
+ +
+
+
English @@ -226,19 +320,21 @@
- +

- Use path m/0'/0. - For more info see the Hive Wallet homepage + m/44'/0'/0' generates extended keys for import / export. +

+

+ m/44'/0'/1' to generate the next account. Continue incrementing for more accounts (most use a single account). +

+

+ m/44'/0'/0'/0 to generate public addresses. +

+

+ m/44'/0'/0'/1 to generate change addresses.

-
-
-
- -

- Use path m/44'/0'/0'/0. For more info see the Mycelium Wallet homepage

@@ -248,6 +344,8 @@

Use path m/0'/0' with hardened addresses. +

+

For more info see the Bitcoin Core BIP32 implementation

@@ -257,7 +355,10 @@

Use path m/44'/0'/0'. - Only enter the xpub extended key into block explorer search fields, never the xpriv key. + Only enter the xpub extended key into block explorer search fields, never the xprv key. +

+

+ Supported by blockchain.info.

@@ -315,11 +416,11 @@ -     -     -     -     -     +      +      +      +      +     
@@ -357,6 +458,24 @@ but be careful - it can be easy to make mistakes if you don't know what you're doing

+

Entropy

+

+ Entropy values must be sourced from a + strong source of randomness. + This means flipping a fair coin, rolling a fair dice, noise measurements etc. Do NOT use + phrases from books, lyrics from songs, your birthday or steet address, keyboard mashing, or anything you think + is random, because chances are overwhelming that it isn't random enough for the needs of this tool. +

+

+ The random mnemonic generator on this page uses a + cryptographically secure random number generator, + and can generally be trusted more than your own intuition about randomness. + If cryptographic randomness isn't available in your browser, this page will show a warning and will not generate + random mnemonics. +

+

+ You are not a good source of entropy. +

@@ -16045,7 +16164,7 @@ var Mnemonic = function(language) { self.check = function(mnemonic) { var mnemonic = self.splitWords(mnemonic); - if (mnemonic.length % 3 > 0) { + if (mnemonic.length == 0 || mnemonic.length % 3 > 0) { return false } // idx = map(lambda x: bin(self.wordlist.index(x))[2:].zfill(11), mnemonic) @@ -16169,231 +16288,2299 @@ var Mnemonic = function(language) { } - + + +