Simple RFC4648 base32 encoder/decoder. Pads with “=”.
base32_encode(x, use.padding = FALSE)
base32_decode(x, use.padding = FALSE)[character(1)]
Character vector to encode or decode.
[logical(1)]
If TRUE, base32_encode returns a string whose length is a multiple of 8,
padded with trailing “=” if required.
base32_decode expects such a string unless this is set to FALSE (default).
The internal algorithm currently works with padding, thus it is faster to set this to TRUE.
[character] of the same length as input x.
Implementation based on base32 encoder/decoder in the GNU lib: https://www.gnu.org/software/gnulib/.