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

pub struct LpnOracle {
    pub samples: Vec<Sample>,
    pub secret: Sample,
    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: Sample

The secret of this problem

delta: f64

The bias of this problem

delta_s: f64

The bias of the secret

Implementations

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: Sample, k: u32, 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

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

Get samples from the oracle with a trailing number of zero bits

Uses parallelism

pub fn get_k(&self) -> usize[src]

pub unsafe fn set_k(&mut self, new_k: usize)[src]

Override what the value of k is, without running truncate.

pub fn truncate(&mut self, new_k: usize)[src]

Updates the problem to have fewer bits

Trait Implementations

impl Clone for LpnOracle[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T, U> Cast<U> for T where
    U: FromCast<T>, 
[src]

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

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

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

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

impl<T, U> IntoBits<U> for T where
    U: FromBits<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>,