svn commit: r527630 - in head/security: . p5-Crypt-SSSS

Alexey Dokuchaev danfe at FreeBSD.org
Mon Mar 2 13:48:39 UTC 2020


Author: danfe
Date: Mon Mar  2 13:48:35 2020
New Revision: 527630
URL: https://svnweb.freebsd.org/changeset/ports/527630

Log:
  Add Perl implementation of Shamir's Secret Sharing System.
  
  WWW: https://metacpan.org/release/Crypt-SSSS

Added:
  head/security/p5-Crypt-SSSS/
  head/security/p5-Crypt-SSSS/Makefile   (contents, props changed)
  head/security/p5-Crypt-SSSS/distinfo   (contents, props changed)
  head/security/p5-Crypt-SSSS/pkg-descr   (contents, props changed)
  head/security/p5-Crypt-SSSS/pkg-plist   (contents, props changed)
Modified:
  head/security/Makefile

Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile	Mon Mar  2 13:47:08 2020	(r527629)
+++ head/security/Makefile	Mon Mar  2 13:48:35 2020	(r527630)
@@ -573,6 +573,7 @@
     SUBDIR += p5-Crypt-SKey
     SUBDIR += p5-Crypt-SMIME
     SUBDIR += p5-Crypt-SSLeay
+    SUBDIR += p5-Crypt-SSSS
     SUBDIR += p5-Crypt-Salt
     SUBDIR += p5-Crypt-SaltedHash
     SUBDIR += p5-Crypt-Serpent

Added: head/security/p5-Crypt-SSSS/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/p5-Crypt-SSSS/Makefile	Mon Mar  2 13:48:35 2020	(r527630)
@@ -0,0 +1,18 @@
+# Created by: Zeus Panchenko <zeus at gnu.org.ua>
+# $FreeBSD$
+
+PORTNAME=	Crypt-SSSS
+PORTVERSION=	0.3
+CATEGORIES=	security perl5
+MASTER_SITES=	CPAN
+PKGNAMEPREFIX=	p5-
+
+MAINTAINER=	perl at FreeBSD.org
+COMMENT=	Implementation of Shamir's Secret Sharing System
+
+LICENSE=	ART10
+
+USES=		perl5
+USE_PERL5=	configure
+
+.include <bsd.port.mk>

Added: head/security/p5-Crypt-SSSS/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/p5-Crypt-SSSS/distinfo	Mon Mar  2 13:48:35 2020	(r527630)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1452766619
+SHA256 (Crypt-SSSS-0.3.tar.gz) = 79b526e849135082a76273c5ef70212de2b83239afdf8aa301459ea835f4ebe9
+SIZE (Crypt-SSSS-0.3.tar.gz) = 4965

Added: head/security/p5-Crypt-SSSS/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/p5-Crypt-SSSS/pkg-descr	Mon Mar  2 13:48:35 2020	(r527630)
@@ -0,0 +1,6 @@
+Crypt::SSSS module implements Shamir's Secret Sharing System, that is,
+it breaks the secret data into multiple shares which can be distributed
+among multiple parties, so that only when the parties bring together
+their respective shares can the secret be reconstructed.
+
+WWW: https://metacpan.org/release/Crypt-SSSS

Added: head/security/p5-Crypt-SSSS/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/p5-Crypt-SSSS/pkg-plist	Mon Mar  2 13:48:35 2020	(r527630)
@@ -0,0 +1,3 @@
+%%SITE_PERL%%/Crypt/SSSS.pm
+%%SITE_PERL%%/Crypt/SSSS/Message.pm
+%%PERL5_MAN3%%/Crypt::SSSS.3.gz


More information about the svn-ports-all mailing list