| Crates.io | bip0039 |
| lib.rs | bip0039 |
| version | 0.13.2 |
| created_at | 2020-01-07 03:11:51.635404+00 |
| updated_at | 2026-01-19 12:42:27.537865+00 |
| description | Another Rust implementation of BIP-0039 standard |
| homepage | https://github.com/koushiro/rust-bips |
| repository | https://github.com/koushiro/rust-bips |
| max_upload_size | |
| id | 196015 |
| size | 280,421 |
Another Rust implementation of BIP-0039 standard.
Generate a random BIP-0039 mnemonic in English.
use bip0039::{Count, English, Mnemonic};
// Generates an English mnemonic with 12 words randomly
let mnemonic = <Mnemonic<English>>::generate(Count::Words12);
// Or use the default generic type (English) of struct Mnemonic.
let mnemonic = <Mnemonic>::generate(Count::Words12);
// Gets the phrase
let phrase = mnemonic.phrase();
// Generates the HD wallet seed from the mnemonic and the passphrase.
let seed = mnemonic.to_seed("");
See documentation and examples at https://docs.rs/bip0039.
no_std environmentSee benchmarks for more details
This project is licensed under the Apache License, Version 2.0 - see the LICENSE file for details.