pub fn decode(input: &[u8]) -> Option<Vec<u8>>
Expand description

Decode the base32hex encoded data into raw binary data.

Lowercase letters in the input are treated as the equivalent uppercase.

If the input is invalid for any reason, None is returned. This includes incorrect input length, invalid characters, or any character other than = appearing after the first padding character.