Date: Fri, 29 May 2015 11:55:41 +0000 (UTC) From: Baptiste Daroussin <bapt@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r387848 - in head/sysutils: . b2sum Message-ID: <201505291155.t4TBtfSc011881@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bapt Date: Fri May 29 11:55:40 2015 New Revision: 387848 URL: https://svnweb.freebsd.org/changeset/ports/387848 Log: The cryptographic hash function BLAKE2 is an improved version of the SHA-3 finalist BLAKE. Like SHA-3, BLAKE2 offers the highest security, yet is fast as MD5 on 64-bit platforms and requires at least 33% less RAM than SHA-2 or SHA-3 on low-end systems. The core algorithm of BLAKE2 is derived from ChaCha, a stream cipher designed by Daniel J. Bernstein that has been proposed as a standard cipher for TLS. WWW: https://blake2.net/ Added: head/sysutils/b2sum/ head/sysutils/b2sum/Makefile (contents, props changed) head/sysutils/b2sum/distinfo (contents, props changed) head/sysutils/b2sum/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Fri May 29 11:39:53 2015 (r387847) +++ head/sysutils/Makefile Fri May 29 11:55:40 2015 (r387848) @@ -51,6 +51,7 @@ SUBDIR += autopsy SUBDIR += avfs SUBDIR += azure-agent + SUBDIR += b2sum SUBDIR += b43-fwcutter SUBDIR += backupchecker SUBDIR += backuppc Added: head/sysutils/b2sum/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/b2sum/Makefile Fri May 29 11:55:40 2015 (r387848) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= b2sum +PORTVERSION= 0.0.d${DISTVERSION} +DISTVERSION= 20150529 +DISTNAME= blake2_code_${DISTVERSION}${EXTRACT_SUFFX} +CATEGORIES= sysutils security +MASTER_SITES= http://blake2.net/ + +MAINTAINER= bapt@FreeBSD.org +COMMENT= fast secure hashing + +USES= zip + +CFLAGS+= -I../sse +WRKSRC_SUBDIR= b2sum +MAKEFILE= makefile +MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}" +PLIST_FILES= bin/b2sum + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + +.include <bsd.port.mk> Added: head/sysutils/b2sum/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/b2sum/distinfo Fri May 29 11:55:40 2015 (r387848) @@ -0,0 +1,2 @@ +SHA256 (blake2_code_20150529.zip) = 30a3140f7747fb67765bcf5f26c85c5e9ec8a168bb31faa2dee93f4cc0b5e813 +SIZE (blake2_code_20150529.zip) = 890257 Added: head/sysutils/b2sum/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/b2sum/pkg-descr Fri May 29 11:55:40 2015 (r387848) @@ -0,0 +1,8 @@ +The cryptographic hash function BLAKE2 is an improved version of the SHA-3 +finalist BLAKE. Like SHA-3, BLAKE2 offers the highest security, yet is fast as +MD5 on 64-bit platforms and requires at least 33% less RAM than SHA-2 or SHA-3 +on low-end systems. The core algorithm of BLAKE2 is derived from ChaCha, a +stream cipher designed by Daniel J. Bernstein that has been proposed as a +standard cipher for TLS. + +WWW: https://blake2.net/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201505291155.t4TBtfSc011881>