Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 28 Jan 2024 21:53:59 GMT
From:      Daniel Engberg <diizzy@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 862511e5784e - main - security/ssss: Update to 0.5.7
Message-ID:  <202401282153.40SLrxT5016708@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by diizzy:

URL: https://cgit.FreeBSD.org/ports/commit/?id=862511e5784e381e08d88246358188dfcffc6901

commit 862511e5784e381e08d88246358188dfcffc6901
Author:     Daniel Engberg <diizzy@FreeBSD.org>
AuthorDate: 2024-01-28 12:56:01 +0000
Commit:     Daniel Engberg <diizzy@FreeBSD.org>
CommitDate: 2024-01-28 21:53:05 +0000

    security/ssss: Update to 0.5.7
    
    Switch to fork which fixes a few issues and while at it tidy up Makefile
    
    Changelog:
    https://github.com/MrJoy/ssss/compare/releases/v0.5...releases/v0.5.7
---
 security/ssss/Makefile             |  30 ++++-
 security/ssss/distinfo             |   5 +-
 security/ssss/files/patch-Makefile |  31 -----
 security/ssss/files/patch-manpage  | 227 -------------------------------------
 security/ssss/files/patch-ssss.1   |  68 +++++++++++
 security/ssss/files/patch-ssss.c   |  11 --
 6 files changed, 95 insertions(+), 277 deletions(-)

diff --git a/security/ssss/Makefile b/security/ssss/Makefile
index caa5dc30dd41..ed70d272644d 100644
--- a/security/ssss/Makefile
+++ b/security/ssss/Makefile
@@ -1,18 +1,36 @@
 PORTNAME=	ssss
-PORTVERSION=	0.5
-PORTREVISION=	4
+DISTVERSIONPREFIX=	releases/v
+DISTVERSION=	0.5.7
 CATEGORIES=	security
-MASTER_SITES=	http://point-at-infinity.org/ssss/
 
 MAINTAINER=	ports@FreeBSD.org
 COMMENT=	Shamir's Secret Sharing Scheme
 WWW=		http://point-at-infinity.org/ssss/
 
+LICENSE=	GPLv2
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
 LIB_DEPENDS=	libgmp.so:math/gmp
 
-PLIST_FILES=	bin/ssss-combine bin/ssss-split man/man1/ssss.1.gz
+USES=		localbase:ldflags
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	MrJoy
+
+PLIST_FILES=	bin/ssss-combine \
+		bin/ssss-split \
+		share/man/man1/ssss.1.gz
+
+do-build:
+	cd ${BUILD_WRKSRC} && \
+		${CC} ${CFLAGS} ${LDFLAGS} -Wall -o ssss-split ssss.c -lgmp
+
+do-install:
+	${INSTALL_PROGRAM} ${WRKSRC}/ssss-split ${STAGEDIR}${PREFIX}/bin
+	${RLN} ${STAGEDIR}${PREFIX}/bin/ssss-split ${STAGEDIR}${PREFIX}/bin/ssss-combine
+	${INSTALL_MAN} ${WRKSRC}/ssss.1 ${STAGEDIR}${PREFIX}/share/man/man1
 
-post-patch:
-	${REINPLACE_CMD} 's,(DESTDIR),&$$(PREFIX),' ${WRKSRC}/Makefile
+post-install:
+	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/ssss-split
 
 .include <bsd.port.mk>
