Authenticator

Trait Authenticator 

Source
pub trait Authenticator:
    ToFromBytes
    + Display
    + Serialize
    + DeserializeOwned
    + Send
    + Sync
    + 'static
    + Clone {
    type PubKey: VerifyingKey<Sig = Self>;
    type PrivKey: SigningKey<Sig = Self>;

    const LENGTH: usize;
}
Expand description

Trait impl’d by signatures in asymmetric cryptography.

The trait bounds are implemented so as to be symmetric and equivalent to the ones on its associated types for private key and public key material.

Required Associated Constants§

Required Associated Types§

Source

type PubKey: VerifyingKey<Sig = Self>

Source

type PrivKey: SigningKey<Sig = Self>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§