python-mnemonic icon indicating copy to clipboard operation
python-mnemonic copied to clipboard

:snake: Mnemonic code for generating deterministic keys, BIP39

Results 7 python-mnemonic issues
Sort by recently updated
recently updated
newest added

i added some code for read wordlist from specefic file out of the package

Hello @trezor's team, I was reading BIPS39 and got into this project as I wanted to fully understand it - at an implementation level. While doing so, I found some...

[vectors.json](https://github.com/trezor/python-mnemonic/blob/master/vectors.json) only contains English wordlists. Considering this is the [reference implementation](https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki#reference-implementation) it would be handy to have a reference set of tests. There are [Japanese test vectors listed in the...

-Simple and common Turkish words. -Only words with 4-8 letters. -The first 4 letters are unique among all words. -The letters (â,î,û,ô) used in Turkish are considered equal to (a,e,u/ü,o/ö)....

ADD russian.txt to wordlist

I've created the following code: `mnemonic = Mnemonic(args.language)` `words = mnemonic.generate(args.strength)` `entropy = mnemonic.to_entropy(words)` Both language and strength are passed from the command line arguments. `to_entropy()` method fails with the...

Hi, It was quite unintuitive to find this repo after finding this great project on pypi. I think you should: 1. add a link to this repo in the pypi...