swfmd5.pas
上传用户:raido2005
上传日期:2022-06-22
资源大小:5044k
文件大小:12k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. //*******************************************************//
  2. //                                                       //
  3. //                      DelphiFlash.com                  //
  4. //              Copyright (c) 2004 FeatherySoft, Inc.    //
  5. //                    info@delphiflash.com               //
  6. //                                                       //
  7. //*******************************************************//
  8. //  Description:  MD5
  9. //  Last update:  15 may 2005
  10. Unit SWFmd5;
  11. Interface
  12. uses Windows;
  13. type
  14. MD5Count = array[0..1] of DWORD;
  15. MD5State = array[0..3] of DWORD;
  16. MD5Block = array[0..15] of DWORD;
  17. MD5CBits = array[0..7] of byte;
  18. MD5Digest = array[0..15] of byte;
  19. MD5Buffer = array[0..63] of byte;
  20. MD5Context = record
  21. State: MD5State;
  22. Count: MD5Count;
  23. Buffer: MD5Buffer;
  24. end;
  25. procedure MD5Init(var Context: MD5Context);
  26. procedure MD5Update(var Context: MD5Context; Input: pChar; Length: longword);
  27. procedure MD5Final(var Context: MD5Context; var Digest: MD5Digest);
  28. function MD5String(M: string): MD5Digest;
  29. function MD5Print(D: MD5Digest): string;
  30. Function Cript_MD5(Passw, Salt: string): string;
  31. function MD5Match(D1, D2: MD5Digest): boolean;
  32. Implementation
  33. var
  34. PADDING: MD5Buffer = (
  35. $80, $00, $00, $00, $00, $00, $00, $00,
  36. $00, $00, $00, $00, $00, $00, $00, $00,
  37. $00, $00, $00, $00, $00, $00, $00, $00,
  38. $00, $00, $00, $00, $00, $00, $00, $00,
  39. $00, $00, $00, $00, $00, $00, $00, $00,
  40. $00, $00, $00, $00, $00, $00, $00, $00,
  41. $00, $00, $00, $00, $00, $00, $00, $00,
  42. $00, $00, $00, $00, $00, $00, $00, $00
  43. );
  44. function F(x, y, z: DWORD): DWORD;
  45. begin
  46. Result := (x and y) or ((not x) and z);
  47. end;
  48. function G(x, y, z: DWORD): DWORD;
  49. begin
  50. Result := (x and z) or (y and (not z));
  51. end;
  52. function H(x, y, z: DWORD): DWORD;
  53. begin
  54. Result := x xor y xor z;
  55. end;
  56. function I(x, y, z: DWORD): DWORD;
  57. begin
  58. Result := y xor (x or (not z));
  59. end;
  60. procedure rot(var x: DWORD; n: BYTE);
  61. begin
  62. x := (x shl n) or (x shr (32 - n));
  63. end;
  64. procedure FF(var a: DWORD; b, c, d, x: DWORD; s: BYTE; ac: DWORD);
  65. begin
  66. inc(a, F(b, c, d) + x + ac);
  67. rot(a, s);
  68. inc(a, b);
  69. end;
  70. procedure GG(var a: DWORD; b, c, d, x: DWORD; s: BYTE; ac: DWORD);
  71. begin
  72. inc(a, G(b, c, d) + x + ac);
  73. rot(a, s);
  74. inc(a, b);
  75. end;
  76. procedure HH(var a: DWORD; b, c, d, x: DWORD; s: BYTE; ac: DWORD);
  77. begin
  78. inc(a, H(b, c, d) + x + ac);
  79. rot(a, s);
  80. inc(a, b);
  81. end;
  82. procedure II(var a: DWORD; b, c, d, x: DWORD; s: BYTE; ac: DWORD);
  83. begin
  84. inc(a, I(b, c, d) + x + ac);
  85. rot(a, s);
  86. inc(a, b);
  87. end;
  88. // -----------------------------------------------------------------------------------------------
  89. // Encode Count bytes at Source into (Count / 4) DWORDs at Target
  90. procedure Encode(Source, Target: pointer; Count: longword);
  91. var
  92. S: PByte;
  93. T: PDWORD;
  94. I: longword;
  95. begin
  96. S := Source;
  97. T := Target;
  98. for I := 1 to Count div 4 do begin
  99. T^ := S^;
  100. inc(S);
  101. T^ := T^ or (S^ shl 8);
  102. inc(S);
  103. T^ := T^ or (S^ shl 16);
  104. inc(S);
  105. T^ := T^ or (S^ shl 24);
  106. inc(S);
  107. inc(T);
  108. end;
  109. end;
  110. // Decode Count DWORDs at Source into (Count * 4) Bytes at Target
  111. procedure Decode(Source, Target: pointer; Count: longword);
  112. var
  113. S: PDWORD;
  114. T: PByte;
  115. I: longword;
  116. begin
  117. S := Source;
  118. T := Target;
  119. for I := 1 to Count do begin
  120. T^ := S^ and $ff;
  121. inc(T);
  122. T^ := (S^ shr 8) and $ff;
  123. inc(T);
  124. T^ := (S^ shr 16) and $ff;
  125. inc(T);
  126. T^ := (S^ shr 24) and $ff;
  127. inc(T);
  128. inc(S);
  129. end;
  130. end;
  131. // Transform State according to first 64 bytes at Buffer
  132. procedure Transform(Buffer: pointer; var State: MD5State);
  133. var
  134. a, b, c, d: DWORD;
  135. Block: MD5Block;
  136. begin
  137. Encode(Buffer, @Block, 64);
  138. a := State[0];
  139. b := State[1];
  140. c := State[2];
  141. d := State[3];
  142. FF (a, b, c, d, Block[ 0],  7, $d76aa478);
  143. FF (d, a, b, c, Block[ 1], 12, $e8c7b756);
  144. FF (c, d, a, b, Block[ 2], 17, $242070db);
  145. FF (b, c, d, a, Block[ 3], 22, $c1bdceee);
  146. FF (a, b, c, d, Block[ 4],  7, $f57c0faf);
  147. FF (d, a, b, c, Block[ 5], 12, $4787c62a);
  148. FF (c, d, a, b, Block[ 6], 17, $a8304613);
  149. FF (b, c, d, a, Block[ 7], 22, $fd469501);
  150. FF (a, b, c, d, Block[ 8],  7, $698098d8);
  151. FF (d, a, b, c, Block[ 9], 12, $8b44f7af);
  152. FF (c, d, a, b, Block[10], 17, $ffff5bb1);
  153. FF (b, c, d, a, Block[11], 22, $895cd7be);
  154. FF (a, b, c, d, Block[12],  7, $6b901122);
  155. FF (d, a, b, c, Block[13], 12, $fd987193);
  156. FF (c, d, a, b, Block[14], 17, $a679438e);
  157. FF (b, c, d, a, Block[15], 22, $49b40821);
  158. GG (a, b, c, d, Block[ 1],  5, $f61e2562);
  159. GG (d, a, b, c, Block[ 6],  9, $c040b340);
  160. GG (c, d, a, b, Block[11], 14, $265e5a51);
  161. GG (b, c, d, a, Block[ 0], 20, $e9b6c7aa);
  162. GG (a, b, c, d, Block[ 5],  5, $d62f105d);
  163. GG (d, a, b, c, Block[10],  9,  $2441453);
  164. GG (c, d, a, b, Block[15], 14, $d8a1e681);
  165. GG (b, c, d, a, Block[ 4], 20, $e7d3fbc8);
  166. GG (a, b, c, d, Block[ 9],  5, $21e1cde6);
  167. GG (d, a, b, c, Block[14],  9, $c33707d6);
  168. GG (c, d, a, b, Block[ 3], 14, $f4d50d87);
  169. GG (b, c, d, a, Block[ 8], 20, $455a14ed);
  170. GG (a, b, c, d, Block[13],  5, $a9e3e905);
  171. GG (d, a, b, c, Block[ 2],  9, $fcefa3f8);
  172. GG (c, d, a, b, Block[ 7], 14, $676f02d9);
  173. GG (b, c, d, a, Block[12], 20, $8d2a4c8a);
  174. HH (a, b, c, d, Block[ 5],  4, $fffa3942);
  175. HH (d, a, b, c, Block[ 8], 11, $8771f681);
  176. HH (c, d, a, b, Block[11], 16, $6d9d6122);
  177. HH (b, c, d, a, Block[14], 23, $fde5380c);
  178. HH (a, b, c, d, Block[ 1],  4, $a4beea44);
  179. HH (d, a, b, c, Block[ 4], 11, $4bdecfa9);
  180. HH (c, d, a, b, Block[ 7], 16, $f6bb4b60);
  181. HH (b, c, d, a, Block[10], 23, $bebfbc70);
  182. HH (a, b, c, d, Block[13],  4, $289b7ec6);
  183. HH (d, a, b, c, Block[ 0], 11, $eaa127fa);
  184. HH (c, d, a, b, Block[ 3], 16, $d4ef3085);
  185. HH (b, c, d, a, Block[ 6], 23,  $4881d05);
  186. HH (a, b, c, d, Block[ 9],  4, $d9d4d039);
  187. HH (d, a, b, c, Block[12], 11, $e6db99e5);
  188. HH (c, d, a, b, Block[15], 16, $1fa27cf8);
  189. HH (b, c, d, a, Block[ 2], 23, $c4ac5665);
  190. II (a, b, c, d, Block[ 0],  6, $f4292244);
  191. II (d, a, b, c, Block[ 7], 10, $432aff97);
  192. II (c, d, a, b, Block[14], 15, $ab9423a7);
  193. II (b, c, d, a, Block[ 5], 21, $fc93a039);
  194. II (a, b, c, d, Block[12],  6, $655b59c3);
  195. II (d, a, b, c, Block[ 3], 10, $8f0ccc92);
  196. II (c, d, a, b, Block[10], 15, $ffeff47d);
  197. II (b, c, d, a, Block[ 1], 21, $85845dd1);
  198. II (a, b, c, d, Block[ 8],  6, $6fa87e4f);
  199. II (d, a, b, c, Block[15], 10, $fe2ce6e0);
  200. II (c, d, a, b, Block[ 6], 15, $a3014314);
  201. II (b, c, d, a, Block[13], 21, $4e0811a1);
  202. II (a, b, c, d, Block[ 4],  6, $f7537e82);
  203. II (d, a, b, c, Block[11], 10, $bd3af235);
  204. II (c, d, a, b, Block[ 2], 15, $2ad7d2bb);
  205. II (b, c, d, a, Block[ 9], 21, $eb86d391);
  206. inc(State[0], a);
  207. inc(State[1], b);
  208. inc(State[2], c);
  209. inc(State[3], d);
  210. end;
  211. // -----------------------------------------------------------------------------------------------
  212. // Initialize given Context
  213. procedure MD5Init(var Context: MD5Context);
  214. begin
  215. with Context do begin
  216. State[0] := $67452301;
  217. State[1] := $efcdab89;
  218. State[2] := $98badcfe;
  219. State[3] := $10325476;
  220. Count[0] := 0;
  221. Count[1] := 0;
  222. ZeroMemory(@Buffer, SizeOf(MD5Buffer));
  223. end;
  224. end;
  225. // Update given Context to include Length bytes of Input
  226. procedure MD5Update(var Context: MD5Context; Input: pChar; Length: longword);
  227. var
  228. Index: longword;
  229. PartLen: longword;
  230. I: longword;
  231. begin
  232. with Context do begin
  233. Index := (Count[0] shr 3) and $3f;
  234. inc(Count[0], Length shl 3);
  235. if Count[0] < (Length shl 3) then inc(Count[1]);
  236. inc(Count[1], Length shr 29);
  237. end;
  238. PartLen := 64 - Index;
  239. if Length >= PartLen then begin
  240. CopyMemory(@Context.Buffer[Index], Input, PartLen);
  241. Transform(@Context.Buffer, Context.State);
  242. I := PartLen;
  243. while I + 63 < Length do begin
  244. Transform(@Input[I], Context.State);
  245. inc(I, 64);
  246. end;
  247. Index := 0;
  248. end else I := 0;
  249. CopyMemory(@Context.Buffer[Index], @Input[I], Length - I);
  250. end;
  251. // Finalize given Context, create Digest and zeroize Context
  252. procedure MD5Final(var Context: MD5Context; var Digest: MD5Digest);
  253. var
  254. Bits: MD5CBits;
  255. Index: longword;
  256. PadLen: longword;
  257. begin
  258. Decode(@Context.Count, @Bits, 2);
  259. Index := (Context.Count[0] shr 3) and $3f;
  260. if Index < 56 then PadLen := 56 - Index else PadLen := 120 - Index;
  261. MD5Update(Context, @PADDING, PadLen);
  262. MD5Update(Context, @Bits, 8);
  263. Decode(@Context.State, @Digest, 4);
  264. ZeroMemory(@Context, SizeOf(MD5Context));
  265. end;
  266. // -----------------------------------------------------------------------------------------------
  267. // Create digest of given Message
  268. function MD5String(M: string): MD5Digest;
  269. var
  270. Context: MD5Context;
  271. begin
  272. MD5Init(Context);
  273. MD5Update(Context, pChar(M), length(M));
  274. MD5Final(Context, Result);
  275. end;
  276. // Create hex representation of given Digest
  277. function MD5Print(D: MD5Digest): string;
  278. var
  279. I: byte;
  280. const
  281.   Digits: pchar = '01234567890abcdef';
  282. begin
  283. Result := '';
  284. for I := 0 to 15 do Result := Result + Digits[(D[I] shr 4) and $0f] + Digits[D[I] and $0f];
  285. end;
  286. const
  287.  itoa64: pchar = './0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
  288. Function crypt_to64(v: dword; n: integer): string;
  289. begin
  290.   Result := '';
  291.   while (n > 0) do
  292.     begin
  293.        Result := Result + itoa64[v and $3f];
  294.        v := v shr 6;
  295.        dec(n);
  296.     end;
  297. end;
  298. // -----------------------------------------------------------------------------------------------
  299. Function Cript_MD5(Passw, Salt: string): string;
  300.  const
  301.    magic: pchar = '$1$';
  302.  var
  303.    sp: string;
  304.    ctx, ctx1: MD5Context;
  305.    il: byte;
  306.    il2: integer;
  307.    Dig: MD5Digest;
  308.    DigPch: array [0..15] of char absolute Dig;
  309.    DW: DWord;
  310. begin
  311.   sp := Salt;
  312.   if 1 = Pos(magic, sp) then Delete(sp, 1 , 3);
  313. //  il := Pos('$', sp);
  314. // default using:
  315. //  if 8 < il then Delete(sp, 9, Length(sp)) else
  316. //    if il > 0 then Delete(sp, il, Length(sp));
  317. // Flash using:
  318.   if length(sp) < 2 then
  319.     begin
  320.       sp := '  ';
  321.       sp[1] := Char(Random(Length(itoa64)));
  322.       sp[2] := Char(Random(Length(itoa64)));
  323.     end else
  324.     begin
  325.       Delete(sp, 3, Length(sp)-2);
  326.     end;
  327.   MD5Init(ctx);
  328. MD5Update(ctx, pChar(Passw), length(Passw));
  329.   MD5Update(ctx, pChar(magic), length(magic));
  330.   MD5Update(ctx, pChar(sp), length(sp));
  331.   MD5Init(ctx1);
  332.   MD5Update(ctx1, pChar(Passw), length(Passw));
  333.   MD5Update(ctx1, pChar(sp), length(sp));
  334.   MD5Update(ctx1, pChar(Passw), length(Passw));
  335.   MD5Final(ctx1, Dig);
  336.   il2 := length(Passw);
  337.   While il2 > 0 do
  338.     begin
  339.       if il2>16
  340.         then MD5Update(ctx, DigPCh, 16)
  341.         else MD5Update(ctx, DigPCh, il2);
  342.        dec(il2, 16);
  343.     end;
  344.   FillChar(Dig, 16, 0); 
  345.   il := length(passw);
  346.   While il > 0 do
  347.    begin
  348. if (il and 1) = 1 then
  349.     MD5Update(ctx, #0, 1)
  350. else
  351.     MD5Update(ctx, pchar(passw), 1);
  352.     il := il shr 1;
  353.    end;
  354. MD5Final(ctx, Dig);
  355.   Move(Dig, DigPCh, 16);
  356.   for il2:=0 to 999 do
  357.   begin
  358.     MD5Init(ctx1);
  359.     if (il2 and 1) = 1 then
  360.        MD5Update(ctx1, PChar(passw), length(passw))
  361.       else
  362.        MD5Update(ctx1, DigPCh, 16);
  363.     if (il2 mod 3) > 0
  364.       then
  365.        MD5Update( ctx1, PChar(sp), length(sp));
  366.     if (il2 mod 7) > 0
  367.       then
  368.        MD5Update( ctx1, PChar(passw), length(passw));
  369.     if (il2 and 1) = 1
  370.       then
  371.         MD5Update(  ctx1, DigPCh, 16)
  372.       else
  373.         MD5Update(  ctx1, PChar(passw), length(passw));
  374.     MD5Final(ctx1, Dig);
  375.   end;
  376.   DW := (Dig[0] shl 16) or (Dig[6] shl 8) or Dig[12];
  377.   Result := crypt_to64(DW, 4);
  378.   DW := (Dig[1] shl 16) or (Dig[7] shl 8) or Dig[13];
  379.   Result := Result + crypt_to64(DW, 4);
  380.   DW := (Dig[2] shl 16) or (Dig[8] shl 8) or Dig[14];
  381.   Result := Result + crypt_to64(DW, 4);
  382.   DW := (Dig[3] shl 16) or (Dig[9] shl 8) or Dig[15];
  383.   Result := Result + crypt_to64(DW, 4);
  384.   DW := (Dig[4] shl 16) or (Dig[10] shl 8) or Dig[5];
  385.   Result := Result + crypt_to64(DW, 4);
  386.   DW := Dig[11];
  387.   Result := Result + crypt_to64(DW, 2);
  388.   Result := magic + sp + '$' + Result;
  389. end;
  390. // Compare two Digests
  391. function MD5Match(D1, D2: MD5Digest): boolean;
  392. var
  393. I: byte;
  394. begin
  395. I := 0;
  396. Result := TRUE;
  397. while Result and (I < 16) do begin
  398. Result := D1[I] = D2[I];
  399. inc(I);
  400. end;
  401. end;
  402. end.