41232818.txt
上传用户:aa1818
上传日期:2013-07-23
资源大小:10k
文件大小:14k
源码类别:

网格计算

开发平台:

Visual C++

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