Fixed BIP39 implementation

This commit is contained in:
Sun Knudsen 2021-03-07 05:46:55 -05:00
parent 2af2b79f9d
commit 42a47e49bb
No known key found for this signature in database
GPG key ID: 1FA767862BBD1305
9 changed files with 60 additions and 2093 deletions

View file

@ -0,0 +1,10 @@
from sys import exit
from mnemonic import Mnemonic
mnemo = Mnemonic("english")
words = mnemo.generate(strength=256)
print(words, end="")
exit(0)