aboutsummaryrefslogtreecommitdiff
path: root/src/js/jsbip39.js
Commit message (Collapse)AuthorAgeFilesLines
* Raw entropy is interpreted as binaryIan Coleman2019-11-111-0/+6
| | | | | | | | | | For example, using abandon abandon ability becomes 8 zeros but how does the entropy field know it's hex and not binary? It assumes the worst-case scenario of binary, so entropy should be shown in binary. Perhaps if entropy type is explicitly selected in the future this can be changed back to using hex. But while magical assumptions exist, binary it must be.
* Allow converting mnemonic back to raw entropy valueKevin Cernekee2018-10-281-15/+36
| | | | | | | | | | | | | | | | | | | | | Currently, this sequence produces an unexpected result: 1) Navigate to bip39-standalone.html 2) Paste a known-good mnemonic into the BIP39 Mnemonic field 3) Select "Show entropy details" This will erase the BIP39 Mnemonic field and most of the derived address/key information. It shows an empty Entropy field, and zeroes for Event Count, Bits Per Event, Raw Entropy Words, Total Bits, etc. However, it will show valid Word Indexes and BIP39 Seed. The way to fix it is to convert the mnemonic back into a raw entropy value and populate it in DOM.entropy, so that everything stays consistent. This will only happen if the mnemonic is manually entered by the user, not if phraseChanged() is triggered by hand-editing the entropy value.
* Korean uses ascii spaces, not ideographic spacesIan Coleman2018-05-081-1/+1
|
* Update jsbip39.js to latest versionIan Coleman2018-03-121-9/+2
|
* jsbip39 updated - fixes Japanese languageIan Coleman2017-03-031-2/+3
|
* jsbip39 updated to latest versionIan Coleman2016-11-071-1/+1
|
* jsBip39 and wordlists updated with new languagesIan Coleman2016-10-201-3/+17
|
* Normalize whitespace before using mnemonic. Fixes #19.Chris Moore2016-03-191-1/+1
|
* jsbip39 updated and asmcrypto replaced with sjclIan Coleman2014-09-291-23/+56
|
* UTF-8 strings handled correctly by asmCryptoIan Coleman2014-09-271-212/+2
|
* mnemonic.normalizeString method made publicIan Coleman2014-09-271-3/+3
|
* Move from private repoIan Coleman2014-09-181-0/+386