Crates.io | libss |
lib.rs | libss |
version | 0.1.0 |
source | src |
created_at | 2019-06-04 02:24:53.16726 |
updated_at | 2019-06-04 02:24:53.16726 |
description | libss is a Rust library for secret sharing. |
homepage | |
repository | https://github.com/amousa11/libss |
max_upload_size | |
id | 138788 |
size | 27,766 |
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:
cargo test
To perform the benchmarks, run the following command:
cargo bench