secret-sharing-rs 0.5.1

Secret-sharing primitives (Shamir, Blakley, ramp, VSS, CRT, visual, etc.) implemented directly from the original papers with no external dependencies.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
//! Shamir 1979 (k, n) threshold scheme, plus the Karnin–Greene–Hellman
//! 1983 §IV multi-secret extension.
//!
//! Single-secret form (Shamir §2):
//! - Pick a random degree-`(k − 1)` polynomial
//!   `q(x) = a_0 + a_1 x + … + a_{k-1} x^{k-1}` with `a_0 = D` and the
//!   remaining coefficients drawn uniformly from `[0, p)`.
//! - Trustee `i ∈ {1, …, n}` is given `(i, q(i) mod p)`.
//! - Any `k` shares interpolate `q(x)` and yield `D = q(0)`. Knowledge
//!   of `k − 1` or fewer shares is uniform over the `p` candidate
//!   secrets.
//!
//! Karnin–Greene–Hellman 1983 §IV (their equations 23–24, restated as
//! Note 1 in §III: the Vandermonde matrix scheme reduces to Shamir's
//! scheme with the polynomial `D(x) = u_1 + u_2 x + … + u_k x^{k-1}`):
//! pack `ℓ ≤ k` independent secrets into the lowest-order coefficients
//! `a_0, …, a_{ℓ-1}` and fill the upper coefficients with random
//! padding. Any `k` trustees recover all `ℓ` secrets simultaneously,
//! and any `k − 1` trustees learn nothing about any single secret.

use crate::field::PrimeField;
use crate::poly::{horner, lagrange_eval};
use crate::bigint::BigUint;
use crate::csprng::Csprng;
use crate::secure::{ct_eq_biguint, Zeroizing};

/// One trustee's piece: an `(x, y)` evaluation of the sharing
/// polynomial. The `x` coordinate is public and acts as the trustee's
/// label.
#[derive(Clone, Eq, PartialEq)]
pub struct Share {
    pub x: BigUint,
    pub y: BigUint,
}

impl core::fmt::Debug for Share {
    fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
        // Secret-bearing: do not print field contents.
        f.write_str("Share(<elided>)")
    }
}

/// Shamir (k, n) split. `k` is the reconstruction threshold and `n` the
/// number of shares.
///
/// # Panics
/// - `k < 2` (a degree-0 polynomial would put the secret in every
///   share's `y`).
/// - `n < k`.
/// - `n ≥ p` — Shamir requires `n + 1` distinct nonzero abscissae in
///   `[0, p)`, hence `p > n`.
#[must_use]
pub fn split<R: Csprng>(
    field: &PrimeField,
    rng: &mut R,
    secret: &BigUint,
    k: usize,
    n: usize,
) -> Vec<Share> {
    assert!(k >= 2, "k must be at least 2 (k = 1 would leak the secret)");
    assert!(n >= k, "n must be at least k");
    assert!(
        BigUint::from_u64(n as u64) < *field.modulus(),
        "prime modulus must exceed n",
    );

    // Wrap the polynomial coefficients in `Zeroizing` so the secret
    // (a_0) and every random pad (a_1..a_{k-1}) get volatile-zeroed
    // when this function returns — even on early panic. The Vec's
    // BigUint elements still self-zeroize on Drop; Zeroizing is the
    // belt-and-braces guarantee that the *outer* allocation is also
    // scrubbed and not handed back to the allocator with residue.
    let mut coeffs = Zeroizing::new(Vec::<BigUint>::with_capacity(k));
    coeffs.push(field.reduce(secret));
    for _ in 1..k {
        coeffs.push(field.random(rng));
    }

    (1..=n)
        .map(|i| {
            let x = BigUint::from_u64(i as u64);
            let y = horner(field, &coeffs, &x);
            Share { x, y }
        })
        .collect()
}

