[][src]Struct lnpbp::dbc::spk::SpkContainer

pub struct SpkContainer {
    pub pubkey: PublicKey,
    pub method: ScriptEncodeMethod,
    pub source: ScriptEncodeData,
    pub tag: Hash,
    pub tweaking_factor: Option<Hmac<Hash>>,
}

Fields

pubkey: PublicKeymethod: ScriptEncodeMethodsource: ScriptEncodeDatatag: Hash

Single SHA256 hash of the protocol-specific tag

tweaking_factor: Option<Hmac<Hash>>

Tweaking factor stored after [ScriptPubkeyContainer::commit_verify] procedure

Implementations

impl SpkContainer[src]

pub fn construct(
    protocol_tag: &Hash,
    pubkey: PublicKey,
    source: ScriptEncodeData,
    method: ScriptEncodeMethod
) -> Self
[src]

Trait Implementations

impl Clone for SpkContainer[src]

impl Container for SpkContainer[src]

type Supplement = Hash

Out supplement is a protocol-specific tag in its hashed form

type Host = PubkeyScript

impl Debug for SpkContainer[src]

impl Display for SpkContainer[src]

impl Eq for SpkContainer[src]

impl Hash for SpkContainer[src]

impl PartialEq<SpkContainer> for SpkContainer[src]

impl StructuralEq for SpkContainer[src]

impl StructuralPartialEq for SpkContainer[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.