diff options
author | agc <agc@pkgsrc.org> | 2009-08-09 05:52:36 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2009-08-09 05:52:36 +0000 |
commit | e7abeb35342dee6b71b6627b39a5c9f2d35570c3 (patch) | |
tree | 3029077c6fd950870a4ca276a228673003615dbe /security/ssss/patches | |
parent | bf2fbd5dfe78d5289fde4a54f5bf9bd91999a480 (diff) | |
download | pkgsrc-e7abeb35342dee6b71b6627b39a5c9f2d35570c3.tar.gz |
Initial import of security/ssss-0.5 into the packages collection.
Shamir's Secret Sharing Scheme (SSSS) is an implementation of a
threshold scheme for sharing a secret between third parties, and
requiring a threshold of those parties to collaborate to reveal the
secret.
Taken from the Wikipedia article about Secret Sharing:
In cryptography, a secret sharing scheme is a method for
distributing a secret amongst a group of participants, each of
which is allocated a share of the secret. The secret can only
be reconstructed when the shares are combined together;
individual shares are of no use on their own.
Shamir's scheme is provable secure: in a (t,n) scheme one can prove
that it makes no difference whether an attacker has t-1 valid shares
at his disposal or none at all; as long as he has less than t shares,
there is no better option than guessing to find out the secret.
Diffstat (limited to 'security/ssss/patches')
-rw-r--r-- | security/ssss/patches/patch-aa | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/security/ssss/patches/patch-aa b/security/ssss/patches/patch-aa new file mode 100644 index 00000000000..2496ffb6b64 --- /dev/null +++ b/security/ssss/patches/patch-aa @@ -0,0 +1,10 @@ +$NetBSD: patch-aa,v 1.1.1.1 2009/08/09 05:52:36 agc Exp $ + +--- Makefile 2009/07/01 17:31:02 1.1 ++++ Makefile 2009/07/01 17:31:35 +@@ -1,4 +1,4 @@ +-all: ssss-split ssss-combine ssss.1 ssss.1.html ++all: ssss-split ssss-combine + + ssss-split: ssss.c + $(CC) -W -Wall -O2 -lgmp -o ssss-split ssss.c |