- Also work with HEAD (1.79) version of Mozilla's certdata.txt,
reported by Daniel Stenberg.
- Add BSD 2-clause license.
- Die when certificates without trust block appear.
limit ca_root_nss vuln to < 3.12.11 from <= 3.12.11.
Add a new entry for the ca_root_nss bug that caused extraction of untrusted
certificates to the trust bundle.
PR: ports/160455
to revoke DigiNotar.nl trust.
Security fix: the modssl ca-bundle.pl script did not process
"untrusted" marks on certificates. Drop it and write a new
script in its place that does that.
Synch up with security/nss port to 3.12.11.
Not asking for maintainer approval because of multiple
timeouts in response to related PRs vs. security/[ca_root_]nss.
This package provides an interface to the OAuth 1.0 specification,
allowing users to authenticate via OAuth to the server of their
choice.
WWW: http://cran.r-project.org/web/packages/ROAuth/
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 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.
WWW: http://cran.r-project.org/web/packages/digest/
This is a package that allows conversion to and from data in
Javascript object notation (JSON) format. This allows R objects to
be inserted into Javascript/ECMAScript/ActionScript code and allows
R programmers to read and convert JSON content to R objects. This
is an alternative to rjson package. That version was too slow for
converting large R objects to JSON and is not extensible, but a
very useful prototype. It is fast for parsing. This package uses
methods, vectorized operations and C code and callbacks to R functions
for deserializing JSON objects to R. Verison 0.4 of this package
uses a new native parser, implements the transformation code in C
and allocates memory efficiently (rather than concatenating because
of event driven parsing). The result is a significantly faster
parsing of large JSON documents.
WWW: http://cran.r-project.org/web/packages/RJSONIO/
Support for the foreach looping construct. Foreach is an idiom that
allows for iterating over elements in a collection, without the use
of an explicit loop counter. This package in particular is intended
to be used for its return value, rather than for its side effects.
In that sense, it is similar to the standard lapply function, but
doesn't require the evaluation of a function. Using foreach without
side effects also facilitates executing the loop in parallel.
WWW: http://cran.r-project.org/web/packages/foreach/