1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
//! Cryptographic types and operations on them

mod asymmetric_key;
mod error;

#[cfg(any(feature = "gens", test))]
pub use asymmetric_key::gens;
pub use asymmetric_key::{
    AsymmetricType, PublicKey, SecretKey, Signature, ED25519_TAG, SECP256K1_TAG, SYSTEM_ACCOUNT,
    SYSTEM_TAG,
};
pub use error::Error;