Net Encryption Library
DecodeBase32 Method
Example 






KellermanSoftware.NetEncryptionLibrary Namespace > Encryption Class : DecodeBase32 Method
Decode the passed Base32 encoded string as bytes
Syntax
'Declaration
 
Public Function DecodeBase32( _
   ByVal encoded As System.String _
) As System.Byte()
'Usage
 
Dim instance As Encryption
Dim encoded As System.String
Dim value() As System.Byte
 
value = instance.DecodeBase32(encoded)
public System.byte[] DecodeBase32( 
   System.string encoded
)
public function DecodeBase32( 
    encoded: System.String
): System.array of Byte; 
public function DecodeBase32( 
   encoded : System.String
) : System.byte[];
public: System.byte[]* DecodeBase32( 
   System.string* encoded
) 
public:
System.array<byte>^ DecodeBase32( 
   System.String^ encoded
) 

Parameters

encoded
Example
Encryption encryption = new Encryption(); //Trial Mode
//Encryption encryption = new Encryption("place user name here", "place license key here"); //License Mode
 
byte[] bytes = new byte[255];
 
for (int i = 0; i < 255; i++)
    bytes[i] = (byte)i;
 
string base32String = encryption.EncodeBase32(bytes);
byte[] decodedBytes = encryption.DecodeBase32(base32String);
 
Console.WriteLine(base32String);
Dim encryption As New Encryption() 'Trial Mode
'Encryption encryption = new Encryption("place user name here", "place license key here"); //License Mode
 
Dim bytes(254) As Byte
 
For i As Integer = 0 To 254
    bytes(i) = CByte(i)
Next i
 
Dim base32String As String = encryption.EncodeBase32(bytes)
Dim decodedBytes() As Byte = encryption.DecodeBase32(base32String)
 
Console.WriteLine(base32String)
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

Encryption Class
Encryption Members