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
|
Source: libgfshare
Section: devel
Priority: extra
Maintainer: Simon McVittie <smcv@ianadd.pseudorandom.co.uk>
Standards-Version: 3.7.2.2
Build-Depends: cdbs, debhelper (>= 5)
Vcs-Bzr: http://bzr.debian.org/~smcv-guest/bzr/libgfshare
Homepage: http://www.digital-scurf.org/software/libgfshare
XS-Dm-Upload-Allowed: yes
Package: libgfshare-bin
Architecture: any
Section: utils
Depends: ${shlibs:Depends}
Description: utilities for multi-way secret-sharing
This package contains the gfsplit and gfcombine binaries.
.
gfsplit can be used to split a secret file (like a GPG secret key)
into multiple parts, so that at least some number of those parts are needed
to recover the original file, but any smaller combination of parts is useless
to an attacker. gfcombine is used to combine the parts created by gfsplit.
.
For instance, you might split a GPG key using a 3-of-5 share and put one
share on each of three computers, and two shares on a USB memory stick; then
you can use the GPG key on any of those three computers using the memory
stick, but if the memory stick is lost, you can recover the key by
bringing the three computers together.
Package: libgfshare1
Architecture: any
Section: libs
Depends: ${shlibs:Depends}
Suggests: libgfshare-bin
Description: library for multi-way secret-sharing
This library implements Shamir's method for secret sharing, which can be
used to split a secret (like a GPG secret key) into multiple parts, so that
at least some number of those parts are needed to recover the original file,
but any smaller combination of parts is useless to an attacker.
.
For instance, you might split a GPG key using a 3-of-5 share and put one
share on each of three computers, and two shares on a USB memory stick; then
you can use the GPG key on any of those three computers using the memory
stick, but if the memory stick is lost, you can recover the key by
bringing the three computers together.
Package: libgfshare-dev
Architecture: any
Section: libdevel
Depends: libgfshare1 (= ${binary:Version})
Suggests: libgfshare-dbg, libgfshare-bin
Replaces: libgfshare1 (<< 1.0.2-1)
Description: library for multi-way secret-sharing (headers)
This library implements Shamir's method for secret sharing, which can be
used to split a secret (like a GPG secret key) into multiple parts, so that
at least some number of those parts are needed to recover the original file,
but any smaller combination of parts is useless to an attacker.
.
This package contains header files and static libraries, needed to compile
programs that use libgfshare.
Package: libgfshare-dbg
Architecture: any
Section: libdevel
Priority: extra
Depends: libgfshare1 (= ${binary:Version}), libgfshare-bin (= ${binary:Version})
Description: library for multi-way secret-sharing (debug symbols)
This library implements Shamir's method for secret sharing, which can be
used to split a secret (like a GPG secret key) into multiple parts, so that
at least some number of those parts are needed to recover the original file,
but any smaller combination of parts is useless to an attacker.
.
This package contains support for debugging programs that use libgfshare.
|