base64_to_string {dipsaus} | R Documentation |
Convert "Base64" Data to String
Description
Decode "Base64" data to its generating characters
Usage
base64_to_string(what)
Arguments
what |
characters, encoded "Base64" data |
Value
String
Examples
input <- "The quick brown fox jumps over the lazy dog"
# Base64 encode
what <- base64enc::base64encode(what = charToRaw(input))
# Base64 decode
base64_to_string(what)
[Package dipsaus version 0.2.9 Index]