WNDES.pas
上传用户:hylc_2004
上传日期:2014-01-23
资源大小:46800k
文件大小:13k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. //**************************************************************************
  2. //*Des加密算法
  3. //**************************************************************************
  4. unit WNDES;
  5. interface
  6. uses
  7.   Windows, Messages, ShlObj, WinSock, IniFiles, ActiveX, SysUtils,
  8.   Classes, Graphics, Controls, Forms, Dialogs;
  9. type
  10.   TKeyByte = array[0..5] of Byte;
  11.   TDesMode = (dmEncry, dmDESry);
  12. const
  13.   BitIP: array[0..63] of Byte =
  14.   (57, 49, 41, 33, 25, 17, 9, 1,
  15.     59, 51, 43, 35, 27, 19, 11, 3,
  16.     61, 53, 45, 37, 29, 21, 13, 5,
  17.     63, 55, 47, 39, 31, 23, 15, 7,
  18.     56, 48, 40, 32, 24, 16, 8, 0,
  19.     58, 50, 42, 34, 26, 18, 10, 2,
  20.     60, 52, 44, 36, 28, 20, 12, 4,
  21.     62, 54, 46, 38, 30, 22, 14, 6);
  22.   BitCP: array[0..63] of Byte =
  23.   (39, 7, 47, 15, 55, 23, 63, 31,
  24.     38, 6, 46, 14, 54, 22, 62, 30,
  25.     37, 5, 45, 13, 53, 21, 61, 29,
  26.     36, 4, 44, 12, 52, 20, 60, 28,
  27.     35, 3, 43, 11, 51, 19, 59, 27,
  28.     34, 2, 42, 10, 50, 18, 58, 26,
  29.     33, 1, 41, 9, 49, 17, 57, 25,
  30.     32, 0, 40, 8, 48, 16, 56, 24);
  31.   BitExp: array[0..47] of Integer =
  32.   (31, 0, 1, 2, 3, 4, 3, 4, 5, 6, 7, 8, 7, 8, 9, 10,
  33.     11, 12, 11, 12, 13, 14, 15, 16, 15, 16, 17, 18, 19, 20, 19, 20,
  34.     21, 22, 23, 24, 23, 24, 25, 26, 27, 28, 27, 28, 29, 30, 31, 0);
  35.   BitPM: array[0..31] of Byte =
  36.   (15, 6, 19, 20, 28, 11, 27, 16, 0, 14, 22, 25, 4, 17, 30, 9,
  37.     1, 7, 23, 13, 31, 26, 2, 8, 18, 12, 29, 5, 21, 10, 3, 24);
  38.   sBox: array[0..7] of array[0..63] of Byte =
  39.   ((14, 4, 13, 1, 2, 15, 11, 8, 3, 10, 6, 12, 5, 9, 0, 7,
  40.     0, 15, 7, 4, 14, 2, 13, 1, 10, 6, 12, 11, 9, 5, 3, 8,
  41.     4, 1, 14, 8, 13, 6, 2, 11, 15, 12, 9, 7, 3, 10, 5, 0,
  42.     15, 12, 8, 2, 4, 9, 1, 7, 5, 11, 3, 14, 10, 0, 6, 13),
  43.     (15, 1, 8, 14, 6, 11, 3, 4, 9, 7, 2, 13, 12, 0, 5, 10,
  44.     3, 13, 4, 7, 15, 2, 8, 14, 12, 0, 1, 10, 6, 9, 11, 5,
  45.     0, 14, 7, 11, 10, 4, 13, 1, 5, 8, 12, 6, 9, 3, 2, 15,
  46.     13, 8, 10, 1, 3, 15, 4, 2, 11, 6, 7, 12, 0, 5, 14, 9),
  47.     (10, 0, 9, 14, 6, 3, 15, 5, 1, 13, 12, 7, 11, 4, 2, 8,
  48.     13, 7, 0, 9, 3, 4, 6, 10, 2, 8, 5, 14, 12, 11, 15, 1,
  49.     13, 6, 4, 9, 8, 15, 3, 0, 11, 1, 2, 12, 5, 10, 14, 7,
  50.     1, 10, 13, 0, 6, 9, 8, 7, 4, 15, 14, 3, 11, 5, 2, 12),
  51.     (7, 13, 14, 3, 0, 6, 9, 10, 1, 2, 8, 5, 11, 12, 4, 15,
  52.     13, 8, 11, 5, 6, 15, 0, 3, 4, 7, 2, 12, 1, 10, 14, 9,
  53.     10, 6, 9, 0, 12, 11, 7, 13, 15, 1, 3, 14, 5, 2, 8, 4,
  54.     3, 15, 0, 6, 10, 1, 13, 8, 9, 4, 5, 11, 12, 7, 2, 14),
  55.     (2, 12, 4, 1, 7, 10, 11, 6, 8, 5, 3, 15, 13, 0, 14, 9,
  56.     14, 11, 2, 12, 4, 7, 13, 1, 5, 0, 15, 10, 3, 9, 8, 6,
  57.     4, 2, 1, 11, 10, 13, 7, 8, 15, 9, 12, 5, 6, 3, 0, 14,
  58.     11, 8, 12, 7, 1, 14, 2, 13, 6, 15, 0, 9, 10, 4, 5, 3),
  59.     (12, 1, 10, 15, 9, 2, 6, 8, 0, 13, 3, 4, 14, 7, 5, 11,
  60.     10, 15, 4, 2, 7, 12, 9, 5, 6, 1, 13, 14, 0, 11, 3, 8,
  61.     9, 14, 15, 5, 2, 8, 12, 3, 7, 0, 4, 10, 1, 13, 11, 6,
  62.     4, 3, 2, 12, 9, 5, 15, 10, 11, 14, 1, 7, 6, 0, 8, 13),
  63.     (4, 11, 2, 14, 15, 0, 8, 13, 3, 12, 9, 7, 5, 10, 6, 1,
  64.     13, 0, 11, 7, 4, 9, 1, 10, 14, 3, 5, 12, 2, 15, 8, 6,
  65.     1, 4, 11, 13, 12, 3, 7, 14, 10, 15, 6, 8, 0, 5, 9, 2,
  66.     6, 11, 13, 8, 1, 4, 10, 7, 9, 5, 0, 15, 14, 2, 3, 12),
  67.     (13, 2, 8, 4, 6, 15, 11, 1, 10, 9, 3, 14, 5, 0, 12, 7,
  68.     1, 15, 13, 8, 10, 3, 7, 4, 12, 5, 6, 11, 0, 14, 9, 2,
  69.     7, 11, 4, 1, 9, 12, 14, 2, 0, 6, 10, 13, 15, 3, 5, 8,
  70.     2, 1, 14, 7, 4, 10, 8, 13, 15, 12, 9, 0, 3, 5, 6, 11));
  71.   BitPMC1: array[0..55] of Byte =
  72.   (56, 48, 40, 32, 24, 16, 8,
  73.     0, 57, 49, 41, 33, 25, 17,
  74.     9, 1, 58, 50, 42, 34, 26,
  75.     18, 10, 2, 59, 51, 43, 35,
  76.     62, 54, 46, 38, 30, 22, 14,
  77.     6, 61, 53, 45, 37, 29, 21,
  78.     13, 5, 60, 52, 44, 36, 28,
  79.     20, 12, 4, 27, 19, 11, 3);
  80.   BitPMC2: array[0..47] of Byte =
  81.   (13, 16, 10, 23, 0, 4,
  82.     2, 27, 14, 5, 20, 9,
  83.     22, 18, 11, 3, 25, 7,
  84.     15, 6, 26, 19, 12, 1,
  85.     40, 51, 30, 36, 46, 54,
  86.     29, 39, 50, 44, 32, 47,
  87.     43, 48, 38, 55, 33, 52,
  88.     45, 41, 49, 35, 28, 31);
  89. //////////////////DES加密算法////////////////////////////    
  90. function EncryStr(Str, Key: string): string; //加密
  91. function EncryStrHex(Str, Key: string): string; //以十六进制加密(有些时侯加密的密文含有特殊字符文本框不能显示、数据库文本字段也不能存储。以十六进制形式表示可保证绝对不会出现该种情况)
  92. function DESryStr(Str, Key: string): string; //解密
  93. function DESryStrHex(StrHex, Key: string): string; //解密十六进制加密的密文
  94. var
  95.   subKey: array[0..15] of TKeyByte;
  96. implementation
  97. procedure initPermutation(var inData: array of Byte);
  98. var
  99.   newData: array[0..7] of Byte;
  100.   i: Integer;
  101. begin
  102.   FillChar(newData, 8, 0);
  103.   for i := 0 to 63 do
  104.     if (inData[BitIP[i] shr 3] and (1 shl (7 - (BitIP[i] and $07)))) <> 0 then
  105.       newData[i shr 3] := newData[i shr 3] or (1 shl (7 - (i and $07)));
  106.   for i := 0 to 7 do inData[i] := newData[i];
  107. end;
  108. procedure conversePermutation(var inData: array of Byte);
  109. var
  110.   newData: array[0..7] of Byte;
  111.   i: Integer;
  112. begin
  113.   FillChar(newData, 8, 0);
  114.   for i := 0 to 63 do
  115.     if (inData[BitCP[i] shr 3] and (1 shl (7 - (BitCP[i] and $07)))) <> 0 then
  116.       newData[i shr 3] := newData[i shr 3] or (1 shl (7 - (i and $07)));
  117.   for i := 0 to 7 do inData[i] := newData[i];
  118. end;
  119. procedure expand(inData: array of Byte; var outData: array of Byte);
  120. var
  121.   i: Integer;
  122. begin
  123.   FillChar(outData, 6, 0);
  124.   for i := 0 to 47 do
  125.     if (inData[BitExp[i] shr 3] and (1 shl (7 - (BitExp[i] and $07)))) <> 0 then
  126.       outData[i shr 3] := outData[i shr 3] or (1 shl (7 - (i and $07)));
  127. end;
  128. procedure permutation(var inData: array of Byte);
  129. var
  130.   newData: array[0..3] of Byte;
  131.   i: Integer;
  132. begin
  133.   FillChar(newData, 4, 0);
  134.   for i := 0 to 31 do
  135.     if (inData[BitPM[i] shr 3] and (1 shl (7 - (BitPM[i] and $07)))) <> 0 then
  136.       newData[i shr 3] := newData[i shr 3] or (1 shl (7 - (i and $07)));
  137.   for i := 0 to 3 do inData[i] := newData[i];
  138. end;
  139. function si(s, inByte: Byte): Byte;
  140. var
  141.   c: Byte;
  142. begin
  143.   c := (inByte and $20) or ((inByte and $1E) shr 1) or
  144.     ((inByte and $01) shl 4);
  145.   Result := (sBox[s][c] and $0F);
  146. end;
  147. procedure permutationChoose1(inData: array of Byte;
  148.   var outData: array of Byte);
  149. var
  150.   i: Integer;
  151. begin
  152.   FillChar(outData, 7, 0);
  153.   for i := 0 to 55 do
  154.     if (inData[BitPMC1[i] shr 3] and (1 shl (7 - (BitPMC1[i] and $07)))) <> 0 then
  155.       outData[i shr 3] := outData[i shr 3] or (1 shl (7 - (i and $07)));
  156. end;
  157. procedure permutationChoose2(inData: array of Byte;
  158.   var outData: array of Byte);
  159. var
  160.   i: Integer;
  161. begin
  162.   FillChar(outData, 6, 0);
  163.   for i := 0 to 47 do
  164.     if (inData[BitPMC2[i] shr 3] and (1 shl (7 - (BitPMC2[i] and $07)))) <> 0 then
  165.       outData[i shr 3] := outData[i shr 3] or (1 shl (7 - (i and $07)));
  166. end;
  167.  
  168. procedure cycleMove(var inData: array of Byte; bitMove: Byte);
  169. var
  170.   i: Integer;
  171. begin
  172.   for i := 0 to bitMove - 1 do
  173.   begin
  174.     inData[0] := (inData[0] shl 1) or (inData[1] shr 7);
  175.     inData[1] := (inData[1] shl 1) or (inData[2] shr 7);
  176.     inData[2] := (inData[2] shl 1) or (inData[3] shr 7);
  177.     inData[3] := (inData[3] shl 1) or ((inData[0] and $10) shr 4);
  178.     inData[0] := (inData[0] and $0F);
  179.   end;
  180. end;
  181. procedure makeKey(inKey: array of Byte; var outKey: array of TKeyByte);
  182. const
  183.   bitDisplace: array[0..15] of Byte =
  184.   (1, 1, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 1);
  185. var
  186.   outData56: array[0..6] of Byte;
  187.   key28l: array[0..3] of Byte;
  188.   key28r: array[0..3] of Byte;
  189.   key56o: array[0..6] of Byte;
  190.   i: Integer;
  191. begin
  192.   permutationChoose1(inKey, outData56);
  193.   key28l[0] := outData56[0] shr 4;
  194.   key28l[1] := (outData56[0] shl 4) or (outData56[1] shr 4);
  195.   key28l[2] := (outData56[1] shl 4) or (outData56[2] shr 4);
  196.   key28l[3] := (outData56[2] shl 4) or (outData56[3] shr 4);
  197.   key28r[0] := outData56[3] and $0F;
  198.   key28r[1] := outData56[4];
  199.   key28r[2] := outData56[5];
  200.   key28r[3] := outData56[6];
  201.   for i := 0 to 15 do
  202.   begin
  203.     cycleMove(key28l, bitDisplace[i]);
  204.     cycleMove(key28r, bitDisplace[i]);
  205.     key56o[0] := (key28l[0] shl 4) or (key28l[1] shr 4);
  206.     key56o[1] := (key28l[1] shl 4) or (key28l[2] shr 4);
  207.     key56o[2] := (key28l[2] shl 4) or (key28l[3] shr 4);
  208.     key56o[3] := (key28l[3] shl 4) or (key28r[0]);
  209.     key56o[4] := key28r[1];
  210.     key56o[5] := key28r[2];
  211.     key56o[6] := key28r[3];
  212.     permutationChoose2(key56o, outKey[i]);
  213.   end;
  214. end;
  215. procedure encry(inData, subKey: array of Byte;
  216.   var outData: array of Byte);
  217. var
  218.   outBuf: array[0..5] of Byte;
  219.   buf: array[0..7] of Byte;
  220.   i: Integer;
  221. begin
  222.   expand(inData, outBuf);
  223.   for i := 0 to 5 do outBuf[i] := outBuf[i] xor subKey[i];
  224.                                                 // outBuf       xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx
  225.   buf[0] := outBuf[0] shr 2; //xxxxxx -> 2
  226.   buf[1] := ((outBuf[0] and $03) shl 4) or (outBuf[1] shr 4); // 4 <- xx xxxx -> 4
  227.   buf[2] := ((outBuf[1] and $0F) shl 2) or (outBuf[2] shr 6); //        2 <- xxxx xx -> 6
  228.   buf[3] := outBuf[2] and $3F; //                    xxxxxx
  229.   buf[4] := outBuf[3] shr 2; //                           xxxxxx
  230.   buf[5] := ((outBuf[3] and $03) shl 4) or (outBuf[4] shr 4); //                                 xx xxxx
  231.   buf[6] := ((outBuf[4] and $0F) shl 2) or (outBuf[5] shr 6); //                                        xxxx xx
  232.   buf[7] := outBuf[5] and $3F; //                                               xxxxxx
  233.   for i := 0 to 7 do buf[i] := si(i, buf[i]);
  234.   for i := 0 to 3 do outBuf[i] := (buf[i * 2] shl 4) or buf[i * 2 + 1];
  235.   permutation(outBuf);
  236.   for i := 0 to 3 do outData[i] := outBuf[i];
  237. end;
  238. procedure desData(desMode: TDesMode;
  239.   inData: array of Byte; var outData: array of Byte);
  240. // inData, outData 都为8Bytes,否则出错
  241. var
  242.   i, j: Integer;
  243.   temp, buf: array[0..3] of Byte;
  244. begin
  245.   for i := 0 to 7 do outData[i] := inData[i];
  246.   initPermutation(outData);
  247.   if desMode = dmEncry then
  248.   begin
  249.     for i := 0 to 15 do
  250.     begin
  251.       for j := 0 to 3 do temp[j] := outData[j]; //temp = Ln
  252.       for j := 0 to 3 do outData[j] := outData[j + 4]; //Ln+1 = Rn
  253.       encry(outData, subKey[i], buf); //Rn ==Kn==> buf
  254.       for j := 0 to 3 do outData[j + 4] := temp[j] xor buf[j]; //Rn+1 = Ln^buf
  255.     end;
  256.     for j := 0 to 3 do temp[j] := outData[j + 4];
  257.     for j := 0 to 3 do outData[j + 4] := outData[j];
  258.     for j := 0 to 3 do outData[j] := temp[j];
  259.   end
  260.   else if desMode = dmDESry then
  261.   begin
  262.     for i := 15 downto 0 do
  263.     begin
  264.       for j := 0 to 3 do temp[j] := outData[j];
  265.       for j := 0 to 3 do outData[j] := outData[j + 4];
  266.       encry(outData, subKey[i], buf);
  267.       for j := 0 to 3 do outData[j + 4] := temp[j] xor buf[j];
  268.     end;
  269.     for j := 0 to 3 do temp[j] := outData[j + 4];
  270.     for j := 0 to 3 do outData[j + 4] := outData[j];
  271.     for j := 0 to 3 do outData[j] := temp[j];
  272.   end;
  273.   conversePermutation(outData);
  274. end;
  275. function EncryStr(Str, Key: string): string;
  276. var
  277.   StrByte, OutByte, KeyByte: array[0..7] of Byte;
  278.   StrResult: string;
  279.   I, J: Integer;
  280. begin
  281.   if (Length(Str) > 0) and (Ord(Str[Length(Str)]) = 0) then
  282.     raise Exception.Create('Error: the last char is NULL char.');
  283.   if Length(Key) < 8 then
  284.     while Length(Key) < 8 do Key := Key + Chr(0);
  285.   while Length(Str) mod 8 <> 0 do Str := Str + Chr(0);
  286.   for J := 0 to 7 do KeyByte[J] := Ord(Key[J + 1]);
  287.   makeKey(keyByte, subKey);
  288.   StrResult := '';
  289.   for I := 0 to Length(Str) div 8 - 1 do
  290.   begin
  291.     for J := 0 to 7 do
  292.       StrByte[J] := Ord(Str[I * 8 + J + 1]);
  293.     desData(dmEncry, StrByte, OutByte);
  294.     for J := 0 to 7 do
  295.       StrResult := StrResult + Chr(OutByte[J]);
  296.   end;
  297.   Result := StrResult;
  298. end;
  299. function DESryStr(Str, Key: string): string;
  300. var
  301.   StrByte, OutByte, KeyByte: array[0..7] of Byte;
  302.   StrResult: string;
  303.   I, J: Integer;
  304. begin
  305.   if Length(Key) < 8 then
  306.     while Length(Key) < 8 do Key := Key + Chr(0);
  307.   for J := 0 to 7 do KeyByte[J] := Ord(Key[J + 1]);
  308.   makeKey(keyByte, subKey);
  309.   StrResult := '';
  310.   for I := 0 to Length(Str) div 8 - 1 do
  311.   begin
  312.     for J := 0 to 7 do StrByte[J] := Ord(Str[I * 8 + J + 1]);
  313.     desData(dmDESry, StrByte, OutByte);
  314.     for J := 0 to 7 do
  315.       StrResult := StrResult + Chr(OutByte[J]);
  316.   end;
  317.   while (Length(StrResult) > 0) and
  318.     (Ord(StrResult[Length(StrResult)]) = 0) do
  319.     Delete(StrResult, Length(StrResult), 1);
  320.   Result := StrResult;
  321. end;
  322. ///////////////////////////////////////////////////////////
  323. function EncryStrHex(Str, Key: string): string;
  324. var
  325.   StrResult, TempResult, Temp: string;
  326.   I: Integer;
  327. begin
  328.   TempResult := EncryStr(Str, Key);
  329.   StrResult := '';
  330.   for I := 0 to Length(TempResult) - 1 do
  331.   begin
  332.     Temp := Format('%x', [Ord(TempResult[I + 1])]);
  333.     if Length(Temp) = 1 then Temp := '0' + Temp;
  334.     StrResult := StrResult + Temp;
  335.   end;
  336.   Result := StrResult;
  337. end;
  338. function DESryStrHex(StrHex, Key: string): string;
  339.   function HexToInt(Hex: string): Integer;
  340.   var
  341.     I, Res: Integer;
  342.     ch: Char;
  343.   begin
  344.     Res := 0;
  345.     for I := 0 to Length(Hex) - 1 do
  346.     begin
  347.       ch := Hex[I + 1];
  348.       if (ch >= '0') and (ch <= '9') then
  349.         Res := Res * 16 + Ord(ch) - Ord('0')
  350.       else if (ch >= 'A') and (ch <= 'F') then
  351.         Res := Res * 16 + Ord(ch) - Ord('A') + 10
  352.       else if (ch >= 'a') and (ch <= 'f') then
  353.         Res := Res * 16 + Ord(ch) - Ord('a') + 10
  354.       else raise Exception.Create('Error: not a Hex String');
  355.     end;
  356.     Result := Res;
  357.   end;
  358. var
  359.   Str, Temp: string;
  360.   I: Integer;
  361. begin
  362.   Str := '';
  363.   for I := 0 to Length(StrHex) div 2 - 1 do
  364.   begin
  365.     Temp := Copy(StrHex, I * 2 + 1, 2);
  366.     Str := Str + Chr(HexToInt(Temp));
  367.   end;
  368.   Result := DESryStr(Str, Key);
  369. end;
  370. end.