| Crates.io | ligerito-reed-solomon |
| lib.rs | ligerito-reed-solomon |
| version | 0.3.2 |
| created_at | 2025-11-15 21:36:39.149252+00 |
| updated_at | 2025-12-04 09:25:52.95312+00 |
| description | Reed-Solomon erasure coding for Ligerito over binary fields |
| homepage | |
| repository | https://github.com/rotkonetworks/zeratul |
| max_upload_size | |
| id | 1934830 |
| size | 64,732 |
reed-solomon erasure coding over binary fields using fft-based encoding.
std (default): standard library supportparallel (default): multi-threaded fft with rayonhardware-accel (default): simd acceleration for field operationsuse ligerito_reed_solomon::encode;
use ligerito_binary_fields::BinaryElem32;
let data: Vec<BinaryElem32> = vec![/* your polynomial coefficients */];
let encoded = encode(&data, rate);
part of the ligerito polynomial commitment scheme implementation.
mit / apache-2.0