Base32 Decoding
- by trampster
I have a base32 string which I need to convert to a byte array. And I'm having trouble finding a conversion method in the .net framework. I can find methods for base64 but not for base32.
Convert.FromBase64String – something like this for base32 would be perfect.
Is there such a method in the framework or do I have to roll my own?