1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup github 1.0 |
---|
6 | |
---|
7 | github.setup okoeroo ssss 1.0.1 |
---|
8 | categories security |
---|
9 | platforms darwin |
---|
10 | maintainers nikhef.nl:okoeroo |
---|
11 | license Apache-2 |
---|
12 | |
---|
13 | description Shamir's Secret Sharing Service |
---|
14 | |
---|
15 | long_description Shamir's Secret Sharing is an algorithm in cryptography. It is a form of secret sharing, where a \ |
---|
16 | secret is divided into parts, giving each participant its own unique part, where some of the parts \ |
---|
17 | or all of them are needed in order to reconstruct the secret. \ |
---|
18 | Counting on all participants to combine together the secret might be impractical, and therefore \ |
---|
19 | sometimes the threshold scheme is used where any k of the parts are sufficient to reconstruct the \ |
---|
20 | original secret. |
---|
21 | |
---|
22 | checksums rmd160 52db3ea26b68202e17057f30934c83dcf666ed0d \ |
---|
23 | sha256 d936cd1bd36ca0d5fe0f0e9401d5f3d1f2ea458bd218b6245c7b80de10661a53 |
---|
24 | |
---|
25 | depends_lib port:openssl |
---|
26 | |
---|
27 | test.run yes |
---|
28 | test.target check |
---|
29 | |
---|
30 | pre-configure { |
---|
31 | system -W ${worksrcpath} "/bin/mkdir project" |
---|
32 | system -W ${worksrcpath} "/bin/bash bootstrap" |
---|
33 | } |
---|