├── .gitattributes ├── .gitignore ├── BKW reduction ├── BKW-reduction.cpp ├── BKW-reduction.h ├── LPN_Oracle.cpp ├── LPN_Oracle.h └── Readme.txt ├── Gaussian algorithm ├── LPN_Oracle.cpp ├── LPN_Oracle.h ├── Prange.cpp ├── Prange.h └── Readme.txt ├── MMT ├── Readme.txt ├── hashmap │ ├── LPN_Oracle.cpp │ ├── LPN_Oracle.h │ ├── MMT.cpp │ ├── MMT.h │ ├── Matrixoperations.cpp │ ├── Matrixoperations.h │ ├── Permutation.cpp │ └── Permutation.h └── sorted lists │ ├── LPN_Oracle.cpp │ ├── LPN_Oracle.h │ ├── MMT.cpp │ ├── MMT.h │ ├── Matrixoperations.cpp │ ├── Matrixoperations.h │ ├── Permutation.cpp │ └── Permutation.h ├── README.md └── Well-pool generation ├── LPN_Oracle.cpp ├── LPN_Oracle.h ├── Readme.txt ├── Sampling_Test.cpp └── Sampling_Test.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Memphisd/LPN-decoded/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Memphisd/LPN-decoded/HEAD/.gitignore -------------------------------------------------------------------------------- /BKW reduction/BKW-reduction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Memphisd/LPN-decoded/HEAD/BKW reduction/BKW-reduction.cpp -------------------------------------------------------------------------------- /BKW reduction/BKW-reduction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Memphisd/LPN-decoded/HEAD/BKW reduction/BKW-reduction.h -------------------------------------------------------------------------------- /BKW reduction/LPN_Oracle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Memphisd/LPN-decoded/HEAD/BKW reduction/LPN_Oracle.cpp -------------------------------------------------------------------------------- /BKW reduction/LPN_Oracle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Memphisd/LPN-decoded/HEAD/BKW reduction/LPN_Oracle.h -------------------------------------------------------------------------------- /BKW reduction/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Memphisd/LPN-decoded/HEAD/BKW reduction/Readme.txt -------------------------------------------------------------------------------- /Gaussian algorithm/LPN_Oracle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Memphisd/LPN-decoded/HEAD/Gaussian algorithm/LPN_Oracle.cpp -------------------------------------------------------------------------------- /Gaussian algorithm/LPN_Oracle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Memphisd/LPN-decoded/HEAD/Gaussian algorithm/LPN_Oracle.h -------------------------------------------------------------------------------- /Gaussian algorithm/Prange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Memphisd/LPN-decoded/HEAD/Gaussian algorithm/Prange.cpp -------------------------------------------------------------------------------- /Gaussian algorithm/Prange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Memphisd/LPN-decoded/HEAD/Gaussian algorithm/Prange.h -------------------------------------------------------------------------------- /Gaussian algorithm/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Memphisd/LPN-decoded/HEAD/Gaussian algorithm/Readme.txt -------------------------------------------------------------------------------- /MMT/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Memphisd/LPN-decoded/HEAD/MMT/Readme.txt -------------------------------------------------------------------------------- /MMT/hashmap/LPN_Oracle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Memphisd/LPN-decoded/HEAD/MMT/hashmap/LPN_Oracle.cpp -------------------------------------------------------------------------------- /MMT/hashmap/LPN_Oracle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Memphisd/LPN-decoded/HEAD/MMT/hashmap/LPN_Oracle.h -------------------------------------------------------------------------------- /MMT/hashmap/MMT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Memphisd/LPN-decoded/HEAD/MMT/hashmap/MMT.cpp -------------------------------------------------------------------------------- /MMT/hashmap/MMT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Memphisd/LPN-decoded/HEAD/MMT/hashmap/MMT.h -------------------------------------------------------------------------------- /MMT/hashmap/Matrixoperations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Memphisd/LPN-decoded/HEAD/MMT/hashmap/Matrixoperations.cpp -------------------------------------------------------------------------------- /MMT/hashmap/Matrixoperations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Memphisd/LPN-decoded/HEAD/MMT/hashmap/Matrixoperations.h -------------------------------------------------------------------------------- /MMT/hashmap/Permutation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Memphisd/LPN-decoded/HEAD/MMT/hashmap/Permutation.cpp -------------------------------------------------------------------------------- /MMT/hashmap/Permutation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Memphisd/LPN-decoded/HEAD/MMT/hashmap/Permutation.h -------------------------------------------------------------------------------- /MMT/sorted lists/LPN_Oracle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Memphisd/LPN-decoded/HEAD/MMT/sorted lists/LPN_Oracle.cpp -------------------------------------------------------------------------------- /MMT/sorted lists/LPN_Oracle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Memphisd/LPN-decoded/HEAD/MMT/sorted lists/LPN_Oracle.h -------------------------------------------------------------------------------- /MMT/sorted lists/MMT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Memphisd/LPN-decoded/HEAD/MMT/sorted lists/MMT.cpp -------------------------------------------------------------------------------- /MMT/sorted lists/MMT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Memphisd/LPN-decoded/HEAD/MMT/sorted lists/MMT.h -------------------------------------------------------------------------------- /MMT/sorted lists/Matrixoperations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Memphisd/LPN-decoded/HEAD/MMT/sorted lists/Matrixoperations.cpp -------------------------------------------------------------------------------- /MMT/sorted lists/Matrixoperations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Memphisd/LPN-decoded/HEAD/MMT/sorted lists/Matrixoperations.h -------------------------------------------------------------------------------- /MMT/sorted lists/Permutation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Memphisd/LPN-decoded/HEAD/MMT/sorted lists/Permutation.cpp -------------------------------------------------------------------------------- /MMT/sorted lists/Permutation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Memphisd/LPN-decoded/HEAD/MMT/sorted lists/Permutation.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Memphisd/LPN-decoded/HEAD/README.md -------------------------------------------------------------------------------- /Well-pool generation/LPN_Oracle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Memphisd/LPN-decoded/HEAD/Well-pool generation/LPN_Oracle.cpp -------------------------------------------------------------------------------- /Well-pool generation/LPN_Oracle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Memphisd/LPN-decoded/HEAD/Well-pool generation/LPN_Oracle.h -------------------------------------------------------------------------------- /Well-pool generation/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Memphisd/LPN-decoded/HEAD/Well-pool generation/Readme.txt -------------------------------------------------------------------------------- /Well-pool generation/Sampling_Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Memphisd/LPN-decoded/HEAD/Well-pool generation/Sampling_Test.cpp -------------------------------------------------------------------------------- /Well-pool generation/Sampling_Test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Memphisd/LPN-decoded/HEAD/Well-pool generation/Sampling_Test.h --------------------------------------------------------------------------------