aboutsummaryrefslogtreecommitdiff
path: root/security/R-cran-digest
diff options
context:
space:
mode:
authorTAKATSU Tomonari <tota@FreeBSD.org>2015-06-13 03:55:29 +0000
committerTAKATSU Tomonari <tota@FreeBSD.org>2015-06-13 03:55:29 +0000
commit75e885d2ffc67afca8118e7bdf93f6096df5bc93 (patch)
treec57902d15cf97de4b8c779a19960b48a408f218f /security/R-cran-digest
parent23171c40d3af1a1c3de7a2013755a19c0fb38b66 (diff)
downloadports-75e885d2ffc67afca8118e7bdf93f6096df5bc93.tar.gz
ports-75e885d2ffc67afca8118e7bdf93f6096df5bc93.zip
- Update to 0.6.8
- Update pkg-descr
Notes
Notes: svn path=/head/; revision=389316
Diffstat (limited to 'security/R-cran-digest')
-rw-r--r--security/R-cran-digest/Makefile3
-rw-r--r--security/R-cran-digest/distinfo4
-rw-r--r--security/R-cran-digest/pkg-descr27
3 files changed, 17 insertions, 17 deletions
diff --git a/security/R-cran-digest/Makefile b/security/R-cran-digest/Makefile
index 9bdb9ff3bb15..d058504535bf 100644
--- a/security/R-cran-digest/Makefile
+++ b/security/R-cran-digest/Makefile
@@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= digest
-PORTVERSION= 0.6.4
-PORTREVISION= 2
+PORTVERSION= 0.6.8
CATEGORIES= security
DISTNAME= ${PORTNAME}_${PORTVERSION}
diff --git a/security/R-cran-digest/distinfo b/security/R-cran-digest/distinfo
index aaa58265c6b6..200cd1b475d0 100644
--- a/security/R-cran-digest/distinfo
+++ b/security/R-cran-digest/distinfo
@@ -1,2 +1,2 @@
-SHA256 (digest_0.6.4.tar.gz) = 334026e7de098e228ea2ca40f956cab6414780f4d8699880d9ce296a309dab1b
-SIZE (digest_0.6.4.tar.gz) = 79309
+SHA256 (digest_0.6.8.tar.gz) = 3062422c2ca917e52749464d63084a0d3cc061f59083f069280ec26336ce2f55
+SIZE (digest_0.6.8.tar.gz) = 97985
diff --git a/security/R-cran-digest/pkg-descr b/security/R-cran-digest/pkg-descr
index 8a14e72ac8b6..87d6c1a8b6e0 100644
--- a/security/R-cran-digest/pkg-descr
+++ b/security/R-cran-digest/pkg-descr
@@ -1,17 +1,18 @@
-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
-authentication code. The md5 algorithm by Ron Rivest is specified
-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, sha-256 and aes, this package uses a small standalone
+Implementation of a function 'digest()' for the creation of hash
+digests of arbitrary R objects (using the md5, sha-1, sha-256,
+crc32, xxhash and murmurhash algorithms) permitting easy comparison
+of R language 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 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, sha-256 and aes, this package uses 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.
+by Aaron D. Gifford is used. For xxHash, the implementation by Yann
+Collet is used. For murmurhash, an implementation by Shane Day 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/