base64_encode {xfun} | R Documentation |
Encode/decode data into/from base64 encoding.
Description
The function base64_encode()
encodes a file or a raw vector into the
base64 encoding. The function base64_decode()
decodes data from the
base64 encoding.
Usage
base64_encode(x)
base64_decode(x, from = NA)
Arguments
x |
For |
from |
If provided (and |
Value
base64_encode()
returns a character string.
base64_decode()
returns a raw vector.
Examples
xfun::base64_encode(as.raw(1:10))
logo = xfun:::R_logo()
xfun::base64_encode(logo)
xfun::base64_decode("AQIDBAUGBwgJCg==")
[Package xfun version 0.46 Index]