new_config {b64} | R Documentation |
Create a custom encoding engine
Description
Create a custom encoding engine
Usage
new_config(
encode_padding = TRUE,
decode_padding_trailing_bits = FALSE,
decode_padding_mode = c("canonical", "indifferent", "none")
)
Arguments
encode_padding |
default |
decode_padding_trailing_bits |
default |
decode_padding_mode |
default |
Details
See base64 crate for more details.
Decode Padding Modes
There are three modes that can be used for decode_padding_mode
argument.
-
"canonical"
: padding must consist of 0, 1, or 2=
characters -
"none"
: there must be no padding characters present -
"indifferent"
: canonical padding is used, but omitted padding characters are also permitted
Value
an object of class engine_config
Examples
# create a new nonsensicle config
new_config(FALSE, TRUE, "none")
[Package b64 version 0.1.1 Index]