diff --git a/security/ssss/distinfo b/security/ssss/distinfo
index 4b5a87b29299..c97f53476755 100644
--- a/security/ssss/distinfo
+++ b/security/ssss/distinfo
@@ -1,2 +1,3 @@
-SHA256 (ssss-0.5.tar.gz) = 5d165555105606b8b08383e697fc48cf849f51d775f1d9a74817f5709db0f995
-SIZE (ssss-0.5.tar.gz) = 17435
+TIMESTAMP = 1706443223
+SHA256 (MrJoy-ssss-releases-v0.5.7_GH0.tar.gz) = dbb1f03797cb3fa69594530f9b2c36010f66705b9d5fbbc27293dce72b9c9473
+SIZE (MrJoy-ssss-releases-v0.5.7_GH0.tar.gz) = 21774
diff --git a/security/ssss/files/patch-Makefile b/security/ssss/files/patch-Makefile
deleted file mode 100644
index 13e2cc7d5a3f..000000000000
--- a/security/ssss/files/patch-Makefile
+++ /dev/null
@@ -1,31 +0,0 @@
---- Makefile.orig	Thu Aug 30 17:28:27 2007
-+++ Makefile	Thu Aug 30 18:06:38 2007
-@@ -1,17 +1,19 @@
--all: ssss-split ssss-combine ssss.1 ssss.1.html
-+DESTDIR=/usr/local
-+
-+all: ssss-split ssss-combine 
- 
- ssss-split: ssss.c
--	$(CC) -W -Wall -O2 -lgmp -o ssss-split ssss.c
-+	$(CC) -W -Wall -O2 -I/usr/local/include -L/usr/local/lib -lgmp -o ssss-split ssss.c
- 	strip ssss-split
-+	mv ssss.manpage.xml ssss.1
- 
- ssss-combine: ssss-split
- 	ln -f ssss-split ssss-combine
- 
--ssss.1: ssss.manpage.xml
--	xmltoman ssss.manpage.xml > ssss.1
--
--ssss.1.html: ssss.manpage.xml
--	xmlmantohtml ssss.manpage.xml > ssss.1.html
--
- clean:
--	rm -rf ssss-split ssss-combine ssss.1 ssss.1.html
-+	rm -rf ssss-split ssss-combine ssss.1 
-+
-+install: all
-+	install -m0755 ssss-split $(DESTDIR)/bin
-+	install -m0755 ssss-combine $(DESTDIR)/bin
-+	install -m0644 ssss.1 $(DESTDIR)/man/man1
diff --git a/security/ssss/files/patch-manpage b/security/ssss/files/patch-manpage
deleted file mode 100644
index 55f4b3ddd118..000000000000
--- a/security/ssss/files/patch-manpage
+++ /dev/null
@@ -1,227 +0,0 @@
---- ssss.manpage.xml.orig	Sun Jan 15 12:10:01 2006
-+++ ssss.manpage.xml	Sat Mar 10 23:58:04 2007
-@@ -1,162 +1,62 @@
--<?xml version="1.0" standalone='no'?>
--<!DOCTYPE manpage SYSTEM "http://masqmail.cx/xmltoman/xmltoman.dtd">;
--
--<?xml-stylesheet type="text/xsl"
--href="http://masqmail.cx/xmltoman/xmltoman.xsl" ?>
--
--<manpage name="ssss" section="1" 
--  desc="Split and Combine Secrets using Shamir's Secret Sharing Scheme.">
--
--<synopsis>
--      <cmd>ssss-split -t <arg>threshold</arg> -n <arg>shares</arg> [-w <arg>token</arg>] 
--         [-s <arg>level</arg>] [-x] [-q] [-Q] [-D] [-v]</cmd>
--      <cmd>ssss-combine -t <arg>threshold</arg> [-x] [-q] [-Q] [-D] [-v]</cmd>
--</synopsis>
--
--<description>
--<p>ssss is an 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.</p>
--</description>
--
--<section name ="Commands">
--      <p><opt>ssss-split</opt>: prompt the user for a secret and generate a set of
--      corresponding shares.</p>
--      
--      <p><opt>ssss-combine</opt>: read in a set of shares and reconstruct
--      the secret.</p>
--</section>
--
--<options>
--
--      <option>
--<p><opt>-t <arg>threshold</arg></opt></p> <optdesc>
--<p>Specify the number of
--      shares necessary to reconstruct the secret.</p></optdesc>
--    
--</option>
--
--      <option>
--<p><opt>-n <arg>shares</arg></opt></p>
--<optdesc>
--      <p>Specify the number of shares to be generated.</p>
--</optdesc>
--</option>      
--      
--      <option><p><opt>-w <arg>token</arg></opt></p>
--<optdesc>
--      <p>Text token to name shares in order to avoid confusion in case one
--      utilizes secret sharing to protect several independent secrets. The
--      generated shares are prefixed by these tokens.</p>
--</optdesc>
--</option>      
--      
--      <option><p><opt>-s <arg>level</arg></opt></p>
--<optdesc>
--      <p>Enforce the scheme's security level (in bits). This option
--      implies an upper bound for the length of the shared secret
--      (shorter secrets are padded). Only multiples of 8 in the range
--      from 8 to 1024 are allowed. If this option is ommitted (or the
--      value given is 0) the security level is chosen automatically
--      depending on the secret's length.  The security level directly
--      determines the length of the shares.</p>
--</optdesc>
--</option>      
--
--      <option><p><opt>-x</opt></p>
--<optdesc>
--      <p>Hex mode: use hexadecimal digits in place of ASCII characters for
--      I/O. This is useful if one wants to protect binary data, like
--      block cipher keys.</p>
--</optdesc>
--</option>      
--
--      <option><p><opt>-q</opt></p>
--<optdesc>
--      <p>Quiet mode: disable all unnecessary output. Useful in scripts.
--      </p>
--</optdesc>
--</option>      
--      <option><p><opt>-Q</opt></p>
--<optdesc>
--      <p>Extra quiet mode: like <opt>-q</opt>, but also suppress
--warnings.</p>
--</optdesc>
--</option>      
--
--      <option><p><opt>-D</opt></p>
--<optdesc>
--      <p>Disable the diffusion layer added in version 0.2. This option
--      is needed when shares are combined that where generated with
--      ssss version 0.1.</p>
--</optdesc>
--</option>      
--
--      <option><p><opt>-v</opt></p>
--<optdesc>
--      <p>Print version information.</p>
--</optdesc>
--</option>      
--</options>
--
--<section name="Example">
--<p>
--        In case you want to protect your login password with a set of ten
--        shares in such a way that any three of them can reconstruct the
--        password, you simply run the command
--</p>
--
--<p>
--          ssss-split -t 3 -n 10 -w passwd
--</p>
--
--<p>
--        To reconstruct the password pass three of the generated shares
--        (in any order) to
--</p>
--
--<p>
--          ssss-combine -t 3
--</p>
--
--</section>
--<section name="Notes">
--<p>
--To protect a secret larger than 1024 bits a hybrid technique has to be
--applied: encrypt the secret with a block cipher and apply secret
--sharing to just the key. Among others openssl and gpg can do the
--encryption part:
--</p>
--<p>
--openssl bf -e &lt; file.plain &gt; file.encrypted
--</p>
--<p>
--gpg -c &lt; file.plain &gt; file.encrypted
--</p>
--
--</section>
--
--<section name="Security">
--<p>
--<opt>ssss</opt> tries to lock its virtual address space into RAM for
--privacy reasons. But this may fail for two reasons: either the current uid
--doesn't permit page locking, or the RLIMIT_MEMLOCK is set too
--low. After printing a warning message <opt>ssss</opt> will run even without
--obtaining the desired mlock.
--</p>
--
--</section>
--
--<section name="Author">
--        This software (v0.5) was written in 2006 by B. Poettering
--        (ssss AT point-at-infinity.org). Find the newest version of
--        ssss on the project's homepage: <url
--        href="http://point-at-infinity.org/ssss/"/>.
--</section>
--
--<section name="Further reading">
--        <url href="http://en.wikipedia.org/wiki/Secret_sharing"/>;
--</section>
--
--
--</manpage>
-+.TH ssss 1 User Manuals
-+.SH NAME
-+ssss \- Split and Combine Secrets using Shamir's Secret Sharing Scheme.
-+.SH SYNOPSIS
-+\fBssss-split -t \fIthreshold\fB -n \fIshares\fB [-w \fItoken\fB] [-s \fIlevel\fB] [-x] [-q] [-Q] [-D] [-v]
-+
-+ssss-combine -t \fIthreshold\fB [-x] [-q] [-Q] [-D] [-v]
-+\f1
-+.SH DESCRIPTION
-+ssss is an 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.
-+.SH COMMANDS
-+\fBssss-split\f1: prompt the user for a secret and generate a set of corresponding shares.
-+
-+\fBssss-combine\f1: read in a set of shares and reconstruct the secret.
-+.SH OPTIONS
-+.TP
-+\fB-t \fIthreshold\fB\f1
-+Specify the number of shares necessary to reconstruct the secret.
-+.TP
-+\fB-n \fIshares\fB\f1
-+Specify the number of shares to be generated.
-+.TP
-+\fB-w \fItoken\fB\f1
-+Text token to name shares in order to avoid confusion in case one utilizes secret sharing to protect several independent secrets. The generated shares are prefixed by these tokens.
-+.TP
-+\fB-s \fIlevel\fB\f1
-+Enforce the scheme's security level (in bits). This option implies an upper bound for the length of the shared secret (shorter secrets are padded). Only multiples of 8 in the range from 8 to 1024 are allowed. If this option is ommitted (or the value given is 0) the security level is chosen automatically depending on the secret's length. The security level directly determines the length of the shares.
-+.TP
-+\fB-x\f1
-+Hex mode: use hexadecimal digits in place of ASCII characters for I/O. This is useful if one wants to protect binary data, like block cipher keys.
-+.TP
-+\fB-q\f1
-+Quiet mode: disable all unnecessary output. Useful in scripts. 
-+.TP
-+\fB-Q\f1
-+Extra quiet mode: like \fB-q\f1, but also suppress warnings.
-+.TP
-+\fB-D\f1
-+Disable the diffusion layer added in version 0.2. This option is needed when shares are combined that where generated with ssss version 0.1.
-+.TP
-+\fB-v\f1
-+Print version information.
-+.SH EXAMPLE
-+In case you want to protect your login password with a set of ten shares in such a way that any three of them can reconstruct the password, you simply run the command 
-+
-+ssss-split -t 3 -n 10 -w passwd 
-+
-+To reconstruct the password pass three of the generated shares (in any order) to 
-+
-+ssss-combine -t 3 
-+.SH NOTES
-+To protect a secret larger than 1024 bits a hybrid technique has to be applied: encrypt the secret with a block cipher and apply secret sharing to just the key. Among others openssl and gpg can do the encryption part: 
-+
-+openssl bf -e < file.plain > file.encrypted 
-+
-+gpg -c < file.plain > file.encrypted 
-+.SH SECURITY
-+\fBssss\f1 tries to lock its virtual address space into RAM for privacy reasons. But this may fail for two reasons: either the current uid doesn't permit page locking, or the RLIMIT_MEMLOCK is set too low. After printing a warning message \fBssss\f1 will run even without obtaining the desired mlock. 
-+.SH AUTHOR
-+This software (v0.5) was written in 2006 by B. Poettering (ssss AT point-at-infinity.org). Find the newest version of ssss on the project's homepage: \fBhttp://point-at-infinity.org/ssss/\f1. 
-+.SH FURTHER READING
-+\fBhttp://en.wikipedia.org/wiki/Secret_sharing\f1
diff --git a/security/ssss/files/patch-ssss.1 b/security/ssss/files/patch-ssss.1
new file mode 100644
index 000000000000..4ead81a9e598
--- /dev/null
+++ b/security/ssss/files/patch-ssss.1
@@ -0,0 +1,68 @@
+--- ssss.1.orig	2024-01-28 12:45:24 UTC
++++ ssss.1
+@@ -0,0 +1,65 @@
++.TH ssss 1 User Manuals
++.SH NAME
++ssss \- Split and Combine Secrets using Shamir's Secret Sharing Scheme.
++.SH SYNOPSIS
++\fBssss-split -t \fIthreshold\fB -n \fIshares\fB [-w \fItoken\fB] [-s \fIlevel\fB] [-x] [-q] [-Q] [-D] [-v]
++
++ssss-combine -t \fIthreshold\fB [-r -n \fIshares\fB] [-x] [-q] [-Q] [-D] [-v]
++\f1
++.SH DESCRIPTION
++ssss is an 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.
++.SH COMMANDS
++\fBssss-split\f1: prompt the user for a secret and generate a set of corresponding shares.
++
++\fBssss-combine\f1: read in a set of shares and reconstruct the secret.
++.SH OPTIONS
++.TP
++\fB-t \fIthreshold\fB\f1
++Specify the number of shares necessary to reconstruct the secret.
++.TP
++\fB-n \fIshares\fB\f1
++Specify the number of shares to be generated.
++.TP
++\fB-w \fItoken\fB\f1
++Text token to name shares in order to avoid confusion in case one utilizes secret sharing to protect several independent secrets. The generated shares are prefixed by these tokens.
++.TP
++\fB-s \fIlevel\fB\f1
++Enforce the scheme's security level (in bits). This option implies an upper bound for the length of the shared secret (shorter secrets are padded). Only multiples of 8 in the range from 8 to 1024 are allowed. If this option is ommitted (or the value given is 0) the security level is chosen automatically depending on the secret's length. The security level directly determines the length of the shares.
++.TP
++\fB-r\f1
++Recovery mode: ssss-combine reads in a set of \fB-t\f1 shares and reconstruct \fBn\f1 shares again. ssss-split doesn't generate shares randomly, but asks the secret and \fB-t\f1 - 1 shares (secret is treated here as a share). Usable to recover forgotten shares.
++.TP
++\fB-x\f1
++Hex mode: use hexadecimal digits in place of ASCII characters for I/O. This is useful if one wants to protect binary data, like block cipher keys.
++.TP
++\fB-q\f1
++Quiet mode: disable all unnecessary output. Useful in scripts. 
++.TP
++\fB-Q\f1
++Extra quiet mode: like \fB-q\f1, but also suppress warnings.
++.TP
++\fB-D\f1
++Disable the diffusion layer added in version 0.2. This option is needed when shares are combined that where generated with ssss version 0.1.
++.TP
++\fB-v\f1
++Print version information.
++.SH EXAMPLE
++In case you want to protect your login password with a set of ten shares in such a way that any three of them can reconstruct the password, you simply run the command 
++
++ssss-split -t 3 -n 10 -w passwd 
++
++To reconstruct the password pass three of the generated shares (in any order) to 
++
++ssss-combine -t 3 
++.SH NOTES
++To protect a secret larger than 1024 bits a hybrid technique has to be applied: encrypt the secret with a block cipher and apply secret sharing to just the key. Among others openssl and gpg can do the encryption part: 
++
++openssl bf -e < file.plain > file.encrypted 
++
++gpg -c < file.plain > file.encrypted 
++.SH SECURITY
++\fBssss\f1 tries to lock its virtual address space into RAM for privacy reasons. But this may fail for two reasons: either the current uid doesn't permit page locking, or the RLIMIT_MEMLOCK is set too low. After printing a warning message \fBssss\f1 will run even without obtaining the desired mlock. 
++.SH AUTHOR
++The original software (v0.5) was written in 2006 by B. Poettering (ssss AT point-at-infinity.org). The amended versions (v0.5.1+) were written between 2011..2020 by Jon D Frisby (jfrisby AT mrjoy.com). Find the newest version of ssss on the project's homepage: \fBhttps://github.com/MrJoy/ssss/\f1. 
++.SH FURTHER READING
++\fBhttp://en.wikipedia.org/wiki/Secret_sharing\f1
diff --git a/security/ssss/files/patch-ssss.c b/security/ssss/files/patch-ssss.c
deleted file mode 100644
index 5ff2714c3a23..000000000000
--- a/security/ssss/files/patch-ssss.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- ssss.c.orig	Sun Sep  9 10:24:42 2007
-+++ ssss.c	Sun Sep  9 10:24:48 2007
-@@ -348,7 +348,7 @@
- #define MPZ_SWAP(A, B) \
-   do { mpz_set(h, A); mpz_set(A, B); mpz_set(B, h); } while(0)
- 
--int restore_secret(int n, mpz_t (*A)[n], mpz_t b[]) 
-+int restore_secret(int n, void *A, mpz_t b[])
- {
-   mpz_t (*AA)[n] = (mpz_t (*)[n])A;
-   int i, j, k, found;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202401282153.40SLrxT5016708>