请使用QQ关联注册PLM之家,学习更多关于内容,更多精彩原创视频供你学习!
您需要 登录 才可以下载或查看,没有账号?注册
x
MD5算法简单的来说就是把任意长度的字串变换成固定长度(通常是128位)的16进制串。RFC 1321定义了MD5算法。' x5 |% b$ G0 j/ i5 y: N3 s
MD5的用途主要有:/ J& Y; W% A% v W- F# d" T* }
一致性验证。比如我们从网上下载了某个文件,网站上一般会给出该文件的MD5值,我们下载下来后,可以利用工具计算出7 i; F2 c5 w' u1 ?
新的MD5值,与正确的MD5值进行对照,如果不一样,则可以断定该文件下载出错或被篡改了。/ ^$ S6 Q4 ?7 \/ K
数字签名。可以用MD5算法对发布的程序或发布的消息生成MD5值作为签名等。5 S" n& `- H0 [: _* l" F) ?4 X
密码存储。在传输过程中或存储过程中,直接用明文的密码都是很危险的。可以在传输之前先用MD5加密,存储也不用存储
, v9 y# C" ~( p# I- S明文,可以直接存储MD5值。在验证时,先把输入的密码转换成MD5值再与存储值进行对比。 对于密码存储,Asp.net的实现方法为:
* B( l6 X# A0 g+ ^8 v# `[mw_shl_code=csharp,true]protected void Page_Load(object sender, EventArgs e)
, w1 c# A+ r3 [ e# l5 k {$ F' L6 k4 S$ l/ r* Z
string plainPassword = "innovator";# X. ^0 M) G( {4 E
4 E: H0 I3 U* Z8 V# k# y7 _7 l System.Security.Cryptography.MD5 md5 = new System.Security.Cryptography.MD5CryptoServiceProvider();* Q$ t+ c, t0 l2 ]$ U7 l
System.Text.ASCIIEncoding ascii = new System.Text.ASCIIEncoding();- s) E5 H3 \' L+ B8 [5 M
byte[] data = ascii.GetBytes(plainPassword);- m! W4 i+ \1 R; c7 m, k) ^. T: t, u
byte[] result = md5.ComputeHash(data);
4 V8 F. Y e) q- @0 O // Convert the MD5 result to Hexadecimal string! u _ W# g$ x, T7 o" g) B0 B
( D% j" w& \0 \3 S7 p$ y7 h string MD5Password = BinaryToHex(result);
, x/ c& j' J8 o string aa = "";
) t9 i: o- `* j }[/mw_shl_code]
1 B W# E5 g: h1 a; u[mw_shl_code=csharp,true]private String BinaryToHex(byte[] BinaryArray)
5 c- ^6 d( i% d& t {
/ K" n, I0 |. A; q4 b! P string result = "";8 b! r' R F# x+ j
long lowerByte;4 f# m `9 V4 I7 @3 d& ]0 N( B, Z
long upperByte;7 l, M" r! l# a
0 f+ R& D3 }$ F& j. q
foreach (Byte singleByte in BinaryArray)
7 L% L m/ @: O( b {# ]) z }: H( {% x4 @
lowerByte = singleByte & 15;' [9 ^' k1 O, m; B
upperByte = singleByte >> 4;
8 F3 u3 r2 T- I& ~5 H# Q$ Q B% n/ r
result += NumberToHex(upperByte);/ l& c. u3 Q6 x6 Y/ a+ V
result += NumberToHex(lowerByte);
( x+ ^5 L6 |( O }' }+ ^6 _# \6 _5 l [; i+ a1 M$ [
return result;
: l- x0 o2 c# t1 \8 z0 |5 @# Z; K }[/mw_shl_code] . v* C0 w+ M0 }6 Q3 `$ `8 L2 l* h4 `
[mw_shl_code=csharp,true]private static char NumberToHex(long Number)% y9 B3 f: B3 T+ V4 v
{' }4 ?- p/ P, u1 H0 H1 e
if (Number > 9)
; y; G/ ^# [' Q: H return Convert.ToChar(65 + (Number - 10));9 c c9 I( w: h+ [) i
else
, L/ E1 n7 C5 x" V/ a/ S return Convert.ToChar(48 + Number);4 p* n/ g1 V; T4 I. t4 E2 |( a# F
}[/mw_shl_code]
( z0 v& Y- K" ?, M+ Z: j8 B |