Skip to main content

Crate simple_sign

Crate simple_sign 

Source
Expand description

Simple signing library

This library provides a simple interface for signing and verifying data.

Re-exports§

pub use ed25519::Ed25519Signer;
pub use rsa::RsaSigner;
pub use secp256k1::Secp256k1Signer;
pub use signature::Signature;
pub use signature_error::SignatureError;
pub use signer::Signer;
pub use signing_algorithm::SigningAlgorithm;

Modules§

ed25519
Ed25519 signing primitives used by this crate.
rsa
RSA cryptographic primitives used by this crate.
secp256k1
Secp256k1 (ECDSA) signing primitives used by this crate.
signature
Signing/verification types and helpers.
signature_error
Signature error types.
signer
Signing interface.
signing_algorithm
Supported signing algorithms and associated metadata.