Date: Wed, 19 Jul 2017 17:20:36 +0000 (UTC) From: Niclas Zeising <zeising@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r446209 - in head/security: . sha2wordlist Message-ID: <201707191720.v6JHKagG040337@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: zeising Date: Wed Jul 19 17:20:36 2017 New Revision: 446209 URL: https://svnweb.freebsd.org/changeset/ports/446209 Log: Add sha2wordlist. sha2wordlist makes a sha256 digest and outputs it in PGP Words, to be used when verifying hashes verbally. Submitted by: Peter Ankerstål Added: head/security/sha2wordlist/ head/security/sha2wordlist/Makefile (contents, props changed) head/security/sha2wordlist/distinfo (contents, props changed) head/security/sha2wordlist/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Wed Jul 19 16:58:14 2017 (r446208) +++ head/security/Makefile Wed Jul 19 17:20:36 2017 (r446209) @@ -1113,6 +1113,7 @@ SUBDIR += sguil SUBDIR += sha SUBDIR += sha1collisiondetection + SUBIDR += sha2wordlist SUBDIR += shibboleth2-sp SUBDIR += shimmer SUBDIR += shishi Added: head/security/sha2wordlist/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/sha2wordlist/Makefile Wed Jul 19 17:20:36 2017 (r446209) @@ -0,0 +1,26 @@ +# Created by: Peter Ankerstal <peter@pean.org> +# $FreeBSD$ + +PORTNAME= sha2wordlist +PORTVERSION= 1.0.20140124 +CATEGORIES= security + +MAINTAINER= peter@pean.org +COMMENT= create SHA256 digests as PGP words + +LICENSE= BSD2CLAUSE BSD3CLAUSE +LICENSE_COMB= multi + +USE_GITHUB= yes +GH_ACCOUNT= kirei +GH_TAGNAME= 3615281 + +PLIST_FILES= sbin/sha2wordlist + +post-patch: + @${REINPLACE_CMD} -e 's|gcc|cc|g' ${WRKSRC}/Makefile + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${LOCALBASE}/sbin/ + +.include <bsd.port.mk> Added: head/security/sha2wordlist/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/sha2wordlist/distinfo Wed Jul 19 17:20:36 2017 (r446209) @@ -0,0 +1,3 @@ +TIMESTAMP = 1500115682 +SHA256 (kirei-sha2wordlist-1.0.20140124-3615281_GH0.tar.gz) = 9fc3227ada752823250d2892961b7fed34f2d8a736c47421cf8dd6e4b1d26cee +SIZE (kirei-sha2wordlist-1.0.20140124-3615281_GH0.tar.gz) = 14272 Added: head/security/sha2wordlist/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/sha2wordlist/pkg-descr Wed Jul 19 17:20:36 2017 (r446209) @@ -0,0 +1,5 @@ +This program takes data on stdin and outputs the SHA256 checksum of that +data together with the PGP Wordlist representation of the checksum. +This could be very useful when verifying checksums verbally. + +WWW: https://github.com/kirei/sha2wordlist
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201707191720.v6JHKagG040337>