Skip to content
  • Home
  • About Me
  • Contact
Code Verse

Mission to unlock the mysteries of the Code verse

Category: Encryption

C#.NET Encryption Technology TripleDES

How to TripleDES encrypt decrypt data? – Part Two

By Sathish | April 23, 2010 by Sathish

This post has reference to part one of this Article. Inside our “TripleDESCrypt“ class, lets implement another method to read the MD5 HashKey generated from the Secret Key from the User. This method will load…

C#.NET Encryption MD5 Technology TripleDES

How to TripleDES encrypt decrypt data? – Part One

By Sathish | April 23, 2010 by Sathish

In this post, a simple demonstration of how TripleDES Encryption algorithm can be implemented using System.Security.Cryptography namespace in .NET will be explained. First of all, we need to create a XML file where we will…

C#.NET Encryption RSA Technology

How to RSA Encrypt Decrypt Data (C#) ?

By Sathish | April 19, 2010 by Sathish

This post has reference to part one of this Article. Inside our “Crypt” class, lets include two more methods. public string EncryptData(string data2Encrypt){      ParameterSetup();      StreamReader reader = new StreamReader(publicPath);      string publicOnlyKeyXML = reader.ReadToEnd();      rsa.FromXmlString(publicOnlyKeyXML);      reader.Close();…

C#.NET Encryption RSA Technology

How to Generate RSA Encryption keys (C#) ?

By Sathish | April 19, 2010 by Sathish

In this post, Simple Demonstration of RSA Encryption Algorithm will be explained. Here, we are going to make use of the System.Security.Cryptography namespace. Now, Lets create two XML files, PrivateKey.xml and PublicKey.xml. In these files…

© 2025 Code Verse | WordPress Theme Design by Superb