pub trait AppSignature: AppCrypto + Eq + PartialEq + Debug + Clone {
    type Generic: IsWrappedBy<Self> + Eq + PartialEq + Debug;
}
Expand description

Application-specific signature.

Required Associated Types§

source

type Generic: IsWrappedBy<Self> + Eq + PartialEq + Debug

The wrapped type which is just a plain instance of Signature.

Implementors§

source§

impl AppSignature for sp_application_crypto::bandersnatch::AppSignature

source§

impl AppSignature for sp_application_crypto::bls377::AppSignature

§

type Generic = Signature<TinyBLS<Bls12<Config>, Config>>

source§

impl AppSignature for sp_application_crypto::bls381::AppSignature

§

type Generic = Signature<TinyBLS<Bls12<Config>, Config>>

source§

impl AppSignature for sp_application_crypto::ecdsa::AppSignature

source§

impl AppSignature for sp_application_crypto::ed25519::AppSignature

source§

impl AppSignature for sp_application_crypto::sr25519::AppSignature