[][src]Struct fancy_garbling::static::GarbledCircuit

pub struct GarbledCircuit { /* fields omitted */ }

Static evaluator for a circuit, created by the garble function.

Uses Evaluator under the hood to actually implement the evaluation.

Methods

impl GarbledCircuit[src]

pub fn new(blocks: Vec<Block>) -> Self[src]

Create a new object from a vector of garbled gates and constant wires.

pub fn size(&self) -> usize[src]

The number of garbled rows and constant wires in the garbled circuit.

pub fn eval(
    &self,
    c: &mut Circuit,
    garbler_inputs: &[Wire],
    evaluator_inputs: &[Wire]
) -> Result<Vec<u16>, EvaluatorError>
[src]

Evaluate the garbled circuit.

Trait Implementations

impl Debug for GarbledCircuit[src]

Auto Trait Implementations

impl Send for GarbledCircuit

impl Sync for GarbledCircuit

Blanket Implementations

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

impl<T> From<T> for T[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.

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

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

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

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

impl<T> FromCast<T> for T

impl<T, U> Cast<U> for T where
    U: FromCast<T>, 

impl<T> FromBits<T> for T

impl<T> Same<T> for T

type Output = T

Should always be Self