From owner-svn-ports-head@FreeBSD.ORG Sun Feb 17 20:11:41 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id B2E16BAF; Sun, 17 Feb 2013 20:11:41 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 94369731; Sun, 17 Feb 2013 20:11:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r1HKBfM6060652; Sun, 17 Feb 2013 20:11:41 GMT (envelope-from tota@svn.freebsd.org) Received: (from tota@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r1HKBfHe060649; Sun, 17 Feb 2013 20:11:41 GMT (envelope-from tota@svn.freebsd.org) Message-Id: <201302172011.r1HKBfHe060649@svn.freebsd.org> From: TAKATSU Tomonari Date: Sun, 17 Feb 2013 20:11:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r312446 - head/security/R-cran-digest X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Feb 2013 20:11:41 -0000 Author: tota Date: Sun Feb 17 20:11:40 2013 New Revision: 312446 URL: http://svnweb.freebsd.org/changeset/ports/312446 Log: - Update to 0.6.3 Modified: head/security/R-cran-digest/Makefile head/security/R-cran-digest/distinfo head/security/R-cran-digest/pkg-descr Modified: head/security/R-cran-digest/Makefile ============================================================================== --- head/security/R-cran-digest/Makefile Sun Feb 17 20:11:15 2013 (r312445) +++ head/security/R-cran-digest/Makefile Sun Feb 17 20:11:40 2013 (r312446) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= digest -PORTVERSION= 0.6.2 +PORTVERSION= 0.6.3 CATEGORIES= security DISTNAME= ${PORTNAME}_${PORTVERSION} Modified: head/security/R-cran-digest/distinfo ============================================================================== --- head/security/R-cran-digest/distinfo Sun Feb 17 20:11:15 2013 (r312445) +++ head/security/R-cran-digest/distinfo Sun Feb 17 20:11:40 2013 (r312446) @@ -1,2 +1,2 @@ -SHA256 (digest_0.6.2.tar.gz) = 3653e08abd34a60832987b0948cd851c36a4c50a62c6b3427aa2273fd4881832 -SIZE (digest_0.6.2.tar.gz) = 79023 +SHA256 (digest_0.6.3.tar.gz) = 5be8f1386c0c273fcc915df7b557393c5f3de43c44fd16614db9cc5ba6d1d57c +SIZE (digest_0.6.3.tar.gz) = 80083 Modified: head/security/R-cran-digest/pkg-descr ============================================================================== --- head/security/R-cran-digest/pkg-descr Sun Feb 17 20:11:15 2013 (r312445) +++ head/security/R-cran-digest/pkg-descr Sun Feb 17 20:11:40 2013 (r312446) @@ -1,15 +1,17 @@ -The digest package provides a function 'digest' for the creation +The digest package provides a function 'digest()' for the creation of hash digests of arbitrary R objects (using the md5, sha-1, sha-256 and crc32 algorithms) permitting easy comparison of R language -objects, as well as a function hmac() to create hash-based message +objects, as well as a function 'hmac()' to create hash-based message authentication code. The md5 algorithm by Ron Rivest is specified -in RFC 1321, the SHA-1 and SHA-256 algorithms are specified in +in RFC 1321, the sha-1 and sha-256 algorithms are specified in FIPS-180-1 and FIPS-180-2, and the crc32 algorithm is described in ftp://ftp.rocksoft.com/cliens/rocksoft/papers/crc_v3.txt. For md5, -sha-1 and sha-256, this packages uses small standalone implementations -that were provided by Christophe Devine. For crc32, code from the -zlib library is used. Please note that this package is not meant -to be deployed for cryptographic purposes for which more comprehensive -(and widely tested) libraries such as OpenSSL should be used. +sha-1, sha-256 and aes, this package uses a small standalone +implementations that were provided by Christophe Devine. For crc32, +code from the zlib library is used. For sha-512, an implementation +by Aaron D. Gifford is used. Please note that this package is not +meant to be deployed for cryptographic purposes for which more +comprehensive (and widely tested) libraries such as OpenSSL should +be used. WWW: http://cran.r-project.org/web/packages/digest/