Function: base64-encode-string

base64-encode-string is a function defined in fns.c.

Signature

(base64-encode-string STRING &optional NO-LINE-BREAK)

Documentation

Base64-encode STRING and return the result.

Optional second argument NO-LINE-BREAK means do not break long lines into shorter lines.

View in manual

Probably introduced at or before Emacs version 20.4.

Source Code

// Defined in /usr/src/emacs/src/fns.c
{

  return base64_encode_string_1 (string, NILP (no_line_break), true, false);
}