File: control

package info (click to toggle)
ssss 0.5-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 204 kB
  • ctags: 99
  • sloc: ansic: 1,024; xml: 268; makefile: 36
file content (29 lines) | stat: -rw-r--r-- 1,378 bytes parent folder | download
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
Source: ssss
Section: utils
Priority: optional
Maintainer: Tomasz Buchert <tomasz@debian.org>
Build-Depends: debhelper (>= 9), libgmp3-dev, xmltoman
Standards-Version: 3.9.6
Homepage: http://point-at-infinity.org/ssss/
Vcs-Git: git://anonscm.debian.org/collab-maint/ssss.git
Vcs-Browser: https://anonscm.debian.org/cgit/collab-maint/ssss.git

Package: ssss
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Shamir's secret sharing scheme implementation
 Implementation of Shamir's Secret Sharing Scheme. The program suite
 does both: the generation of shares for a known secret, and the 
 reconstruction of a secret using user-provided shares.
 .
 Shamir's Secret Sharing Scheme allows a secret to be split in to shares. 
 These shares can then be distributed to different people. When the time comes 
 to retrieve the secret then a preset number of the shares need to be combined.
 The number of shares created, and the number needed to retrieve the secret 
 are set at splitting time. The number of shares required to re-create the 
 secret can be chosen to be less that the number of shares created, so any 
 large enough subset of the shares can retrieve the secret.
 .
 This scheme allows a secret to be shared, either to reduce the chances that 
 the secret is lost, or to increase the number of parties that must cooperate
 to reveal the secret.