mirror of
https://git.freebsd.org/ports.git
synced 2025-06-01 02:46:27 -04:00
Add security/horcrux: Split files into encrypted fragments
Utility to split files into encrypted fragments (using the shamir secret sharing scheme) so that you don't need to remember a passcode. WWW: https://github.com/jesseduffield/horcrux PR: 243423 Submitted by: Lewis Cook <vulcan@wired.sh>
This commit is contained in:
parent
c99ef6ed65
commit
3ac11a9369
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=523481
4 changed files with 38 additions and 0 deletions
|
@ -216,6 +216,7 @@
|
|||
SUBDIR += hmap
|
||||
SUBDIR += hockeypuck
|
||||
SUBDIR += honggfuzz
|
||||
SUBDIR += horcrux
|
||||
SUBDIR += hotssh
|
||||
SUBDIR += hpenc
|
||||
SUBDIR += hydra
|
||||
|
|
29
security/horcrux/Makefile
Normal file
29
security/horcrux/Makefile
Normal file
|
@ -0,0 +1,29 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= horcrux
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 0.2
|
||||
CATEGORIES= security
|
||||
|
||||
MAINTAINER= vulcan@wired.sh
|
||||
COMMENT= Split files into encrypted fragments
|
||||
|
||||
LICENSE= MIT
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE
|
||||
|
||||
USES= go
|
||||
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= jesseduffield
|
||||
GH_SUBDIR= src/github.com/${GH_ACCOUNT}/${PORTNAME}
|
||||
|
||||
PLIST_FILES= bin/${PORTNAME}
|
||||
PORTDOCS= README.md
|
||||
|
||||
OPTIONS_DEFINE= DOCS
|
||||
|
||||
post-install-DOCS-on:
|
||||
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
||||
${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${STAGEDIR}${DOCSDIR}
|
||||
|
||||
.include <bsd.port.mk>
|
3
security/horcrux/distinfo
Normal file
3
security/horcrux/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1579338317
|
||||
SHA256 (jesseduffield-horcrux-v0.2_GH0.tar.gz) = eb2e4edab1938de6b724cf5ba5c8f28acd5b5da65065a4060a34672af5e1bafa
|
||||
SIZE (jesseduffield-horcrux-v0.2_GH0.tar.gz) = 13559
|
5
security/horcrux/pkg-descr
Normal file
5
security/horcrux/pkg-descr
Normal file
|
@ -0,0 +1,5 @@
|
|||
Utility to split files into encrypted fragments
|
||||
(using the shamir secret sharing scheme) so that
|
||||
you don't need to remember a passcode.
|
||||
|
||||
WWW: https://github.com/jesseduffield/horcrux
|
Loading…
Add table
Reference in a new issue