pub struct OTReceiver { /* private fields */ }
Expand description

The state of the receiver

Implementations§

source§

impl OTReceiver

source

pub fn select( entropy: &mut Randomness, dst: &[u8], sender_message: OTSenderInit, choose_left: bool ) -> Result<(Self, OTReceiverSelect), Error>

Generate the first receiver message.

Initiates the OT receiver by generating a random P256 Scalar x which is used to mask the receivers choice bit c of output in the computation of the masked receiver selection R = cS + xB, where S is obtained from the initial sender message. The values required in the decryption of the sender messages are stored in the OTReceiver struct and the masked choice is wrapped in an OTReceiverSelect message for sending to the sender.

source

pub fn receive(&self, sender_message: OTSenderSend) -> Result<Vec<u8>, Error>

Receive the selected input from the sender.

A decryption key is generated based on the initialization message received from the sender and the masked choice generated during receiver initialization. Then trial-decryption of the sender messages are attempted. Correctness of the protocol guarantees that one decryption will be successful (exactly one, by security of the protocol) and will yield the receiver’s chosen output ending the OT session for the receiver.

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.