Method | Description | |
---|---|---|
Decode ( string base32 ) : byte[] |
Takes a base 32 encoded value and converts it back to binary data.
|
|
Encode ( byte data ) : string |
Takes a block of data and converts it to a base 32 encoded string.
|
public static Decode ( string base32 ) : byte[] | ||
base32 | string | Base 32 encoded string. |
return | byte[] |
public static Encode ( byte data ) : string | ||
data | byte | Input data. |
return | string |