Struct mpc_engine::circuit::Circuit

source ·
pub struct Circuit {
    pub input_widths: Vec<InputWidth>,
    pub gates: Vec<WiredGate>,
    pub output_gates: Vec<WireIndex>,
}
Expand description

Representation of a circuit evaluated by an MPC engine.

Fields§

§input_widths: Vec<InputWidth>

The bit-width of the inputs expected by the different parties, InputWidth at index i representing the number of input bits for party i.

§gates: Vec<WiredGate>

The circuit’s gates.

§output_gates: Vec<WireIndex>

The indices of the gates in Circuit::gates that produce output bits.

Implementations§

source§

impl Circuit

source

pub fn number_of_parties(&self) -> usize

Number of parties expected to contribute inputs to the circuit.

source

pub fn validate_circuit_specification(&self) -> Result<(), CircuitError>

Check validity of circuit specification.

In particular:

  • Validate input specification: Input width specification does not allow 0-width inputs and at least one party must provide input bits.
  • Validate gate sequence: All input gates must be at the beginning of the gate sequence, followed only by logic gates.
  • Validate gate wiring: A logic gate with index i can only take input wires with strictly smaller indices. An input gate with index i must refer to its own index as the input wire index.
  • Validate output specification: The number of specified output wires must be non-zero and all output wire indices must refer to valid wire indices in the circuit, i.e. output wire indices must be smaller or equal to the highest wire index used in the circuit.
source

pub fn validate_input_vectors( &self, inputs: &[Vec<bool>] ) -> Result<(), CircuitError>

Validate that a given set of party inputs corresponds to the circuit specification.

In particular:

  • Validate that the number of input vectors corresponds to the number of parties expected to provide inputs.
  • Validate, for each input vector, that the number of input bits matches the corresponding parties’ expected input width.
source

pub fn eval(&self, inputs: &[Vec<bool>]) -> Result<Vec<bool>, CircuitError>

Evaluates a circuit with the specified inputs (with one Vec<bool> per party).

After validation of the circuit specification and validation of the provided input vectors, the circuit is evaluated gate by gate:

  • Input gates are evaluated as the identity function on the provided input.
  • Logic gates are evaluated by applying the given logical operation to the wire values of the gates’ input wires.

Circuit validation ensures that, during sequential evaluation, gate input wires can only refer to previously evaluated gates, or values provided in the circuit inputs in the case of input gate evaulation.

The circuit output is packed into a bitstring, with the indicated output wire values appearing in sequential order.

source

pub fn num_gates(&self) -> usize

Returns the number of gates (i.e. the size) of the circuit.

source

pub fn and_bucket_size(&self) -> usize

Computes the required bucket size for leaky AND triple combination.

source

pub fn num_and_gates(&self) -> usize

Returns the number of AND gates in the circuit.

source

pub fn share_authentication_cost(&self) -> usize

Computes the total number of share authentications that will be necessary to evaluate this circuit using the MPC protocol, excluding malicious security overhead.

Trait Implementations§

source§

impl Clone for Circuit

source§

fn clone(&self) -> Circuit

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Circuit

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.