1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
//! (Random) subfield vector oblivious linear evaluation (sVOLE) traits +
//! instantiations.
//!
//! This module provides traits for sVOLE, alongside an implementation of the
//! Weng-Yang-Katz-Wang maliciously secure random sVOLE protocol.
//!

pub mod wykw;

use crate::errors::Error;
use crate::svole::wykw::LpnParams;
use rand::{CryptoRng, Rng};
use scuttlebutt::{field::FiniteField as FF, AbstractChannel};

/// Trait for an sVOLE sender.
pub trait SVoleSender
where
    Self: Sized,
{
    /// Finite field for which sVOLEs are generated.
    type Msg: FF;
    /// Runs any one-time initialization.
    fn init<C: AbstractChannel, RNG: CryptoRng + Rng>(
        channel: &mut C,
        rng: &mut RNG,
        lpn_setup: LpnParams,
        lpn_extend: LpnParams,
    ) -> Result<Self, Error>;
    /// Generates sVOLEs.
    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>;
    /// Duplicates the sender's state.
    fn duplicate<C: AbstractChannel, RNG: CryptoRng + Rng>(
        &mut self,
        channel: &mut C,
        rng: &mut RNG,
    ) -> Result<Self, Error>;
}

/// Trait for an sVOLE receiver.
pub trait SVoleReceiver
where
    Self: Sized,
{
    /// Finite field for which sVOLEs are generated.
    type Msg: FF;
    /// Runs any one-time initialization.
    fn init<C: AbstractChannel, RNG: CryptoRng + Rng>(
        channel: &mut C,
        rng: &mut RNG,
        lpn_setup: LpnParams,
        lpn_extend: LpnParams,
    ) -> Result<Self, Error>;
    /// Returns delta.
    fn delta(&self) -> Self::Msg;
    /// Generates sVOLEs.
    fn receive<C: AbstractChannel, RNG: CryptoRng + Rng>(
        &mut self,
        channel: &mut C,
        rng: &mut RNG,
        out: &mut Vec<Self::Msg>,
    ) -> Result<(), Error>;
    /// Duplicates the receiver's state.
    fn duplicate<C: AbstractChannel, RNG: CryptoRng + Rng>(
        &mut self,
        channel: &mut C,
        rng: &mut RNG,
    ) -> Result<Self, Error>;
}