[med-svn] [r-cran-openssl] 07/08: Updated version 0.9.6 from 'upstream/0.9.6'
Andreas Tille
tille at debian.org
Tue Oct 10 17:07:06 UTC 2017
This is an automated email from the git hooks/post-receive script.
tille pushed a commit to branch master
in repository r-cran-openssl.
commit 3d5560b29c8fefc912aacca519f66bfcbb5c0026
Merge: 642e8d9 6dc69cb
Author: Andreas Tille <tille at debian.org>
Date: Tue Oct 10 19:04:42 2017 +0200
Updated version 0.9.6 from 'upstream/0.9.6'
with Debian dir bb93c733ba92cba955d9abe1b6e0f61b6c32688d
DESCRIPTION | 31 +
LICENSE | 2 +
MD5 | 181 +
NAMESPACE | 184 +
NEWS | 71 +
R/aes.R | 98 +
R/askpass.R | 12 +
R/base.R | 110 +
R/base64.R | 35 +
R/bignum.R | 189 +
R/build.R | 24 +
R/cert.R | 84 +
R/diffie.R | 37 +
R/envelope.R | 49 +
R/hash.R | 252 ++
R/info.R | 10 +
R/keygen.R | 39 +
R/list.R | 43 +
R/mykey.R | 40 +
R/openssh.R | 140 +
R/openssl.R | 20 +
R/pkcs12.R | 100 +
R/rand.R | 47 +
R/read.R | 270 ++
R/rsa.R | 46 +
R/signing.R | 63 +
R/ssh2.R | 93 +
R/stream.R | 36 +
R/write.R | 65 +
R/writessh.R | 22 +
build/vignette.rds | Bin 0 -> 355 bytes
cleanup | 2 +
configure | 85 +
configure.win | 0
inst/cacert.pem | 4036 ++++++++++++++++++++
inst/doc/bignum.R | 52 +
inst/doc/bignum.Rmd | 111 +
inst/doc/bignum.html | 241 ++
inst/doc/crypto_hashing.R | 30 +
inst/doc/crypto_hashing.Rmd | 58 +
inst/doc/crypto_hashing.html | 191 +
inst/doc/keys.R | 38 +
inst/doc/keys.Rmd | 99 +
inst/doc/keys.html | 242 ++
inst/doc/secure_rng.R | 28 +
inst/doc/secure_rng.Rmd | 59 +
inst/doc/secure_rng.html | 183 +
man/aes_cbc.Rd | 56 +
man/askpass.Rd | 17 +
man/base64_encode.Rd | 29 +
man/bignum.Rd | 50 +
man/certificates.Rd | 49 +
man/ec_dh.Rd | 43 +
man/encrypt_envelope.Rd | 53 +
man/fingerprint.Rd | 33 +
man/hash.Rd | 108 +
man/keygen.Rd | 35 +
man/my_key.Rd | 34 +
man/openssl.Rd | 27 +
man/openssl_config.Rd | 12 +
man/pkcs12.Rd | 55 +
man/rand_bytes.Rd | 44 +
man/read_key.Rd | 71 +
man/rsa_encrypt.Rd | 48 +
man/signatures.Rd | 51 +
man/write_pem.Rd | 39 +
src/Makevars.in | 7 +
src/Makevars.win | 11 +
src/aes.c | 61 +
src/base64.c | 55 +
src/bignum.c | 173 +
src/cert.c | 149 +
src/compatibility.c | 75 +
src/compatibility.h | 37 +
src/diffie.c | 39 +
src/envelope.c | 96 +
src/error.c | 15 +
src/hash.c | 74 +
src/info.c | 15 +
src/keygen.c | 72 +
src/keys.c | 142 +
src/onload.c | 29 +
src/openssh.c | 289 ++
src/password.c | 40 +
src/pem.c | 90 +
src/pkcs12.c | 122 +
src/pkcs7.c | 107 +
src/rand.c | 17 +
src/rsa.c | 33 +
src/signing.c | 68 +
src/ssl.c | 152 +
src/stream.c | 103 +
src/utils.h | 5 +
src/win32/ipv6.c | 59 +
src/write.c | 51 +
tests/certigo/example-elliptic-sha1.crt | 16 +
tests/certigo/example-elliptic-sha1.key | 10 +
tests/certigo/example-elliptic-sha1.p12 | Bin 0 -> 1391 bytes
tests/certigo/example-elliptic-sha1.p7b | 17 +
tests/certigo/example-leaf.crt | 21 +
tests/certigo/example-leaf.p12 | Bin 0 -> 2582 bytes
tests/certigo/example-leaf.p7b | 22 +
tests/certigo/example-root.crt | 20 +
tests/certigo/example-root.p12 | Bin 0 -> 2542 bytes
tests/certigo/example-root.p7b | 21 +
tests/google.dk/generate.bash | 28 +
.../wildcard-google.dk-chain-password.p12 | Bin 0 -> 2704 bytes
tests/google.dk/wildcard-google.dk-chain.p12 | Bin 0 -> 2704 bytes
tests/google.dk/wildcard-google.dk-chain.pem | 57 +
tests/google.dk/wildcard-google.dk-leaf.crt | Bin 0 -> 905 bytes
tests/google.dk/wildcard-google.dk-leaf.notAfter | 1 +
tests/google.dk/wildcard-google.dk-leaf.notBefore | 1 +
tests/google.dk/wildcard-google.dk-leaf.sha1 | 1 +
tests/google.dk/wildcard-google.dk-leaf.sha256 | 1 +
tests/keys/authorized_keys | 4 +
tests/keys/blabla.pem | 12 +
tests/keys/fingerprints.txt | 17 +
tests/keys/id_dsa | 12 +
tests/keys/id_dsa.pem | 12 +
tests/keys/id_dsa.pub | 1 +
tests/keys/id_dsa.pw | 15 +
tests/keys/id_ecdsa | 5 +
tests/keys/id_ecdsa.pem | 4 +
tests/keys/id_ecdsa.pub | 1 +
tests/keys/id_ecdsa.pw | 8 +
tests/keys/id_ecdsa384 | 6 +
tests/keys/id_ecdsa384.pem | 5 +
tests/keys/id_ecdsa384.pub | 1 +
tests/keys/id_ecdsa384.pw | 9 +
tests/keys/id_ecdsa521 | 7 +
tests/keys/id_ecdsa521.pem | 6 +
tests/keys/id_ecdsa521.pub | 1 +
tests/keys/id_ecdsa521.pw | 10 +
tests/keys/id_ed25519 | 8 +
tests/keys/id_ed25519.pub | 1 +
tests/keys/id_rsa | 27 +
tests/keys/id_rsa.pem | 9 +
tests/keys/id_rsa.pub | 1 +
tests/keys/id_rsa.pw | 30 +
tests/keys/id_rsa.sshpem1 | 9 +
tests/keys/id_rsa.sshpem2 | 8 +
tests/keys/message | 1 +
tests/keys/message.rsa.crypt | Bin 0 -> 256 bytes
tests/keys/message.sig.dsa.sha1 | 1 +
tests/keys/message.sig.dsa.sha256 | Bin 0 -> 47 bytes
tests/keys/message.sig.ecdsa.sha1 | Bin 0 -> 71 bytes
tests/keys/message.sig.ecdsa.sha256 | Bin 0 -> 71 bytes
tests/keys/message.sig.ecdsa384.sha1 | Bin 0 -> 103 bytes
tests/keys/message.sig.ecdsa384.sha256 | Bin 0 -> 104 bytes
tests/keys/message.sig.ecdsa521.sha1 | Bin 0 -> 139 bytes
tests/keys/message.sig.ecdsa521.sha256 | 3 +
tests/keys/message.sig.rsa.md5 | Bin 0 -> 256 bytes
tests/keys/message.sig.rsa.sha1 | 1 +
tests/keys/message.sig.rsa.sha256 | Bin 0 -> 256 bytes
tests/keys/opencpu.org.bundle | 86 +
tests/keys/opencpu.org.cer | Bin 0 -> 1697 bytes
tests/keys/signatures.txt | 36 +
tests/keys/testmd5.sig | Bin 0 -> 256 bytes
tests/keys/testsha1.sig | 1 +
tests/testthat.R | 4 +
tests/testthat/test_bignum.R | 42 +
tests/testthat/test_cert.R | 10 +
tests/testthat/test_encrypt.R | 31 +
tests/testthat/test_hash.R | 28 +
tests/testthat/test_hash_error.R | 13 +
tests/testthat/test_hash_output_length.R | 52 +
tests/testthat/test_hash_output_value.R | 43 +
tests/testthat/test_keys_dsa.R | 83 +
tests/testthat/test_keys_ecdsa.R | 85 +
tests/testthat/test_keys_ecdsa384.R | 80 +
tests/testthat/test_keys_ecdsa521.R | 81 +
tests/testthat/test_keys_rsa.R | 86 +
tests/testthat/test_my_key.R | 27 +
tests/testthat/test_pkcs.R | 73 +
tests/testthat/test_rand_error.R | 7 +
tests/testthat/test_salting.R | 73 +
tools/version.c | 4 +
tools/winlibs.R | 8 +
vignettes/bignum.Rmd | 111 +
vignettes/crypto_hashing.Rmd | 58 +
vignettes/keys.Rmd | 99 +
vignettes/secure_rng.Rmd | 59 +
182 files changed, 12619 insertions(+)
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-med/r-cran-openssl.git
More information about the debian-med-commit
mailing list