fountain_engine 2.0.1

Core algorithms for fountain code encoding and decoding
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright (c) 2025 Shenghao Yang. All rights reserved.
// Licensed under AGPL-3.0 or commercial license. See LICENSE for details.

//! Algebraic primitives for fountain code arithmetic.
//!
//! Provides GF(2^8) finite field operations, matrix/linear-system solvers,
//! and binary (GF(2)) vector utilities.

/// GF(2^8) finite field with lookup-table-based arithmetic.
pub mod finite_field;
/// Matrix operations and LU-based linear system solvers over GF(256).
pub mod linear_algebra;

pub use finite_field::*;
pub use linear_algebra::*;