[#EncodeBase32-00] = EncodeBase32 :mrdocs: Base32 encode. If `pad` is true, then the output will be padded with '=' so that its length is a multiple of 8. == Synopsis Declared in `<util/strencodings.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- std::string EncodeBase32( std::string_view str, bool pad = true); ---- == Return Value The base32 encoding of str. == Parameters [cols="1,4"] |=== | Name| Description | *str* | The text to encode. | *pad* | Whether to pad the output with '=' to a multiple of 8 characters. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#