https://github.com/leshow/rust_mnemonic
BIP-0039 mnemonic generator written in rust
https://github.com/leshow/rust_mnemonic
Last synced: 9 months ago
JSON representation
BIP-0039 mnemonic generator written in rust
- Host: GitHub
- URL: https://github.com/leshow/rust_mnemonic
- Owner: leshow
- Created: 2014-12-08T03:02:22.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2019-11-29T04:45:03.000Z (over 6 years ago)
- Last Synced: 2025-01-06T05:28:25.946Z (over 1 year ago)
- Language: Rust
- Homepage:
- Size: 452 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://travis-ci.org/leshow/rust_mnemonic)
# rust mnemonic (BIP-39)
mnemonic generation and key derivation follows [BIP-0039](https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki).
to get started, simply:
```bash
git clone https://github.com/leshow/rust_mnemonic
cd rust_mnemonic
cargo build --release
cargo install
```
Install will provide you with the `rust_mnemonic` binary
If no seed is provided the seed string will be "seed". The seed string will be used in conjunction with the mnemonic for generating the pbkdf2 key.
The mnemonic is created exactly the same (to the best of my knowledge) as in python-mnemonic (https://github.com/trezor/python-mnemonic) and to the BIP0039 standard, my code has not been vetted by the bitcoin community or any cryptographers however, so use with your own caution.