EncodeBase64 overloads
Declared in <util/strencodings.h>
Base64 encode the given string.
std::string
EncodeBase64(std::string_view str);
» more...
Base64 encode the given bytes.
std::string
EncodeBase64(std::span<std::byte const> input);
» more...
Base64 encode the given bytes.
std::string
EncodeBase64(std::span<unsigned char const> input);
» more...
| Name | Description |
|---|---|
| str | The text to encode. |
| input | The bytes to encode. |