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

§

type Pair = Pair

source§

impl CryptoType for sp_core::bandersnatch::Signature

§

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

§

type Pair = Pair<Pair, Pair<TinyBLS<Bls12<Config>, Config>>, PUBLIC_KEY_LEN, SIGNATURE_LEN, EcdsaBls377Tag>

source§

impl CryptoType for sp_core::paired_crypto::ecdsa_bls377::Public

§

type Pair = Pair<Pair, Pair<TinyBLS<Bls12<Config>, Config>>, PUBLIC_KEY_LEN, SIGNATURE_LEN, EcdsaBls377Tag>

source§

impl CryptoType for sp_core::paired_crypto::ecdsa_bls377::Signature

§

type Pair = Pair<Pair, Pair<TinyBLS<Bls12<Config>, Config>>, PUBLIC_KEY_LEN, SIGNATURE_LEN, EcdsaBls377Tag>

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>

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>