[][src]Struct grin_keychain::BlindingFactor

pub struct BlindingFactor(_);

Implementations

impl BlindingFactor[src]

pub fn from_secret_key(skey: SecretKey) -> BlindingFactor[src]

pub fn from_slice(data: &[u8]) -> BlindingFactor[src]

pub fn zero() -> BlindingFactor[src]

pub fn is_zero(&self) -> bool[src]

pub fn rand(secp: &Secp256k1) -> BlindingFactor[src]

pub fn from_hex(hex: &str) -> Result<BlindingFactor, Error>[src]

pub fn secret_key(&self, secp: &Secp256k1) -> Result<SecretKey, Error>[src]

pub fn add(
    &self,
    other: &BlindingFactor,
    secp: &Secp256k1
) -> Result<BlindingFactor, Error>
[src]

pub fn split(
    &self,
    blind_1: &BlindingFactor,
    secp: &Secp256k1
) -> Result<BlindingFactor, Error>
[src]

Split a blinding_factor (aka secret_key) into a pair of blinding_factors. We use one of these (k1) to sign the tx_kernel (k1G) and the other gets aggregated in the block_header as the "offset". This prevents an actor from being able to sum a set of inputs, outputs and kernels from a block to identify and reconstruct a particular tx from a block. You would need both k1, k2 to do this.

Trait Implementations

impl AsRef<[u8]> for BlindingFactor[src]

impl Clone for BlindingFactor[src]

impl Debug for BlindingFactor[src]

impl Default for BlindingFactor[src]

impl<'de> Deserialize<'de> for BlindingFactor[src]

impl Drop for BlindingFactor[src]

impl PartialEq<BlindingFactor> for BlindingFactor[src]

impl Serialize for BlindingFactor[src]

impl StructuralPartialEq for BlindingFactor[src]

impl Zeroize for BlindingFactor[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> CloneAny for T where
    T: Clone + Any

impl<T> DebugAny for T where
    T: Any + Debug

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToHex for T where
    T: AsRef<[u8]>, 
[src]

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

type Owned = T

The resulting type after obtaining ownership.

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<T> UnsafeAny for T where
    T: Any

impl<Z> Zeroize for Z where
    Z: DefaultIsZeroes
[src]