| encode {base64} | R Documentation |
Wraps openssl::base64_encode
to replace the deprecated implementation by Romain Francois.
encode(input, output = tempfile(), linebreaks = TRUE) decode(input, output = tempfile())
input |
input file |
output |
output file |
linebreaks |
insert linebreaks to make output human readable
See |
# encode a file
myfile <- R.home("COPYING")
tmp <- tempfile()
base64::encode(myfile, tmp)
# decode it back
orig <- tempfile()
base64::decode(tmp, orig)
readLines(orig)