[][src]Trait sp_core::crypto::Derive

pub trait Derive: Sized {
    fn derive<Iter: Iterator<Item = DeriveJunction>>(
        &self,
        _path: Iter
    ) -> Option<Self> { ... } }

Derivable key trait.

Provided methods

fn derive<Iter: Iterator<Item = DeriveJunction>>(
    &self,
    _path: Iter
) -> Option<Self>

Derive a child key from a series of given junctions.

Will be None for public keys if there are any hard junctions in there.

Loading content...

Implementors

impl Derive for Dummy[src]

impl Derive for sp_core::ecdsa::Public[src]

impl Derive for sp_core::ed25519::Public[src]

impl Derive for sp_core::sr25519::Public[src]

fn derive<Iter: Iterator<Item = DeriveJunction>>(
    &self,
    path: Iter
) -> Option<Public>
[src]

Derive a child key from a series of given junctions.

None if there are any hard junctions in there.

Loading content...