ssl.ca.bundle
Generate SSL Certificate Authority Bundle
Description
Create a bundle of root certificate authorities for use with SSL connections.
Usage
ssl.ca.bundle(src = "http://mxr.mozilla.org/mozilla/source/security/nss/lib/ckfw/builtins/certdata.txt?raw=1", dest = tempfile("ca-bundle", fileext = ".crt"))
Arguments
  
| src | 
    a character string giving the filename or URL of a Mozilla NSS
    certdata.txt file.
   | 
  | dest | 
    a character string giving the filename to save the CA bundle to.
   | 
 
Value
Returns dest.
References
See Also
Examples
## Not run: 
options(ssl.ca.bundle = ssl.ca.bundle())
readLines("https://www.google.com/")
## End(Not run)