2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2016-06-08 12:20:46 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2016-06-08 12:20:46 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
2017-01-08 08:28:52 +08:00
|
|
|
class ROpenssl(RPackage):
|
2016-06-08 12:20:46 +08:00
|
|
|
"""Bindings to OpenSSL libssl and libcrypto, plus custom SSH pubkey
|
|
|
|
parsers. Supports RSA, DSA and EC curves P-256, P-384 and P-521.
|
|
|
|
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."""
|
|
|
|
|
2017-10-25 17:12:31 +08:00
|
|
|
homepage = "https://CRAN.R-project.org/package=openssl"
|
2017-01-31 22:54:34 +08:00
|
|
|
url = "https://cran.r-project.org/src/contrib/openssl_0.9.6.tar.gz"
|
2017-11-06 05:42:24 +08:00
|
|
|
list_url = "https://cran.r-project.org/src/contrib/Archive/openssl"
|
2016-06-08 12:20:46 +08:00
|
|
|
|
2017-10-25 17:12:31 +08:00
|
|
|
version('0.9.7', '86773824dce7d3d79abfef574ce2531a')
|
2017-01-31 22:54:34 +08:00
|
|
|
version('0.9.6', '7ef137929d9dd07db690d35db242ba4b')
|
2016-06-08 12:20:46 +08:00
|
|
|
version('0.9.4', '82a890e71ed0e74499878bedacfb8ccb')
|
|
|
|
|
2017-01-31 22:54:34 +08:00
|
|
|
depends_on('openssl@1.0.1:')
|