Date: Tue, 12 Jul 2016 08:46:21 +0000 (UTC) From: Jan Beich <jbeich@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418416 - in head/security: . libargon2 Message-ID: <201607120846.u6C8kLE5033260@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jbeich Date: Tue Jul 12 08:46:21 2016 New Revision: 418416 URL: https://svnweb.freebsd.org/changeset/ports/418416 Log: security/libargon2: add new port PR: 209411 Submitted by: Christopher Hall <christopherhall.hsw@gmail.com> Reviewed by: Yonas Yanfa, Vladimir Krstulja Argon2 is a password-hashing function that summarizes the state of the art in the design of memory-hard functions and can be used to hash passwords for credential storage, key derivation, or other applications. https://github.com/P-H-C/phc-winner-argon2 Added: head/security/libargon2/ head/security/libargon2/Makefile (contents, props changed) head/security/libargon2/distinfo (contents, props changed) head/security/libargon2/pkg-descr (contents, props changed) head/security/libargon2/pkg-plist (contents, props changed) Modified: head/security/Makefile (contents, props changed) Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Tue Jul 12 08:28:32 2016 (r418415) +++ head/security/Makefile Tue Jul 12 08:46:21 2016 (r418416) @@ -291,6 +291,7 @@ SUBDIR += letsencrypt.sh SUBDIR += letskencrypt SUBDIR += libadacrypt + SUBDIR += libargon2 SUBDIR += libassuan SUBDIR += libbeid SUBDIR += libbf Added: head/security/libargon2/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/libargon2/Makefile Tue Jul 12 08:46:21 2016 (r418416) @@ -0,0 +1,28 @@ +# Created by: Christopher Hall <hsw@bitmark.com> +# $FreeBSD$ + +PORTNAME= libargon2 +PORTVERSION= 20160530 +CATEGORIES= security devel + +MAINTAINER= hsw@bitmark.com +COMMENT= Memory hard password hashing program and library + +LICENSE= CC0-1.0 + +USE_GITHUB= yes +GH_ACCOUNT= P-H-C +GH_PROJECT= phc-winner-argon2 +GH_TAGNAME= 4625cc5 + +USES= gmake +USE_LDCONFIG= yes + +do-install: + ${INSTALL_DATA} ${WRKSRC}/include/argon2.h ${STAGEDIR}${PREFIX}/include + ${INSTALL_LIB} ${WRKSRC}/libargon2.a ${STAGEDIR}${PREFIX}/lib + ${INSTALL_LIB} ${WRKSRC}/libargon2.so ${STAGEDIR}${PREFIX}/lib + ${INSTALL_PROGRAM} ${WRKSRC}/argon2 ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/man/argon2.1 ${STAGEDIR}${PREFIX}/man/man1 + +.include <bsd.port.mk> Added: head/security/libargon2/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/libargon2/distinfo Tue Jul 12 08:46:21 2016 (r418416) @@ -0,0 +1,2 @@ +SHA256 (P-H-C-phc-winner-argon2-20160530-4625cc5_GH0.tar.gz) = 14e0a5107e2d868de7ecdfbd0ad7ff5c46fa2a8f8eaf4c9c4f10fde7d1d8d77e +SIZE (P-H-C-phc-winner-argon2-20160530-4625cc5_GH0.tar.gz) = 1162095 Added: head/security/libargon2/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/libargon2/pkg-descr Tue Jul 12 08:46:21 2016 (r418416) @@ -0,0 +1,6 @@ +Argon2 is a password-hashing function that summarizes the state of the +art in the design of memory-hard functions and can be used to hash +passwords for credential storage, key derivation, or other +applications. + +WWW: https://github.com/P-H-C/phc-winner-argon2 Added: head/security/libargon2/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/libargon2/pkg-plist Tue Jul 12 08:46:21 2016 (r418416) @@ -0,0 +1,5 @@ +bin/argon2 +include/argon2.h +lib/libargon2.a +lib/libargon2.so +man/man1/argon2.1.gz
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201607120846.u6C8kLE5033260>