[][src]Struct lpn::oracle::LpnOracle

pub struct LpnOracle {
    pub samples: Vec<Sample>,
    pub secret: BinVector,
    pub k: u32,
    pub delta: f64,
    pub delta_s: f64,
    // some fields omitted
}

This struct represents the oracle of the LPN problem.

We need to obtain the queries needed before applying reductions or transformations.

Fields

samples: Vec<Sample>

The samples held by this oracle.

Can be obtained via get_samples

secret: BinVector

The secret of this problem

k: u32

The size of this problem

delta: f64

The bias of this problem

delta_s: f64

The bias of the secret

Methods

impl LpnOracle[src]

pub fn new(k: u32, tau: f64) -> LpnOracle[src]

Create a new LPN problem with a random secret

pub fn new_with_secret(secret: BinVector, tau: f64) -> LpnOracle[src]

Create a new LPN problem with a set secret

pub fn get_samples(&mut self, n: usize)[src]

Get new samples from the oracle

These samples are stored in oracle.samples

Uses parallelism

Trait Implementations

impl Clone for LpnOracle[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,