Net Encryption Library
Salt Property
Example 






KellermanSoftware.NetEncryptionLibrary Namespace > Encryption Class : Salt Property
Salt for Hashing and Encryption
Syntax
'Declaration
 
Public Property Salt As System.String
'Usage
 
Dim instance As Encryption
Dim value As System.String
 
instance.Salt = value
 
value = instance.Salt
public System.string Salt {get; set;}
public read-write property Salt: System.String; 
public function get,set Salt : System.String
public: __property System.string* get_Salt();
public: __property void set_Salt( 
   System.string* value
);
public:
property System.String^ Salt {
   System.String^ get();
   void set (    System.String^ value);
}
Example
Encryption encryption = new Encryption(); //Trial Mode
//Encryption encryption = new Encryption("place user name here", "place license key here"); //License Mode
 
//Change the salt
encryption.Salt = "This is a salt";
 
const string password = "MyPassword";
const string unencryptedString = "This is the input";
Console.WriteLine("The unencrypted string: {0}", unencryptedString);
 
string encryptedString = encryption.EncryptString(EncryptionProvider.Rijndael, password, unencryptedString);
Console.WriteLine("The encrypted string: {0}", encryptedString);
 
string decryptedString = encryption.DecryptString(EncryptionProvider.Rijndael, password, encryptedString);
Console.WriteLine("The deencrypted string: {0}", decryptedString);
Dim encryption As New Encryption() 'Trial Mode
'Dim encryption As New Encryption("place user name here", "place license key here") 'License Mode
 
'Change the salt
encryption.Salt = "This is a salt"
 
Const password As String = "MyPassword"
Const unencryptedString As String = "This is the input"
Console.WriteLine("The unencrypted string: {0}", unencryptedString)
 
Dim encryptedString As String = encryption.EncryptString(EncryptionProvider.Rijndael, password, unencryptedString)
Console.WriteLine("The encrypted string: {0}", encryptedString)
 
Dim decryptedString As String = encryption.DecryptString(EncryptionProvider.Rijndael, password, encryptedString)
Console.WriteLine("The deencrypted string: {0}", decryptedString)
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