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