sentc-crypto 0.15.0

The main implementation of the sentc sdk.
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub(crate) mod crypto;
#[cfg(feature = "export")]
mod crypto_export;

pub use self::crypto::KeyGenerator;
#[cfg(not(feature = "export"))]
pub use self::crypto::*;
#[cfg(feature = "export")]
pub use self::crypto_export::*;
#[cfg(feature = "export")]
pub(crate) use self::crypto_export::{prepare_sign_key, prepare_verify_key};