bip0039 0.7.0

Another Rust implementation of BIP-0039 standard
Documentation

bip0039-rs

ga-svg crates-svg docs-svg msrv-svg codecov-svg deps-svg

Another Rust implementation of BIP-0039 standard.

Usage

  • Add the bip0039 into the Cargo.toml.

    [dependencies]
    bip0039 = "0.7"
    
  • Generate a random BIP-0039 mnemonic in English.

    use bip0039::{Count, Mnemonic};
    
    let mnemonic = Mnemonic::generate(Count::Words12);
    let phrase = mnemonic.phrase();
    

Documentation

See documentation and examples at https://docs.rs/bip0039.

Features

  • Support all languages in the BIP-0039 Word Lists
    • English
    • Chinese (Simplified)
    • Chinese (Traditional)
    • Czech
    • French
    • Italian
    • Japanese
    • Korean
    • Spanish
  • Support no_std environment

Alternatives

LICENSE

Licensed under either of

at your option.