Encode/decode base64
Simple in-memory base64 encoder and decoder. Used internally for converting
raw vectors to text. Interchangeable with encoder from base64enc
or
openssl
package.
base64_dec(input) base64_enc(input)
input |
string or raw vector to be encoded/decoded |
str <- base64_enc(serialize(iris, NULL)) out <- unserialize(base64_dec(str)) stopifnot(identical(out, iris))
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.