[][src]Struct fancy_garbling::static::Encoder

pub struct Encoder { /* fields omitted */ }

Encode inputs statically.

Methods

impl Encoder[src]

pub fn new(
    garbler_inputs: Vec<Wire>,
    evaluator_inputs: Vec<Wire>,
    deltas: HashMap<u16, Wire>
) -> Self
[src]

Make a new Encoder from lists of garbler and evaluator inputs, alongside a map of moduli-to-wire-offsets.

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

Output the number of garbler inputs.

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

Output the number of evaluator inputs.

pub fn encode_garbler_input(&self, x: u16, id: usize) -> Wire[src]

Encode a single garbler input into its associated wire-label.

pub fn encode_evaluator_input(&self, x: u16, id: usize) -> Wire[src]

Encode a single evaluator input into its associated wire-label.

pub fn encode_garbler_inputs(&self, inputs: &[u16]) -> Vec<Wire>[src]

Encode a slice of garbler inputs into their associated wire-labels.

pub fn encode_evaluator_inputs(&self, inputs: &[u16]) -> Vec<Wire>[src]

Encode a slice of evaluator inputs into their associated wire-labels.

Trait Implementations

impl Debug for Encoder[src]

Auto Trait Implementations

impl Send for Encoder

impl Sync for Encoder

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