Struct breez_sdk_liquid::bitcoin::util::bip143::SigHashCache
pub struct SigHashCache<R>where
R: Deref<Target = Transaction>,{ /* private fields */ }
Expand description
A replacement for SigHashComponents which supports all sighash modes
Implementations§
§impl<R> SigHashCache<R>where
R: Deref<Target = Transaction>,
impl<R> SigHashCache<R>where
R: Deref<Target = Transaction>,
pub fn new(tx: R) -> SigHashCache<R>
pub fn new(tx: R) -> SigHashCache<R>
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.
pub fn encode_signing_data_to<Write>(
&mut self,
writer: Write,
input_index: usize,
script_code: &Script,
value: u64,
sighash_type: EcdsaSighashType,
) -> Result<(), Error>where
Write: Write,
pub fn encode_signing_data_to<Write>(
&mut self,
writer: Write,
input_index: usize,
script_code: &Script,
value: u64,
sighash_type: EcdsaSighashType,
) -> Result<(), Error>where
Write: Write,
Encode the BIP143 signing data for any flag type into a given object implementing a std::io::Write trait.
pub fn signature_hash(
&mut self,
input_index: usize,
script_code: &Script,
value: u64,
sighash_type: EcdsaSighashType,
) -> Sighash
pub fn signature_hash( &mut self, input_index: usize, script_code: &Script, value: u64, sighash_type: EcdsaSighashType, ) -> Sighash
Compute the BIP143 sighash for any flag type. See SighashComponents::sighash_all simpler API for the most common case
§impl<R> SigHashCache<R>where
R: DerefMut<Target = Transaction>,
impl<R> SigHashCache<R>where
R: DerefMut<Target = Transaction>,
pub fn access_witness(&mut self, input_index: usize) -> &mut Witness
pub fn access_witness(&mut self, input_index: usize) -> &mut Witness
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
panics if input_index
is out of bounds with respect of the number of inputs
use bitcoin::blockdata::transaction::{Transaction, EcdsaSighashType};
use bitcoin::util::bip143::SigHashCache;
use bitcoin::{PackedLockTime, Script};
let mut tx_to_sign = Transaction { version: 2, lock_time: PackedLockTime::ZERO, 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, EcdsaSighashType::All);
// ... sign the sighash
sig_hasher.access_witness(inp).push(&[]);
}
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§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request