Expand description
The base32_decoder module decodes base32
Decodes a base32 string
Performs error handling and returns a string
Call base32_decoder.crack to use. It returns optionresult.is_some()
to see if it returned okay.
Structsยง
- Base32
Decoder - The Base32 decoder, call:
let base32_decoder = Decoder::<Base32Decoder>::new()
to create a new instance And then call:result = base32_decoder.crack(input)
to decode a base32 string The struct generated by new() comes from interface.rs