rlnc-simdx 1.3.0

SIMD-accelerated Random Linear Network Coding over GF(2^8) — no_std, maximum SIMD
Documentation
1
2
3
4
5
6
7
8
9
//! GF(2⁸) finite field arithmetic.
//!
//! Primitive polynomial: x⁸ + x⁴ + x³ + x + 1  (0x11B, AES polynomial)
//! Generator: 0x03

pub mod gf8;
pub(crate) mod tables;

pub use gf8::Gf8;