libss is a Rust library for secret sharing.
WARNING: This implementation has not received any audit and is NOT ready for production use.
libss provides an impelmentation of shamir secret sharing over the field GF(2**8), supporting arbitrary size secrets with up to 255 shares.
src/gf256.rs
: Rust module that provides an implementation of the finite field GF(2**8)src/shamir.rs
: Rust module that impelments shamir secret sharing over GF256This library comes with unit tests for each of the provided crates. Run the tests with:
bash
cargo test
To perform the benchmarks, run the following command:
bash
cargo bench