Registry / crypto / vsss-rs

vsss-rs

JSON →
library5.4.0rscratesunverified

Verifiable Secret Sharing Schemes for splitting, combining and verifying secret shares.

# Cargo.toml [dependencies] vsss-rs = "5.4.0"
INSTALL
IMPORT
SIG · VSSS-RS
V
vsss-rs
cryptorustv5.4.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

ShamirSecretSharing
use vsss_rs::ShamirSecretSharing;

Minimal example splitting a secret into shares using Shamir's scheme.

use vsss_rs::ShamirSecretSharing; fn main() { let scheme = ShamirSecretSharing::new(3, 5); // threshold 3, total 5 shares let secret = b"my secret"; let shares = scheme.split(secret).unwrap(); println!("Generated {} shares", shares.len()); }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
5.4.0latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
29 hits · last 30 days
node
24
Amazon
1
Resources
vsss-rs — cargo add vsss-rs · libregistry