pub trait CryptoType {
    type Pair: Pair;
}
Expand description

Type which has a particular kind of crypto associated with it.

Required Associated Types§

source

type Pair: Pair

The pair key type of this crypto.

Implementors§

source§

impl CryptoType for sp_core::ecdsa::Pair

§

type Pair = Pair

source§

impl CryptoType for sp_core::ed25519::Pair

§

type Pair = Pair

source§

impl CryptoType for sp_core::sr25519::Pair

§

type Pair = Pair

source§

impl CryptoType for sp_core::ecdsa::Public

§

type Pair = Pair

source§

impl CryptoType for sp_core::ecdsa::Signature

§

type Pair = Pair

source§

impl CryptoType for sp_core::ed25519::Public

§

type Pair = Pair

source§

impl CryptoType for sp_core::ed25519::Signature

§

type Pair = Pair

source§

impl CryptoType for sp_core::sr25519::Public

§

type Pair = Pair

source§

impl CryptoType for sp_core::sr25519::Signature

§

type Pair = Pair

source§

impl CryptoType for Dummy

§

type Pair = CryptoBytes<0, DummyTag>