indy-crypto 0.0.2

This is the shared crypto libirary for Hyperledger Indy components.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
extern crate amcl;
extern crate env_logger;
#[macro_use]
extern crate log;
extern crate rand;
extern crate sha1;

// To use macros from util inside of other modules it must me loaded first.
#[macro_use]
mod utils;

pub mod bls;
pub mod errors;
pub mod ffi;

#[cfg(feature = "pair_amcl")]
#[path = "pair/amcl.rs"]
pub mod pair;