Struct bitcoin::util::bip143::SighashComponents[][src]

pub struct SighashComponents {
    pub hash_prevouts: SigHash,
    pub hash_sequence: SigHash,
    pub hash_outputs: SigHash,
    // some fields omitted
}
👎 Deprecated since 0.24.0:

please use SigHashCache instead

Expand description

Parts of a sighash which are common across inputs or signatures, and which are sufficient (in conjunction with a private key) to sign the transaction

Fields

hash_prevouts: SigHash
👎 Deprecated since 0.24.0:

please use SigHashCache instead

Hash of all the previous outputs

hash_sequence: SigHash
👎 Deprecated since 0.24.0:

please use SigHashCache instead

Hash of all the input sequence nos

hash_outputs: SigHash
👎 Deprecated since 0.24.0:

please use SigHashCache instead

Hash of all the outputs in this transaction

Implementations

Compute the sighash components from an unsigned transaction and auxiliary information about its inputs. For the generated sighashes to be valid, no fields in the transaction may change except for script_sig and witnesses.

Compute the BIP143 sighash for a SIGHASH_ALL signature for the given input.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.