rust-threshold-secret-sharing icon indicating copy to clipboard operation
rust-threshold-secret-sharing copied to clipboard

A pure-Rust implementation of various threshold secret sharing schemes

Results 5 rust-threshold-secret-sharing issues
Sort by recently updated
recently updated
newest added

`let ref tss = tss::shamir::ShamirSecretSharing { threshold: 1, share_count: 4, prime : 11 }; let mobile_number_secret = 9034218120; let all_shares = tss.share(mobile_number_secret); let recovered_share = 3; assert!(recovered_share >= tss.reconstruct_limit()); let...

- upsample numbers in calculate polynomial to support full range of i64 values in standalone shamir sharing case. - add respective test to check no overflow occurs

nothing has been done so far to harden against side-channel attacks