Expand description
libss is a Rust libary for secret sharing
The shamir module contains an implementation of Shamir Secret Sharing over GF(2**8)
gf256 is a module which contains a representation of field elements in GF(2**8).
Modules§
- gf256
- gf256 is a module for field elements over the field GF(2**8) with irreducible polynomial x^8+x^4+x^3+x+1
- shamir
- Shamir is a module for shamir secret sharing.
Traits§
- Field
- The Field trait is taken from zkcrypto/ff This trait represents an element of a field.