[#DecodeBase32] = DecodeBase32 :mrdocs: Decode a base32‐encoded string. == Synopsis Declared in `<util/strencodings.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- std::optional<std::vector<unsigned char>> DecodeBase32(std::string_view str); ---- == Return Value The decoded bytes, or std::nullopt if the input is not valid base32. == Parameters [cols="1,4"] |=== | Name| Description | *str* | The base32 text to decode. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#