Struct tari_crypto::ristretto::script_commitment::ScriptCommitment[][src]

pub struct ScriptCommitment { /* fields omitted */ }

A modified Pedersen commitment that includes a commitment to a Tari Script hash.

The modified script definition is _ C* = C + H(C||s).G

The ScriptCommitment is then still a Pedersen commitment with a key vale of k + H(C||s). This struct is a intermediate container struct that holds the individual terms in the equation above for easy reference.

To calculate the modified Pedersen commitment from an instance of ScriptCommitment, use ScriptCommitmentFactory::script_to_pedersen.

Implementations

impl ScriptCommitment[src]

pub fn blinding_factor(&self) -> &RistrettoSecretKey[src]

Return a reference to the blinding factor of the naked commitment, i.e. k in C = k.G + v.H

pub fn value(&self) -> u64[src]

Return the value that this ScriptCommitment is committing.

pub fn script_hash(&self) -> &[u8][src]

Return a slice representing the hash of the Tari script that this ScriptCommitment is committing.

pub fn adj_blinding_factor(&self) -> &RistrettoSecretKey[src]

Return a reference to the adjusted blinding factor of the naked commitment, i.e. k + H(C||s)

pub fn naked_commitment(&self) -> &PedersenCommitment[src]

Return a reference to the naked commitment, i.e. C = k.G + v.H

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, U> Cast<U> for T where
    U: FromCast<T>, 

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

impl<T> FromBits<T> for T

impl<T> FromCast<T> for T

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

impl<T, U> IntoBits<U> for T where
    U: FromBits<T>, 

impl<T> Same<T> for T

type Output = T

Should always be Self

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.

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