pub mod wykw;
use crate::errors::Error;
use crate::svole::wykw::LpnParams;
use rand::{CryptoRng, Rng};
use scuttlebutt::{field::FiniteField as FF, AbstractChannel};
pub trait SVoleSender
where
Self: Sized,
{
type Msg: FF;
fn init<C: AbstractChannel, RNG: CryptoRng + Rng>(
channel: &mut C,
rng: &mut RNG,
lpn_setup: LpnParams,
lpn_extend: LpnParams,
) -> Result<Self, Error>;
fn send<C: AbstractChannel, RNG: CryptoRng + Rng>(
&mut self,
channel: &mut C,
rng: &mut RNG,
out: &mut Vec<(<Self::Msg as FF>::PrimeField, Self::Msg)>,
) -> Result<(), Error>;
fn duplicate<C: AbstractChannel, RNG: CryptoRng + Rng>(
&mut self,
channel: &mut C,
rng: &mut RNG,
) -> Result<Self, Error>;
}
pub trait SVoleReceiver
where
Self: Sized,
{
type Msg: FF;
fn init<C: AbstractChannel, RNG: CryptoRng + Rng>(
channel: &mut C,
rng: &mut RNG,
lpn_setup: LpnParams,
lpn_extend: LpnParams,
) -> Result<Self, Error>;
fn delta(&self) -> Self::Msg;
fn receive<C: AbstractChannel, RNG: CryptoRng + Rng>(
&mut self,
channel: &mut C,
rng: &mut RNG,
out: &mut Vec<Self::Msg>,
) -> Result<(), Error>;
fn duplicate<C: AbstractChannel, RNG: CryptoRng + Rng>(
&mut self,
channel: &mut C,
rng: &mut RNG,
) -> Result<Self, Error>;
}