base64-url | R Documentation |
Compatible with results from package 'base64url'
,
but implemented with package 'base64enc'
. I simply do not like it
when I have to depend on two packages that can achieve the same goal.
This implementation is slower. If you have 'base64url'
installed,
please use that version.
base64_urlencode(x)
base64_urldecode(x)
x |
character vector to encode or decode |
character vector of the same length as x
x = "plain text"
encoded = base64_urlencode(x)
decoded = base64_urldecode(encoded)
print(encoded)
print(decoded)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.