read39 0.1.0

Util for securely reading a BIP39 Mnemonic from stdin
Documentation
1
2
3
4
5
6
7
8
9
# read39

Util for securely, and (semi-)user-friendly reading a BIP39 Mnemonic phrase from the terminal.

It uses `bip0039` to decode the mnemonic, and uses `zeroize` everywhere to increase security.

Example:
```rs
let mnemonic = read39::read_mnemonic_until_ok::<bip0039::English>();
```