ssi-crypto 0.2.1

Implementation of various hashes and signatures for the ssi library.
Documentation
#![cfg_attr(docsrs, feature(doc_auto_cfg))]

#[cfg(feature = "ed25519")]
pub use ed25519_dalek as ed25519;
#[cfg(feature = "secp256k1")]
pub use k256;
#[cfg(feature = "secp256r1")]
pub use p256;
#[cfg(feature = "secp384r1")]
pub use p384;
pub use rand;

pub mod algorithm;
pub mod hashes;
pub mod key;
mod signature;
pub mod signatures;
mod verification;

pub use algorithm::{Algorithm, AlgorithmError, AlgorithmInstance, UnsupportedAlgorithm};
pub use key::{PublicKey, SecretKey};
pub use signature::*;
pub use verification::*;