Function: base64url-encode-string
base64url-encode-string is a function defined in fns.c.
Signature
(base64url-encode-string STRING &optional NO-PAD)
Documentation
Base64url-encode STRING and return the result.
Optional second argument NO-PAD means do not add padding char =.
This produces the URL variant of base 64 encoding defined in RFC 4648.
Probably introduced at or before Emacs version 27.1.
Source Code
// Defined in /usr/src/emacs/src/fns.c
{
return base64_encode_string_1 (string, false, NILP(no_pad), true);
}