From owner-svn-ports-all@freebsd.org Wed Jul 19 17:20:37 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7FD57CFDD0F; Wed, 19 Jul 2017 17:20:37 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5C2A53647; Wed, 19 Jul 2017 17:20:37 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v6JHKamY040341; Wed, 19 Jul 2017 17:20:36 GMT (envelope-from zeising@FreeBSD.org) Received: (from zeising@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v6JHKagG040337; Wed, 19 Jul 2017 17:20:36 GMT (envelope-from zeising@FreeBSD.org) Message-Id: <201707191720.v6JHKagG040337@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zeising set sender to zeising@FreeBSD.org using -f From: Niclas Zeising Date: Wed, 19 Jul 2017 17:20:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r446209 - in head/security: . sha2wordlist X-SVN-Group: ports-head X-SVN-Commit-Author: zeising X-SVN-Commit-Paths: in head/security: . sha2wordlist X-SVN-Commit-Revision: 446209 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jul 2017 17:20:37 -0000 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 +# $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 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