[][src]Struct grin_keychain::BlindingFactor

pub struct BlindingFactor(_);

Methods

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 to_hex(&self) -> String[src]

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

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

pub fn split(&self, secp: &Secp256k1) -> Result<SplitBlindingFactor, 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 PartialEq<BlindingFactor> for BlindingFactor[src]

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

impl Clone for BlindingFactor[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for BlindingFactor[src]

impl Add<BlindingFactor> for BlindingFactor[src]

type Output = Result<BlindingFactor, Error>

The resulting type after applying the + operator.

impl Debug for BlindingFactor[src]

impl Serialize for BlindingFactor[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

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

The type returned in the event of a conversion error.

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

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

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

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

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

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

The type returned in the event of a conversion error.

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

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

impl<T> CloneAny for T where
    T: Clone + Any

impl<T> UnsafeAny for T where
    T: Any

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self