dcrypt-algorithms 1.2.3

Cryptographic primitives for the dcrypt library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Code-Based Cryptography Primitives
//!
//! This module is a placeholder for mathematical primitives required by
//! code-based cryptosystems like Classic McEliece.

#![cfg_attr(not(feature = "std"), no_std)]

#[cfg(feature = "alloc")]
extern crate alloc;

pub mod sparse_matrix;

// pub use sparse_matrix::SparseBinaryMatrix;
// Might also include modules for:
// - Goppa codes
// - Syndrome decoding
// - Permutation generation
// - Polynomial arithmetic over GF(2^m)