Description Usage Arguments Value References Examples
Simple RFC4648 base32 encoder/decoder. Pads with “=”.
| 1 2 3 | base32_encode(x, use.padding = FALSE)
base32_decode(x, use.padding = FALSE)
 | 
| x | [ | 
| use.padding | [ | 
[character] of the same length as input x.
Implementation based on base32 encoder/decoder in the GNU lib: https://www.gnu.org/software/gnulib/.
| 1 2 3 4 5 | x = "plain text"
encoded = base32_encode(x)
decoded = base32_decode(encoded)
print(encoded)
print(decoded)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.