Net Encryption Library
Padding Property
Example 






KellermanSoftware.NetEncryptionLibrary Namespace > Encryption Class : Padding Property
Set the padding mode used, the default is ISO10126
Syntax
'Declaration
 
Public Property Padding As System.Security.Cryptography.PaddingMode
'Usage
 
Dim instance As Encryption
Dim value As System.Security.Cryptography.PaddingMode
 
instance.Padding = value
 
value = instance.Padding
public System.Security.Cryptography.PaddingMode Padding {get; set;}
public read-write property Padding: System.Security.Cryptography.PaddingMode; 
public function get,set Padding : System.Security.Cryptography.PaddingMode
public: __property System.Security.Cryptography.PaddingMode get_Padding();
public: __property void set_Padding( 
   System.Security.Cryptography.PaddingMode value
);
public:
property System.Security.Cryptography.PaddingMode Padding {
   System.Security.Cryptography.PaddingMode get();
   void set (    System.Security.Cryptography.PaddingMode value);
}
Example
Encryption encryption = new Encryption(); //Trial Mode
//Encryption encryption = new Encryption("place user name here", "place license key here"); //License Mode
 
//Change the padding mode to PKCS7
encryption.Padding = PaddingMode.PKCS7;
 
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 padding mode to PKCS7
encryption.Padding = PaddingMode.PKCS7
 
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