Received: by mail.netbsd.org (Postfix, from userid 605) id 2058C84D74; Mon, 8 Feb 2021 11:16:28 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 584DD84D32 for ; Mon, 8 Feb 2021 11:16:27 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id cMONPGScZOSn for ; Mon, 8 Feb 2021 11:16:26 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id C2BD684CDC for ; Mon, 8 Feb 2021 11:16:26 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B3732FA95; Mon, 8 Feb 2021 11:16:26 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1612782986212940" MIME-Version: 1.0 Date: Mon, 8 Feb 2021 11:16:26 +0000 From: "Makoto Fujiwara" Subject: CVS commit: pkgsrc/security/R-argon2 To: pkgsrc-changes@NetBSD.org Reply-To: mef@netbsd.org X-Mailer: log_accum Message-Id: <20210208111626.B3732FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1612782986212940 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: mef Date: Mon Feb 8 11:16:26 UTC 2021 Added Files: pkgsrc/security/R-argon2: DESCR Makefile distinfo Log Message: (security/R-argon2) import R-argon2-0.2.0 Utilities for secure password hashing via the argon2 algorithm. It is a relatively new hashing algorithm and is believed to be very secure. The 'argon2' implementation included in the package is the reference implementation. The package also includes some utilities that should be useful for digest authentication, including a wrapper of 'blake2b'. For similar R packages, see sodium and 'bcrypt'. See or for more information. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/security/R-argon2/DESCR \ pkgsrc/security/R-argon2/Makefile pkgsrc/security/R-argon2/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1612782986212940 Content-Disposition: inline Content-Length: 1909 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/security/R-argon2/DESCR diff -u /dev/null pkgsrc/security/R-argon2/DESCR:1.1 --- /dev/null Mon Feb 8 11:16:26 2021 +++ pkgsrc/security/R-argon2/DESCR Mon Feb 8 11:16:26 2021 @@ -0,0 +1,8 @@ +Utilities for secure password hashing via the argon2 algorithm. It is +a relatively new hashing algorithm and is believed to be very secure. +The 'argon2' implementation included in the package is the reference +implementation. The package also includes some utilities that should +be useful for digest authentication, including a wrapper of 'blake2b'. +For similar R packages, see sodium and 'bcrypt'. See + or + for more information. Index: pkgsrc/security/R-argon2/Makefile diff -u /dev/null pkgsrc/security/R-argon2/Makefile:1.1 --- /dev/null Mon Feb 8 11:16:26 2021 +++ pkgsrc/security/R-argon2/Makefile Mon Feb 8 11:16:26 2021 @@ -0,0 +1,14 @@ +# $NetBSD: Makefile,v 1.1 2021/02/08 11:16:26 mef Exp $ + +R_PKGNAME= argon2 +R_PKGVER= 0.2-0 +CATEGORIES= security + +MAINTAINER= pkgsrc-users@NetBSD.org +COMMENT= Secure Password Hashing +LICENSE= 2-clause-bsd # and See LICENSE + +USE_LANGUAGES= c + +.include "../../math/R/Makefile.extension" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/security/R-argon2/distinfo diff -u /dev/null pkgsrc/security/R-argon2/distinfo:1.1 --- /dev/null Mon Feb 8 11:16:26 2021 +++ pkgsrc/security/R-argon2/distinfo Mon Feb 8 11:16:26 2021 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2021/02/08 11:16:26 mef Exp $ + +SHA1 (R/argon2_0.2-0.tar.gz) = 19454face070dbc1a8cd20f959a1263f9ac5e25c +RMD160 (R/argon2_0.2-0.tar.gz) = 1aadba08233521f394ffd0d358feca1b4b93b97e +SHA512 (R/argon2_0.2-0.tar.gz) = 2889b2a60c7d067fce712618bc9355f759fd00003c6c9d4ce99deb9fe63607a383502ddf3905fe24754234cc978aed7274e6aa2b3ff2930e4b75a40931be601d +Size (R/argon2_0.2-0.tar.gz) = 47719 bytes --_----------=_1612782986212940--