Net Encryption Library
EncodeBase58NoChecksum Method
Example 






KellermanSoftware.NetEncryptionLibrary Namespace > Encryption Class : EncodeBase58NoChecksum Method
Encode the passed bytes as a Base58 Encoded string with no checksum
Syntax
'Declaration
 
Public Function EncodeBase58NoChecksum( _
   ByVal input() As System.Byte _
) As System.String
'Usage
 
Dim instance As Encryption
Dim input() As System.Byte
Dim value As System.String
 
value = instance.EncodeBase58NoChecksum(input)
public System.string EncodeBase58NoChecksum( 
   System.byte[] input
)
public function EncodeBase58NoChecksum( 
    input: System.Bytearray of
): System.String; 
public function EncodeBase58NoChecksum( 
   input : System.byte[]
) : System.String;
public: System.string* EncodeBase58NoChecksum( 
   System.byte[]* input
) 
public:
System.String^ EncodeBase58NoChecksum( 
   System.array<byte>^ input
) 

Parameters

input
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 base58 = encryption.EncodeBase58NoChecksum(bytes);
byte[] decodedBytes = encryption.DecodeBase58NoChecksum(base58);
 
Console.WriteLine(base58);
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 base58 As String = encryption.EncodeBase58NoChecksum(bytes)
Dim decodedBytes() As Byte = encryption.DecodeBase58NoChecksum(base58)
 
Console.WriteLine(base58)
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