Struct SigHashCache

Source
pub struct SigHashCache<R: Deref<Target = Transaction>> { /* private fields */ }
Expand description

A replacement for SigHashComponents which supports all sighash modes

Implementations§

Source§

impl<R: Deref<Target = Transaction>> SigHashCache<R>

Source

pub fn new(tx: R) -> Self

Compute the sighash components from an unsigned transaction and auxiliary in a lazy manner when required. For the generated sighashes to be valid, no fields in the transaction may change except for script_sig and witnesses.

Source

pub fn hash_prevouts(&mut self) -> Hash

Calculate hash for prevouts

Source

pub fn hash_sequence(&mut self) -> Hash

Calculate hash for input sequence values

Source

pub fn hash_outputs(&mut self) -> Hash

Calculate hash for outputs

Source

pub fn encode_signing_data_to<Write: Write>( &mut self, writer: Write, input_index: usize, script_code: &Script, value: u64, sighash_type: SigHashType, ) -> Result<(), Error>

Encode the BIP143 signing data for any flag type into a given object implementing a std::io::Write trait.

Source

pub fn signature_hash( &mut self, input_index: usize, script_code: &Script, value: u64, sighash_type: SigHashType, ) -> SigHash

Compute the BIP143 sighash for any flag type. See SighashComponents::sighash_all simpler API for the most common case

Source§

impl<R: DerefMut<Target = Transaction>> SigHashCache<R>

Source

pub fn access_witness(&mut self, input_index: usize) -> &mut Vec<Vec<u8>>

When the SigHashCache is initialized with a mutable reference to a transaction instead of a regular reference, this method is available to allow modification to the witnesses.

This allows in-line signing such as

use bitcoin::blockdata::transaction::{Transaction, SigHashType};
use bitcoin::util::bip143::SigHashCache;
use bitcoin::Script;

let mut tx_to_sign = Transaction { version: 2, lock_time: 0, input: Vec::new(), output: Vec::new() };
let input_count = tx_to_sign.input.len();

let mut sig_hasher = SigHashCache::new(&mut tx_to_sign);
for inp in 0..input_count {
    let prevout_script = Script::new();
    let _sighash = sig_hasher.signature_hash(inp, &prevout_script, 42, SigHashType::All);
    // ... sign the sighash
    sig_hasher.access_witness(inp).push(Vec::new());
}

Auto Trait Implementations§

§

impl<R> Freeze for SigHashCache<R>
where R: Freeze,

§

impl<R> RefUnwindSafe for SigHashCache<R>
where R: RefUnwindSafe,

§

impl<R> Send for SigHashCache<R>
where R: Send,

§

impl<R> Sync for SigHashCache<R>
where R: Sync,

§

impl<R> Unpin for SigHashCache<R>
where R: Unpin,

§

impl<R> UnwindSafe for SigHashCache<R>
where R: 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, U> TryFrom<U> for T
where U: Into<T>,

Source§

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>,

Source§

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.