[][src]Crate signature

Traits which provide generic, object-safe APIs for generating and verifying digital signatures, which provide message authentication using public-key cryptography.

Re-exports

pub use digest;

Structs

Error

Signature errors

Traits

DigestSigner

Sign the given prehashed message Digest using Self.

DigestVerifier

Verify the provided signature for the given prehashed message Digest is authentic.

Signature

Trait impl'd by concrete types that represent digital signatures

Signer

Sign the provided message bytestring using Self (e.g. a cryptographic key or connection to an HSM), returning a digital signature.

Verifier

Verify the provided message bytestring using Self (e.g. a public key)