blog

Home / DeveloperSection / Blogs / Implementing Cryptography by using MD5 algorithm.

Implementing Cryptography by using MD5 algorithm.

Anonymous User4910 15-Feb-2011

In last blog I had explained that how to implement cryptography by using SHA1 algorithm. In this article I will describe another method to implement concept of Cryptography in C#. Here I will use MD5 algorithm to encrypt data from user.

Following code demonstrate use of MD5 algorithm
public static void encryptMd5() 
{
            string strText = "";
            Console.Write("Enter Name of Text--->   ");
            strText = Console.ReadLine();
            MD5CryptoServiceProvider provider = new MD5CryptoServiceProvider();
            byte[] encryptData = provider.ComputeHash(Encoding.Default.GetBytes(strText));
            Console.WriteLine("Encrypted Value Is....");
            foreach (byte tempData in encryptData)
            {
                Console.Write(tempData.ToString("x"));
            }
            Console.WriteLine();
}

Output of the above code snippet is as follows

Enter Name of Text--->   MindStick
Encrypted Value Is....
dcfff63dc26387bf19cea60d5de240

Enter Name of Text--->   Washington
Encrypted Value Is....
6d69689d056a27bce65398abc70297a


I am a content writter !

Leave Comment

Comments

Liked By