Received: by mail.netbsd.org (Postfix, from userid 605) id B8FF384DFD; Fri, 9 Aug 2019 19:04:59 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 417F884DF6 for ; Fri, 9 Aug 2019 19:04:59 +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 RRhPTuViwblR for ; Fri, 9 Aug 2019 19:04:58 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 76FFC84D33 for ; Fri, 9 Aug 2019 19:04:58 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 7494BFBF4; Fri, 9 Aug 2019 19:04:58 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1565377498265220" MIME-Version: 1.0 Date: Fri, 9 Aug 2019 19:04:58 +0000 From: "Brook Milligan" Subject: CVS commit: pkgsrc To: pkgsrc-changes@NetBSD.org Reply-To: brook@netbsd.org X-Mailer: log_accum Message-Id: <20190809190458.7494BFBF4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1565377498265220 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: brook Date: Fri Aug 9 19:04:58 UTC 2019 Modified Files: pkgsrc/doc: CHANGES-2019 pkgsrc/security: Makefile Added Files: pkgsrc/security/R-openssl: DESCR Makefile distinfo Log Message: R-openssl: initial commit Bindings to OpenSSL libssl and libcrypto, plus custom SSH key parsers. Supports RSA, DSA and EC curves P-256, P-384, P-521, and curve25519. Cryptographic signatures can either be created and verified manually or via x509 certificates. AES can be used in cbc, ctr or gcm mode for symmetric encryption; RSA for asymmetric (public key) encryption or EC for Diffie Hellman. High-level envelope functions combine RSA and AES for encrypting arbitrary sized data. Other utilities include key generators, hash functions (md5, sha1, sha256, etc), base64 encoder, a secure random number generator, and 'bignum' math methods for manually performing crypto calculations on large multibyte integers. To generate a diff of this commit: cvs rdiff -u -r1.3360 -r1.3361 pkgsrc/doc/CHANGES-2019 cvs rdiff -u -r1.706 -r1.707 pkgsrc/security/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/security/R-openssl/DESCR \ pkgsrc/security/R-openssl/Makefile pkgsrc/security/R-openssl/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1565377498265220 Content-Disposition: inline Content-Length: 3528 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/doc/CHANGES-2019 diff -u pkgsrc/doc/CHANGES-2019:1.3360 pkgsrc/doc/CHANGES-2019:1.3361 --- pkgsrc/doc/CHANGES-2019:1.3360 Fri Aug 9 19:04:10 2019 +++ pkgsrc/doc/CHANGES-2019 Fri Aug 9 19:04:58 2019 @@ -1,4 +1,4 @@ -$NetBSD: CHANGES-2019,v 1.3360 2019/08/09 19:04:10 brook Exp $ +$NetBSD: CHANGES-2019,v 1.3361 2019/08/09 19:04:58 brook Exp $ Changes to the packages collection and infrastructure in 2019: @@ -5483,3 +5483,4 @@ Changes to the packages collection and i Added security/R-askpass version 1.1 [brook 2019-08-09] Added sysutils/R-processx version 3.4.1 [brook 2019-08-09] Added sysutils/R-xopen version 1.0.0 [brook 2019-08-09] + Added security/R-openssl version 1.4.1 [brook 2019-08-09] Index: pkgsrc/security/Makefile diff -u pkgsrc/security/Makefile:1.706 pkgsrc/security/Makefile:1.707 --- pkgsrc/security/Makefile:1.706 Fri Aug 9 19:02:20 2019 +++ pkgsrc/security/Makefile Fri Aug 9 19:04:57 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.706 2019/08/09 19:02:20 brook Exp $ +# $NetBSD: Makefile,v 1.707 2019/08/09 19:04:57 brook Exp $ # COMMENT= Security tools @@ -14,6 +14,7 @@ SUBDIR+= PACK SUBDIR+= PortableSigner SUBDIR+= R-askpass SUBDIR+= R-digest +SUBDIR+= R-openssl SUBDIR+= TweetNaCl SUBDIR+= acmesh SUBDIR+= aide Added files: Index: pkgsrc/security/R-openssl/DESCR diff -u /dev/null pkgsrc/security/R-openssl/DESCR:1.1 --- /dev/null Fri Aug 9 19:04:58 2019 +++ pkgsrc/security/R-openssl/DESCR Fri Aug 9 19:04:58 2019 @@ -0,0 +1,10 @@ +Bindings to OpenSSL libssl and libcrypto, plus custom SSH key parsers. +Supports RSA, DSA and EC curves P-256, P-384, P-521, and curve25519. +Cryptographic signatures can either be created and verified manually +or via x509 certificates. AES can be used in cbc, ctr or gcm mode for +symmetric encryption; RSA for asymmetric (public key) encryption or EC +for Diffie Hellman. High-level envelope functions combine RSA and AES +for encrypting arbitrary sized data. Other utilities include key +generators, hash functions (md5, sha1, sha256, etc), base64 encoder, a +secure random number generator, and 'bignum' math methods for manually +performing crypto calculations on large multibyte integers. Index: pkgsrc/security/R-openssl/Makefile diff -u /dev/null pkgsrc/security/R-openssl/Makefile:1.1 --- /dev/null Fri Aug 9 19:04:58 2019 +++ pkgsrc/security/R-openssl/Makefile Fri Aug 9 19:04:58 2019 @@ -0,0 +1,17 @@ +# $NetBSD: Makefile,v 1.1 2019/08/09 19:04:58 brook Exp $ + +R_PKGNAME= openssl +R_PKGVER= 1.4.1 +CATEGORIES= security + +MAINTAINER= pkgsrc-users@NetBSD.org +COMMENT= Toolkit for encryption, signatures and certificates based on OpenSSL +LICENSE= mit + +DEPENDS+= R-askpass>=1.1:../../security/R-askpass + +USE_LANGUAGES= c + +.include "../../math/R/Makefile.extension" +.include "../../security/openssl/buildlink3.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/security/R-openssl/distinfo diff -u /dev/null pkgsrc/security/R-openssl/distinfo:1.1 --- /dev/null Fri Aug 9 19:04:58 2019 +++ pkgsrc/security/R-openssl/distinfo Fri Aug 9 19:04:58 2019 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2019/08/09 19:04:58 brook Exp $ + +SHA1 (R/openssl_1.4.1.tar.gz) = a072c09de0216b20034fc16955624f60388c920d +RMD160 (R/openssl_1.4.1.tar.gz) = d235e5223500054163d9e7c5b0e8666aa7018f97 +SHA512 (R/openssl_1.4.1.tar.gz) = 52549f5f301deab4252db0ff7f450d879b3cf6f716fe1dd6c4b5cce3f95d988ac1eeeb6a5fc719dadc072bfac37f5a341e5e5a0155e9268638e4885375013b23 +Size (R/openssl_1.4.1.tar.gz) = 1206885 bytes --_----------=_1565377498265220--