Trait sapio_miniscript::ToPublicKey[][src]

pub trait ToPublicKey: MiniscriptKey {
    fn to_public_key(&self) -> PublicKey;
fn hash_to_hash160(hash: &Self::Hash) -> Hash; }

Trait describing public key types which can be converted to bitcoin pubkeys

Required methods

fn to_public_key(&self) -> PublicKey[src]

Converts an object to a public key

fn hash_to_hash160(hash: &Self::Hash) -> Hash[src]

Converts a hashed version of the public key to a hash160 hash.

This method must be consistent with to_public_key, in the sense that calling MiniscriptKey::to_pubkeyhash followed by this function should give the same result as calling to_public_key and hashing the result directly.

Loading content...

Implementations on Foreign Types

impl ToPublicKey for PublicKey[src]

Loading content...

Implementors

Loading content...