Net Encryption Library
Hashing Strings
Basic Tasks > Hashing Strings

Hashing Strings Overview

The .NET Encryption Library supports many hashing algorithims

 

 

 

 

C#
Encryption encryption = new Encryption(); //Trial Mode
//Encryption encryption = new Encryption("place user name here", "place license key here"); //License Mode
 
string input = "test";
 
string results = encryption.HashStringHex(HashProvider.SHA512, input);
Console.WriteLine(results);

VB.NET
Dim encryption As New Encryption() 'Trial Mode
'Dim encryption As New Encryption("place user name here", "place license key here") 'License Mode
 
Dim input As String = "test"
 
Dim results As String = encryption.HashStringHex(HashProvider.SHA512, input)
Console.WriteLine(results)