pub enum MessagePayload {
Show 14 variants Sync, RequestBitAuth(BitID, Sender<SubMessage>, Receiver<SubMessage>), BitAuth(BitID, Mac), BroadcastCommitment(Commitment), BroadcastOpening(Opening), SubChannel(Sender<SubMessage>, Receiver<SubMessage>), Mac(Mac), HalfAndHashes(bool, bool), LeakyAndU(Mac), BitReveal(bool, Mac), GarbledAnd(Vec<u8>, Vec<u8>, Vec<u8>, Vec<u8>), WireMac(bool, Mac), MaskedInput(bool), WireLabel { wire: WireIndex, label: [u8; 16], },
}
Expand description

Messages that are actually sent between parties in the top-level MPC protocol.

Variants§

§

Sync

A round synchronization message

§

RequestBitAuth(BitID, Sender<SubMessage>, Receiver<SubMessage>)

Request a number of bit authentications from another party.

§

BitAuth(BitID, Mac)

A response to a bit authentication request.

§

BroadcastCommitment(Commitment)

A commitment on a broadcast value.

§

BroadcastOpening(Opening)

The opening to a broadcast value.

§

SubChannel(Sender<SubMessage>, Receiver<SubMessage>)

A subchannel for running an 2-party subprotocol.

§

Mac(Mac)

A bit mac for validity checking

§

HalfAndHashes(bool, bool)

Values sent over to other parties in the half-AND protocol

§

LeakyAndU(Mac)

Value exchanged during leaky AND-triple check

§

BitReveal(bool, Mac)

A two-party bit reveal message

§

GarbledAnd(Vec<u8>, Vec<u8>, Vec<u8>, Vec<u8>)

A garbled AND gate, to be sent to the evaluator

§

WireMac(bool, Mac)

A MAC on a wire mask share

§

MaskedInput(bool)

Masked input wire value

§

WireLabel

Fields

§wire: WireIndex

The wire the label belongs to

§label: [u8; 16]

The wire label

A wire label, to be sent to the evaluator

Trait Implementations§

source§

impl Debug for MessagePayload

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, 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.