Encodes a character string, raw vector or other object to base64 encoding.
Usage
base64enc(x, convert = TRUE, url = FALSE)
Value
A character string or raw vector depending on the value of convert.
Arguments
x
an object.
convert
logical TRUE to encode to a character string or FALSE to a
raw vector.
url
logical TRUE to use the URL- and filename-safe base64url alphabet
without padding, or FALSE (the default) for standard base64.
Details
A character string or raw vector (with no attributes) is encoded as is,
whilst all other objects are first serialized (using R serialisation version
3, big-endian representation).
Set url = TRUE for the URL- and filename-safe variant (RFC 4648 section 5),
which substitutes - and _ for + and / and omits padding (=), making
the output safe to use within URLs and filenames without further escaping.