[][src]Struct benaloh_challenge::Challenge

pub struct Challenge<'a, R: Rng, C> where
    C: Fn(&mut RecordingRng<'a, R>) -> Vec<u8>, 
{ /* fields omitted */ }

Methods

impl<'a, R: Rng, C> Challenge<'a, R, C> where
    C: Fn(&mut RecordingRng<'a, R>) -> Vec<u8>, 
[src]

pub fn new(rng: &'a mut R, untrusted_computation: C) -> Self[src]

pub fn commit<H: Digest>(&mut self, hasher: &mut H) -> Vec<u8>[src]

Commit the results and get the commitment

pub fn challenge(&mut self) -> Vec<u8>[src]

pub fn into_results(self) -> Vec<u8>[src]

Auto Trait Implementations

impl<'a, R, C> Send for Challenge<'a, R, C> where
    C: Send,
    R: Send

impl<'a, R, C> Sync for Challenge<'a, R, C> where
    C: Sync,
    R: Sync

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?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

The type returned in the event of a conversion error.

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

impl<T> Same for T

type Output = T

Should always be Self