//! Simple signing library
//!
//! This library provides a simple interface for signing and verifying data.
/// RSA cryptographic primitives used by this crate.
/// Secp256k1 (ECDSA) signing primitives used by this crate.
/// Ed25519 signing primitives used by this crate.
/// Signing/verification types and helpers.
/// Supported signing algorithms and associated metadata.
/// Signing interface.
/// Signature error types.
pub use Ed25519Signer;
pub use RsaSigner;
pub use Secp256k1Signer;
pub use Signature;
pub use SignatureError;
pub use Signer;
pub use SigningAlgorithm;