bip0032 0.1.0

Another Rust implementation of BIP-0032 standard
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Extended key types for BIP32.

mod core;
mod payload;
#[cfg(feature = "slip10")]
pub mod slip10;

pub use self::{
    core::{ExtendedPrivateKey, ExtendedPublicKey},
    payload::{ExtendedKeyPayload, KnownVersion, Version},
};