diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2015-05-29 11:55:40 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2015-05-29 11:55:40 +0000 |
commit | c60cbf0dfe4b7d7fad1acd37dfc7c771e6b17d1e (patch) | |
tree | 2afa660ce5b4f62284565510e1c15d0a7ac43a5f /sysutils/b2sum | |
parent | fed9cf73dbe40339dd15e609d04e61a9d0647a6b (diff) | |
download | ports-c60cbf0dfe4b7d7fad1acd37dfc7c771e6b17d1e.tar.gz ports-c60cbf0dfe4b7d7fad1acd37dfc7c771e6b17d1e.zip |
Notes
Diffstat (limited to 'sysutils/b2sum')
-rw-r--r-- | sysutils/b2sum/Makefile | 24 | ||||
-rw-r--r-- | sysutils/b2sum/distinfo | 2 | ||||
-rw-r--r-- | sysutils/b2sum/pkg-descr | 8 |
3 files changed, 34 insertions, 0 deletions
diff --git a/sysutils/b2sum/Makefile b/sysutils/b2sum/Makefile new file mode 100644 index 000000000000..09394df7f9a7 --- /dev/null +++ b/sysutils/b2sum/Makefile @@ -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> diff --git a/sysutils/b2sum/distinfo b/sysutils/b2sum/distinfo new file mode 100644 index 000000000000..9d622b1d19b4 --- /dev/null +++ b/sysutils/b2sum/distinfo @@ -0,0 +1,2 @@ +SHA256 (blake2_code_20150529.zip) = 30a3140f7747fb67765bcf5f26c85c5e9ec8a168bb31faa2dee93f4cc0b5e813 +SIZE (blake2_code_20150529.zip) = 890257 diff --git a/sysutils/b2sum/pkg-descr b/sysutils/b2sum/pkg-descr new file mode 100644 index 000000000000..c9dc31b0993c --- /dev/null +++ b/sysutils/b2sum/pkg-descr @@ -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/ |