Base32 Decoding
        Posted  
        
            by trampster
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by trampster
        
        
        
        Published on 2009-03-13T03:23:09Z
        Indexed on 
            2010/05/02
            12:07 UTC
        
        
        Read the original article
        Hit count: 316
        
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?
© Stack Overflow or respective owner