pub enum Policy<Pk: MiniscriptKey> {
    Unsatisfiable,
    Trivial,
    KeyHash(Pk::Hash),
    After(u32),
    Older(u32),
    Sha256(Hash),
    Hash256(Hash),
    Ripemd160(Hash),
    Hash160(Hash),
    Threshold(usize, Vec<Policy<Pk>>),
    TxTemplate(Hash),
}
Expand description

Abstract policy which corresponds to the semantics of a Miniscript and which allows complex forms of analysis, e.g. filtering and normalization. Semantic policies store only hashes of keys to ensure that objects representing the same policy are lifted to the same Semantic, regardless of their choice of pk or pk_h nodes.

Variants§

§

Unsatisfiable

Unsatisfiable

§

Trivial

Trivially satisfiable

§

KeyHash(Pk::Hash)

Signature and public key matching a given hash is required

§

After(u32)

An absolute locktime restriction

§

Older(u32)

A relative locktime restriction

§

Sha256(Hash)

A SHA256 whose preimage must be provided to satisfy the descriptor

§

Hash256(Hash)

A SHA256d whose preimage must be provided to satisfy the descriptor

§

Ripemd160(Hash)

A RIPEMD160 whose preimage must be provided to satisfy the descriptor

§

Hash160(Hash)

A HASH160 whose preimage must be provided to satisfy the descriptor

§

Threshold(usize, Vec<Policy<Pk>>)

A set of descriptors, satisfactions must be provided for k of them

§

TxTemplate(Hash)

A SHA256 whose must match the tx template

Implementations§

source§

impl<Pk: MiniscriptKey> Policy<Pk>

source

pub fn translate_pkh<Fpkh, Q, E>( &self, translatefpkh: Fpkh ) -> Result<Policy<Q>, E>
where Fpkh: FnMut(&Pk::Hash) -> Result<Q::Hash, E>, Q: MiniscriptKey,

Convert a policy using one kind of public key to another type of public key

Example
use miniscript::{bitcoin::{hashes::hash160, PublicKey}, policy::semantic::Policy};
use std::str::FromStr;
let alice_pkh = "236ada020df3208d2517f4b0db03e16f92cd8cf1";
let bob_pkh = "3e89b972416ae33870b4634d03b8cdc773200cac";
let placeholder_policy = Policy::<String>::from_str("and(pkh(alice_pkh),pkh(bob_pkh))").unwrap();

let real_policy = placeholder_policy.translate_pkh(|placeholder| match placeholder.as_str() {
    "alice_pkh" => hash160::Hash::from_str(alice_pkh),
    "bob_pkh"   => hash160::Hash::from_str(bob_pkh),
    _ => panic!("unknown key hash!")
}).unwrap();

let expected_policy = Policy::<PublicKey>::from_str(&format!("and(pkh({}),pkh({}))", alice_pkh, bob_pkh)).unwrap();
assert_eq!(real_policy, expected_policy);
source

pub fn entails(self, other: Policy<Pk>) -> Result<bool, PolicyError>

This function computes whether the current policy entails the second one. A |- B means every satisfaction of A is also a satisfaction of B. This implementation will run slow for larger policies but should be sufficient for most practical policies.

source§

impl<Pk: MiniscriptKey> Policy<Pk>

source

pub fn normalized(self) -> Policy<Pk>

Flatten out trees of Ands and Ors; eliminate Trivial and Unsatisfiables. Does not reorder any branches; use .sort.

source

pub fn is_trivial(&self) -> bool

Helper function to detect a true/trivial policy This function only checks whether the policy is Policy::Trivial For checking if the normalized form is trivial, the caller is expected to normalize the policy first.

source

pub fn is_unsatisfiable(&self) -> bool

Helper function to detect a false/unsatisfiable policy This function only checks whether the policy is Policy::Unsatisfiable For checking if the normalized form is unsatisfiable, the caller is expected to normalize the policy first.

source

pub fn relative_timelocks(&self) -> Vec<u32>

Returns a list of all relative timelocks, not including 0, which appear in the policy

source

pub fn absolute_timelocks(&self) -> Vec<u32>

Returns a list of all absolute timelocks, not including 0, which appear in the policy

source

pub fn at_age(self, time: u32) -> Policy<Pk>

Filter a policy by eliminating relative timelock constraints that are not satisfied at the given age.

