Security C#

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  ;
        } 
    }
}