lpn 0.2.0

Software to study attacks on the Learning Parity with Noise problem
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Random codes from the supplemental material of Bogos and Vaudenay, 2016 which appeared at Asiacrypt

#[allow(unused_macros)]
macro_rules! useit {
    ($name:ident) => {
        mod $name;
        pub use self::$name::*;
    };
}

#[cfg(feature = "bogosrnd_18")]
useit!(bogosrnd_18_6);
#[cfg(feature = "bogosrnd_19")]
useit!(bogosrnd_19_6);
#[cfg(feature = "bogosrnd_19")]
useit!(bogosrnd_19_7);