Base32 Encoding and Decoding in C#

added by Paul Wheeler
4/19/2018 2:26:00 PM

3205 Views

You might have to do some Base32 Encoding or Decoding in C# (or PowerShell). Here's a simple .NET implementation in C# you can use! using System; using System.Linq; using System.Text; public static class Base32 { /// /// The different characters allowed in Base32 encoding. /// /// /// This is a 32-character subset...


0 comments