dcrypt_algorithms/code/
mod.rs

1//! Code-Based Cryptography Primitives
2//!
3//! This module is a placeholder for mathematical primitives required by
4//! code-based cryptosystems like Classic McEliece.
5
6#![cfg_attr(not(feature = "std"), no_std)]
7
8#[cfg(feature = "alloc")]
9extern crate alloc;
10
11pub mod sparse_matrix;
12
13// pub use sparse_matrix::SparseBinaryMatrix;
14// Might also include modules for:
15// - Goppa codes
16// - Syndrome decoding
17// - Permutation generation
18// - Polynomial arithmetic over GF(2^m)