simple_crypto/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
mod error;
pub use error::Error;

mod bip324;
mod traits;
pub use traits::Hashable;
mod structs;
pub use structs::Hash;
mod secp256k1;
pub use secp256k1::{SecretKey, PublicKey, Key};

#[cfg(test)]
mod tests;