bdk_chain::bitcoin::bech32::primitives::checksum

Struct Engine

pub struct Engine<Ck>
where Ck: Checksum,
{ /* private fields */ }
Expand description

A checksum engine, which can be used to compute or verify a checksum.

Use this to verify a checksum, feed it the data to be checksummed using the Self::input_* methods.

Implementations§

§

impl<Ck> Engine<Ck>
where Ck: Checksum,

pub fn new() -> Engine<Ck>

Constructs a new checksum engine with no data input.

pub fn input_hrp(&mut self, hrp: Hrp)

Feeds hrp into the checksum engine.

pub fn input_fe(&mut self, e: Fe32)

Adds a single gf32 element to the checksum engine.

This is where the actual checksum computation magic happens.

pub fn input_target_residue(&mut self)

Inputs the target residue of the checksum.

Checksums are generated by appending the target residue to the input string, then computing the actual residue, and then replacing the target with the actual. This method lets us compute the actual residue without doing any string concatenations.

pub fn residue(&self) -> &<Ck as Checksum>::MidstateRepr

Returns for the current checksum residue.

Trait Implementations§

§

impl<Ck> Clone for Engine<Ck>
where Ck: Clone + Checksum, <Ck as Checksum>::MidstateRepr: Clone,

§

fn clone(&self) -> Engine<Ck>

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
§

impl<Ck> Debug for Engine<Ck>
where Ck: Debug + Checksum, <Ck as Checksum>::MidstateRepr: Debug,

§

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

Formats the value using the given formatter. Read more
§

impl<Ck> Default for Engine<Ck>
where Ck: Checksum,

§

fn default() -> Engine<Ck>

Returns the “default value” for a type. Read more
§

impl<Ck> PartialEq for Engine<Ck>

§

fn eq(&self, other: &Engine<Ck>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

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

impl<Ck> Copy for Engine<Ck>
where Ck: Copy + Checksum, <Ck as Checksum>::MidstateRepr: Copy,

§

impl<Ck> Eq for Engine<Ck>
where Ck: Eq + Checksum, <Ck as Checksum>::MidstateRepr: Eq,

§

impl<Ck> StructuralPartialEq for Engine<Ck>
where Ck: Checksum,

Auto Trait Implementations§

§

impl<Ck> Freeze for Engine<Ck>
where <Ck as Checksum>::MidstateRepr: Freeze,

§

impl<Ck> RefUnwindSafe for Engine<Ck>

§

impl<Ck> Send for Engine<Ck>
where <Ck as Checksum>::MidstateRepr: Send,

§

impl<Ck> Sync for Engine<Ck>
where <Ck as Checksum>::MidstateRepr: Sync,

§

impl<Ck> Unpin for Engine<Ck>
where <Ck as Checksum>::MidstateRepr: Unpin,

§

impl<Ck> UnwindSafe for Engine<Ck>

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. 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,

Source§

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

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V