/// Recover the Shamir secret from at least `k` shares using Lagrange
/// interpolation evaluated at `x = 0`. The first `k` shares are used to
/// fit a degree-`(k − 1)` polynomial; any extras are validated against
/// that polynomial and the function returns `None` if any disagrees,
/// so a caller cannot accidentally accept an inconsistent share set.
///
/// Returns `None` if:
/// - `shares.len() < k`,
/// - any share has a zero `x`,
/// - any two shares share an `x`,
/// - any extra share (index `≥ k`) disagrees with the polynomial fit
///   to the first `k`.
#[must_use]
pub fn reconstruct(field: &PrimeField, shares: &[Share], k: usize) -> Option<BigUint> {
    if k == 0 || shares.len() < k {
        return None;
    }
    for s in shares {
        if s.x.is_zero() {
            return None;
        }
    }
    for i in 0..shares.len() {
        for j in (i + 1)..shares.len() {
            if shares[i].x == shares[j].x {
                return None;
            }
        }
    }
    let pts: Vec<(BigUint, BigUint)> = shares
        .iter()
        .take(k)
        .map(|s| (s.x.clone(), s.y.clone()))
        .collect();
    let secret = lagrange_eval(field, &pts, &BigUint::zero())?;

    for s in &shares[k..] {
        let pred = lagrange_eval(field, &pts, &s.x)?;
        if !ct_eq_biguint(&pred, &s.y) {
            return None;
        }
    }
    Some(secret)
}

/// Karnin–Greene–Hellman §IV multi-secret split. `secrets.len()` must
/// satisfy `1 ≤ ℓ ≤ k`. The first `ℓ` polynomial coefficients carry
/// the secrets in order; the remaining `k − ℓ` coefficients are random.
/// All `n` trustees still receive a single `(x, y)` share each.
///
/// # Panics
/// - `k < 2` (a degree-0 polynomial would put the secrets in every
///   share's `y`).
/// - `secrets.len()` outside `1..=k`.
/// - `n < k`.
/// - `n ≥ p`.
#[must_use]
pub fn split_multi<R: Csprng>(
    field: &PrimeField,
    rng: &mut R,
    secrets: &[BigUint],
    k: usize,
    n: usize,
) -> Vec<Share> {
    let l = secrets.len();
    assert!(k >= 2, "k must be at least 2 (k = 1 would leak the secret)");
    assert!(l >= 1 && l <= k, "need 1 ≤ ℓ ≤ k secrets");
    assert!(n >= k, "n must be at least k");
    assert!(
        BigUint::from_u64(n as u64) < *field.modulus(),
        "prime modulus must exceed n",
    );

    // Same Zeroizing guard as `split` above; coefficients carry every
    // secret in `secrets` plus the random pad.
    let mut coeffs = Zeroizing::new(Vec::<BigUint>::with_capacity(k));
    for s in secrets {
        coeffs.push(field.reduce(s));
    }
    for _ in l..k {
        coeffs.push(field.random(rng));
    }

    (1..=n)
        .map(|i| {
            let x = BigUint::from_u64(i as u64);
            let y = horner(field, &coeffs, &x);
            Share { x, y }
        })
        .collect()
}

