Base32解码

由网友(锁不住孤独)分享简介:我有我需要转换为一个字节数组一个base32字符串。而我无法找到.NET Framework中的一个转换方法。我能找到的base64而不是base32方法。I have a base32 string which I need to convert to a byte array. And I'm having tr...

我有我需要转换为一个字节数组一个base32字符串。而我无法找到.NET Framework中的一个转换方法。我能找到的base64而不是base32方法。

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 - 像这样的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?

推荐答案

勾选此 FromBase32String 实施.NET发现的这里。

Check this FromBase32String implementation for .NET found here.

阅读全文

相关推荐

最新文章