MD5 encode : MD5 « Security « C# / C Sharp






MD5 encode

  

using System;
using System.Collections.Generic;

using System.Text;

namespace Utils
{
    public class MD5Agent
    {
        public string Encode(string pass)
        {
        System.Security.Cryptography.MD5CryptoServiceProvider x = new System.Security.Cryptography.MD5CryptoServiceProvider();
            byte[] bs = System.Text.Encoding.UTF8.GetBytes(pass);
            bs = x.ComputeHash(bs);
            System.Text.StringBuilder s = new System.Text.StringBuilder(); 
            foreach (byte b in bs ) 
            {
                s.Append(b.ToString("x2").ToLower());
            }
            pass = s.ToString();
            return pass  ;
        } 
    }
} 

   
    
  








Related examples in the same category

1.MD5 Encrypt
2.Create MD5 Hash
3.Create ASCII MD5 Hash
4.Encrypt MD5
5.MD5 Hash
6.MD5 Hash
7.Get MD5 Hash
8.Makes a MD5 hash from a string
9.Get MD5 Hash (2)
10.Computes the MD5 checksum for a single file.
11.Get MD5 for a string
12.Get and verify MD5 Hash
13.Md5 Hash (2)