码迷,mamicode.com
首页 > 其他好文 > 详细

MD5 加密

时间:2015-01-24 11:22:23      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:

 MD5 加密
using System.Security.Cryptography;

public static string encrypherment(string password)
        {
            string StrEncipherment = "";
            MD5 myMd5 = MD5.Create();
            byte[] mess = myMd5.ComputeHash(System.Text.Encoding.Default.GetBytes(password.ToCharArray()));
            for (int i = 0; i < mess.Length; i++)
                StrEncipherment += mess[i].ToString("x").PadLeft(2, 0);
            return StrEncipherment;
        }

 

 
 

MD5 加密

标签:

原文地址:http://www.cnblogs.com/chcong/p/4245523.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!