decode

decodes an ASCII base32 string and returns it as ubyte[] data. Pre-allocates the size of the array.

This decoder will ignore non-base32 characters. So: SGVsbG8sIGhvd yBhcmUgeW91IH RvZGF5Pw==

Is valid.

  1. ubyte[] decode(cstring data)
    ubyte[]
    decode
  2. ubyte[] decode(cstring data, ubyte[] buff)

Parameters

data cstring

what is to be decoded

Examples

char[] myDecodedString = cast(char[])decode("JBSWY3DPFQQGQ33XEBQXEZJAPFXXKIDUN5SGC6J7");
Stdout(myDecodeString).newline; // Hello, how are you today?

Meta