lpn 0.1.2

Software to study attacks on the Learning Parity with Noise problem
Documentation
//! This library provides everything you need to program attacks on LPN
//! as if you were writing them on paper.

// needed for the covering codes reduction
#![feature(vec_remove_item)]

extern crate fnv;
extern crate itertools;
extern crate m4ri_rust;
extern crate rand;
extern crate rayon;
#[cfg(test)]
#[macro_use]
extern crate lazy_static;
extern crate binomial_iter;

extern crate serde;
#[macro_use]
extern crate serde_derive;

pub mod bkw;
pub mod covering_codes;
pub mod gauss;
pub mod lf1;
pub mod oracle;

pub mod codes;