relay-crypto 0.2.0-beta.4

The crypto library for the Relay Ecosystem.
Documentation
pub use hkdf;
pub use rand_chacha;
pub use rand_core;
pub use sha2;

pub mod alg;
pub mod kid;
pub mod record;
pub mod rng;
pub mod shamir;
pub use hex;

pub mod prelude {
    pub use super::alg::{
        AlgorithmError, EncryptionAlgorithm, EncryptionContext, SigningAlgorithm,
    };
    pub use super::kid::kid_from_key;
    pub use super::record::PubRecord;
    pub use super::rng::{RngError, os_rng_hkdf};
    pub use super::shamir;
}