base64Encode overloads
Declared in <folly/base64.h>
Encode a string to standard base64.
std::string
base64Encode(std::string_view s);
» more...
Encode a byte range to standard base64.
constexpr
char*
base64Encode(
char const* f,
char const* l,
char* o) noexcept;
» more...
| Name | Description |
|---|---|
| s | The bytes to encode. |
| f | Pointer to the first input byte. |
| l | Pointer past the last input byte. |
| o | Pointer to the output buffer. |