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::bandersnatch::Pair

§

type Pair = Pair

source§

impl CryptoType for sp_core::bandersnatch::Public

§

type Pair = Pair

source§

impl CryptoType for sp_core::bandersnatch::Signature

§

type Pair = Pair

source§

impl CryptoType for sp_core::ecdsa::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::Pair

§

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::Pair

§

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 = Dummy

source§

impl<T: BlsBound> CryptoType for sp_core::bls::Pair<T>

§

type Pair = Pair<T>

source§

impl<T: BlsBound> CryptoType for sp_core::bls::Public<T>

§

type Pair = Pair<T>

source§

impl<T: BlsBound> CryptoType for sp_core::bls::Signature<T>

§

type Pair = Pair<T>