Skip to content

Crypto secure bip39 phrase generator utility written in Go

Notifications You must be signed in to change notification settings

vitarb/bip39gen

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

bip39gen

bip39gen is a simple utility for generating crypto secure BIP39 passphrases of arbitrary length on your computer. Don't trust, verify!

Notes

Each word provides 11 bits of entropy (2048 words = 2^11). You should use at least 64 bits (or 6 words) if you want reasonable protection against brute force attacks.

Usage

Build the binary:

make

Run it passing desired number of words to be generated (defaults to 12):

❯ ./bip39gen -n 6
favorite
cover
ivory
resemble
spy
near

English version of BIP39 is default but you can use other languages for which there is BIP39 list available.

❯ ./bip39gen -l spanish
sala
azote
natal
anemia
búho
vivir
baba
privar
sable
inicio
toalla
propio

In verbose mode program will also print indexes of each word in BIP39.

❯ ./bip39gen -v -n 6
1470:result
1027:lesson
1981:waste
1307:pet
1192:never
 684:few

About

Crypto secure bip39 phrase generator utility written in Go

Resources

Stars

Watchers

Forks