/// Recover all `ℓ` secrets from a multi-secret split.
///
/// Build the `k × k` Vandermonde linear system on the first `k` shares,
/// solve for `(a_0, …, a_{k-1})` by Gaussian elimination over the
/// field, and return the first `ell` coefficients. When more than `k`
/// shares are supplied the extras are used to verify the recovered
/// polynomial: any extra share whose `y` does not match the polynomial
/// causes the function to return `None` rather than silently accept a
/// corrupt or inconsistent set.
///
/// Returns `None` on:
/// - empty input or `shares.len() < k`,
/// - duplicate or zero `x` coordinates,
/// - `ell == 0` or `ell > k`,
/// - any extra share (index `≥ k`) inconsistent with the polynomial
///   recovered from the first `k`.
#[must_use]
#[allow(clippy::needless_range_loop)] // index-driven Gaussian elimination
pub fn reconstruct_multi(
    field: &PrimeField,
    shares: &[Share],
    k: usize,
    ell: usize,
) -> Option<Vec<BigUint>> {
    if ell == 0 || ell > k || shares.len() < k {
        return None;
    }
    for s in shares {
        if s.x.is_zero() {
            return None;
        }
    }
    // Reject duplicate `x` coordinates anywhere in `shares` — a
    // duplicate among the first `k` makes the system singular, and a
    // duplicate spanning the consistency-check region would mask
    // tampering.
    for i in 0..shares.len() {
        for j in (i + 1)..shares.len() {
            if shares[i].x == shares[j].x {
                return None;
            }
        }
    }

    let used = &shares[..k];

    // Augmented Vandermonde system: row i is [1, x_i, x_i^2, …, x_i^{k-1} | y_i].
    let mut mat: Vec<Vec<BigUint>> = Vec::with_capacity(k);
    for s in used {
        let mut row = Vec::with_capacity(k + 1);
        let mut x_pow = BigUint::one();
        for _ in 0..k {
            row.push(x_pow.clone());
            x_pow = field.mul(&x_pow, &s.x);
        }
        row.push(s.y.clone());
        mat.push(row);
    }

    // Gaussian elimination over GF(p). With distinct x_i the system is
    // nonsingular (Vandermonde determinant), so pivots are nonzero in
    // exact arithmetic; if a pivot turns out to be zero we abort.
    for col in 0..k {
        let mut pivot_row = None;
        for r in col..k {
            if !mat[r][col].is_zero() {
                pivot_row = Some(r);
                break;
            }
        }
        let pr = pivot_row?;
        if pr != col {
            mat.swap(pr, col);
        }
        let inv = field.inv(&mat[col][col])?;
        for c in col..=k {
            mat[col][c] = field.mul(&mat[col][c], &inv);
        }
        for r in 0..k {
            if r == col {
                continue;
            }
            if mat[r][col].is_zero() {
                continue;
            }
            let factor = mat[r][col].clone();
            for c in col..=k {
                let term = field.mul(&factor, &mat[col][c]);
                mat[r][c] = field.sub(&mat[r][c], &term);
            }
        }
    }

    let coeffs: Vec<BigUint> = (0..k).map(|i| mat[i][k].clone()).collect();

    // Validate every extra share (index ≥ k) against the recovered
    // polynomial. Extras that disagree mean the caller supplied
    // inconsistent inputs — refuse rather than silently truncate.
    for s in &shares[k..] {
        let pred = crate::poly::horner(field, &coeffs, &s.x);
        if !ct_eq_biguint(&pred, &s.y) {
            return None;
        }
    }

    Some(coeffs.into_iter().take(ell).collect())
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::csprng::ChaCha20Rng;

    fn rng() -> ChaCha20Rng {
        ChaCha20Rng::from_seed(&[42u8; 32])
    }

    fn small_field() -> PrimeField {
        // 2^61 − 1 (Mersenne prime) — comfortably bigger than every
        // small (k, n) we exercise here, but small enough to be easy to
        // reason about during debugging.
        PrimeField::new(BigUint::from_u64((1u64 << 61) - 1))
    }

    #[test]
    fn basic_round_trip() {
        let f = small_field();
        let mut r = rng();
        let secret = BigUint::from_u64(0xC0FFEE);
        for &(k, n) in &[(2usize, 3usize), (3, 5), (5, 9), (2, 7)] {
            let shares = split(&f, &mut r, &secret, k, n);
            assert_eq!(shares.len(), n);
            // Every k-subset reconstructs the same secret.
            assert_eq!(reconstruct(&f, &shares[..k], k), Some(secret.clone()));
            assert_eq!(reconstruct(&f, &shares[1..1 + k], k), Some(secret.clone()));
        }
    }

    #[test]
    fn k_minus_one_does_not_yield_secret() {
        let f = small_field();
        let mut r = rng();
        let secret = BigUint::from_u64(987_654_321);
        let shares = split(&f, &mut r, &secret, 4, 7);
        // Lagrange through k − 1 points still returns *some* value (it
        // pretends the polynomial has degree k − 2), but since the
        // upper coefficients are uniform, the chance of accidentally
        // matching the real secret is 1/p — vanishingly small here.
        // Below threshold: reconstruct must refuse rather than return
        // a uniformly-random "secret". Above threshold but with k − 1
        // points used, a 3-point Lagrange against the 4-degree
        // polynomial yields a value that is uniform over GF(p) — it
        // should not equal the real secret in any practical run.
        assert!(reconstruct(&f, &shares[..3], 4).is_none());
        let partial = reconstruct(&f, &shares[..3], 3);
        assert_ne!(partial, Some(secret));
    }

    #[test]
    fn duplicate_x_is_rejected() {
        let f = small_field();
        let mut r = rng();
        let secret = BigUint::from_u64(7);
        let mut shares = split(&f, &mut r, &secret, 2, 3);
        shares[1].x = shares[0].x.clone();
        assert!(reconstruct(&f, &shares, 2).is_none());
    }

    #[test]
    fn multi_secret_recovers_all_secrets() {
        let f = small_field();
        let mut r = rng();
        let secrets: Vec<BigUint> = (1..=3).map(|i| BigUint::from_u64(1000 + i)).collect();
        let shares = split_multi(&f, &mut r, &secrets, 4, 6);
        let recovered = reconstruct_multi(&f, &shares, 4, 3).expect("decode");
        assert_eq!(recovered, secrets);
    }

    #[test]
    fn multi_secret_threshold_holds() {
        // Same configuration as above; now feed only k − 1 shares.
        let f = small_field();
        let mut r = rng();
        let secrets: Vec<BigUint> = (1..=3).map(|i| BigUint::from_u64(2000 + i)).collect();
        let shares = split_multi(&f, &mut r, &secrets, 4, 6);
        assert!(reconstruct_multi(&f, &shares[..3], 4, 3).is_none());
    }

    #[test]
    fn multi_secret_rejects_inconsistent_extra_share() {
        // A corrupted share past the first k must cause refusal, not
        // silent truncation.
        let f = small_field();
        let mut r = rng();
        let secrets: Vec<BigUint> = (1..=2).map(|i| BigUint::from_u64(50 + i)).collect();
        let mut shares = split_multi(&f, &mut r, &secrets, 3, 6);
        // shares[0..3] used to fit; shares[5] is an "extra" that we tamper.
        shares[5].y = f.add(&shares[5].y, &BigUint::from_u64(1));
        assert!(reconstruct_multi(&f, &shares, 3, 2).is_none());
    }

    #[test]
    fn reconstruct_below_threshold_returns_none() {
        // Below threshold, reconstruct must refuse rather than return a
        // uniform-random "secret" from a lower-degree fit.
        let f = small_field();
        let mut r = rng();
        let secret = BigUint::from_u64(0xCAFE);
        let shares = split(&f, &mut r, &secret, 4, 7);
        assert!(reconstruct(&f, &shares[..3], 4).is_none());
    }

    #[test]
    fn reconstruct_rejects_inconsistent_extra_share() {
        // With > k shares, an extra that disagrees with the polynomial
        // fit to the first k must yield None.
        let f = small_field();
        let mut r = rng();
        let secret = BigUint::from_u64(0xBEEF);
        let mut shares = split(&f, &mut r, &secret, 3, 6);
        shares[5].y = f.add(&shares[5].y, &BigUint::from_u64(1));
        assert!(reconstruct(&f, &shares, 3).is_none());
    }

    #[test]
    fn multi_secret_with_l_equals_one_matches_shamir() {
        // ℓ = 1 with arbitrary k, n must agree with plain Shamir.
        let f = small_field();
        let secret = BigUint::from_u64(0xDEAD_BEEF);
        let mut r1 = rng();
        let mut r2 = rng();
        let shares = split_multi(&f, &mut r1, std::slice::from_ref(&secret), 3, 5);
        let _ = split(&f, &mut r2, &secret, 3, 5); // exercise both code paths
        assert_eq!(
            reconstruct_multi(&f, &shares, 3, 1).map(|v| v[0].clone()),
            Some(secret)
        );
    }
}