trezor-crypto 0.2.5

Rust bindings for the trezor crypto libraries
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[macro_use]
extern crate lazy_static;
extern crate trezor_crypto_sys as sys;

pub extern crate generic_array;

pub mod bip39;
pub mod curve;
pub mod ecdsa;
pub mod ed25519;
pub mod hasher;
pub mod hd_node;
pub mod signature;
mod utils;