[][src]Trait sp_application_crypto::AppPair

pub trait AppPair: AppKey + Pair<Public = Self::Public> {
    type Generic: IsWrappedBy<Self> + Pair<Public = <Self::Public as AppPublic>::Generic>;
}

A application's key pair.

Associated Types

type Generic: IsWrappedBy<Self> + Pair<Public = <Self::Public as AppPublic>::Generic>

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

Loading content...

Implementors

impl AppPair for sp_application_crypto::ecdsa::AppPair[src]

type Generic = Pair

impl AppPair for sp_application_crypto::ed25519::AppPair[src]

type Generic = Pair

impl AppPair for sp_application_crypto::sr25519::AppPair[src]

type Generic = Pair

Loading content...