bip32 0.5.3

BIP32 hierarchical key derivation implemented in a generic, no_std-friendly manner. Supports deriving keys using the pure Rust k256 crate or the C library-backed secp256k1 crate
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Support for BIP39 mnemonic phrases.
//!
//! Adapted from the `bip39` crate.
//! Copyright © 2017-2018 Stephen Oliver with contributions by Maciej Hirsz.

mod bits;
mod language;
mod phrase;

#[cfg(feature = "bip39")]
pub(crate) mod seed;

pub use self::{language::Language, phrase::Phrase};

#[cfg(feature = "bip39")]
pub use self::seed::Seed;