会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
烈火★寒冰
Life will find its way out~~~
博客园
首页
新随笔
联系
订阅
管理
C# MD5加密类
Code
1
using
System;
2
using
System.Collections.Generic;
3
using
System.Text;
4
using
System.Security.Cryptography;
5
6
namespace
Archives
7
{
8
public
static
class
Encryption
9
{
10
/**/
///
<summary>
11
///
MD5加密
12
///
</summary>
13
///
<param name="str"></param>
14
///
<returns></returns>
15
public
static
string
MD5(String str)
16
{
17
MD5 md5
=
new
MD5CryptoServiceProvider();
18
byte
[] data
=
System.Text.Encoding.Default.GetBytes(str);
19
byte
[] result
=
md5.ComputeHash(data);
20
String ret
=
""
;
21
for
(
int
i
=
0
; i
<
result.Length; i
++
)
22
ret
+=
result[i].ToString(
"
x
"
).PadLeft(
2
,
'
0
'
);
23
return
ret;
24
}
25
}
26
}
27
posted @
2009-05-02 21:21
烈火★寒冰
阅读(
1304
) 评论(
2
)
编辑
收藏
举报
刷新页面
返回顶部
公告