source

pub fn at_height(self, time: u32) -> Policy<Pk>

Filter a policy by eliminating absolute timelock constraints that are not satisfied at the given age.

source

pub fn n_keys(&self) -> usize

Count the number of public keys and keyhashes referenced in a policy. Duplicate keys will be double-counted.

source

pub fn minimum_n_keys(&self) -> Option<usize>

Count the minimum number of public keys for which signatures could be used to satisfy the policy. Returns None if the policy is not satisfiable.

source§

impl<Pk: MiniscriptKey> Policy<Pk>

source

pub fn sorted(self) -> Policy<Pk>

“Sort” a policy to bring it into a canonical form to allow comparisons. Does not allow policies to be compared for functional equivalence; in general this appears to require Gröbner basis techniques that are not implemented.

Trait Implementations§

source§

impl<Pk: Clone + MiniscriptKey> Clone for Policy<Pk>
where Pk::Hash: Clone,

source§

fn clone(&self) -> Policy<Pk>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<Pk: MiniscriptKey> Debug for Policy<Pk>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<Pk: MiniscriptKey> Display for Policy<Pk>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<Pk: MiniscriptKey> ForEachKey<Pk> for Policy<Pk>

source§

fn for_each_key<'a, F: FnMut(ForEach<'a, Pk>) -> bool>( &'a self, pred: F ) -> bool
where Pk: 'a, Pk::Hash: 'a,

Run a predicate on every key in the descriptor, returning whether the predicate returned true for every key
source§

fn for_any_key<'a, F: FnMut(ForEach<'a, Pk>) -> bool>(&'a self, pred: F) -> bool
where Pk: 'a, Pk::Hash: 'a,

Run a predicate on every key in the descriptor, returning whether the predicate returned true for any key
source§

impl<Pk> FromStr for Policy<Pk>
where Pk: MiniscriptKey + FromStr, Pk::Hash: FromStr, <Pk as FromStr>::Err: ToString, <<Pk as MiniscriptKey>::Hash as FromStr>::Err: ToString,

§

type Err = Error

The associated error which can be returned from parsing.
source§

fn from_str(s: &str) -> Result<Policy<Pk>, Error>

Parses a string s to return a value of this type. Read more
source§

impl<Pk> FromTree for Policy<Pk>
where Pk: MiniscriptKey + FromStr, Pk::Hash: FromStr, <Pk as FromStr>::Err: ToString, <<Pk as MiniscriptKey>::Hash as FromStr>::Err: ToString,

source§

fn from_tree(top: &Tree<'_>) -> Result<Policy<Pk>, Error>

Extract a structure from Tree representation
source§

impl<Pk: MiniscriptKey> Liftable<Pk> for Semantic<Pk>

source§

fn lift(&self) -> Result<Semantic<Pk>, Error>

Convert the object into an abstract policy
source§

impl<Pk: Ord + MiniscriptKey> Ord for Policy<Pk>
where Pk::Hash: Ord,

source§

fn cmp(&self, other: &Policy<Pk>) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
source§

impl<Pk: PartialEq + MiniscriptKey> PartialEq for Policy<Pk>
where Pk::Hash: PartialEq,

source§

fn eq(&self, other: &Policy<Pk>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<Pk: PartialOrd + MiniscriptKey> PartialOrd for Policy<Pk>
where Pk::Hash: PartialOrd,

source§

fn partial_cmp(&self, other: &Policy<Pk>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl<Pk: Eq + MiniscriptKey> Eq for Policy<Pk>
where Pk::Hash: Eq,

source§

impl<Pk: MiniscriptKey> StructuralEq for Policy<Pk>

source§

impl<Pk: MiniscriptKey> StructuralPartialEq for Policy<Pk>

Auto Trait Implementations§

§

impl<Pk> RefUnwindSafe for Policy<Pk>

§

impl<Pk> Send for Policy<Pk>
where <Pk as MiniscriptKey>::Hash: Send,

§

impl<Pk> Sync for Policy<Pk>
where <Pk as MiniscriptKey>::Hash: Sync,

§

impl<Pk> Unpin for Policy<Pk>
where <Pk as MiniscriptKey>::Hash: Unpin,

§

impl<Pk> UnwindSafe for Policy<Pk>
where <Pk as MiniscriptKey>::Hash: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.