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

The state of the sender

Implementations§

source§

impl OTSender

source

pub fn init( entropy: &mut Randomness, dst: &[u8] ) -> Result<(Self, OTSenderInit), Error>

Generate the first sender message.

Initiates an OT sender by picking a random P256 scalar y and deriving S = yB and T = yS, where B is the P256 base point. These values will later be used to derive encryption keys in the send stage of the protocol. In addition, the domain separation tag dst, which will be used in key generation is stored in the receiver and S is prepared for sending to the receiver by wrapping it in an OTSenderInit message.

source

pub fn send( &self, left_input: &[u8], right_input: &[u8], selection: &OTReceiverSelect, entropy: &mut Randomness ) -> Result<OTSenderSend, Error>

Generate the second sender message based on the receiver’s selection.

Given the OTReceiverSelect message and the two sender inputs, the sender can generate the transfer messages. It does so by deriving two domain separated encryption keys, based on the values S and T generated during initiation and on the masked choice bit sent by the receiver. It then encrypts the left and right inputs under their respective keys and prepares an OTSenderSend message with both ciphertexts. This finishes the OT session for the sender. By the security of the protocol, the receiver will only be able to generate one of the decryption keys, namely that one corresponding to its choice bit.

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.