home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 December / Chip_2002-12_cd1.bin / ctenari / Hytha / MultiHSH.exe / SR.RAR / SR / DCPCrypt / Ciphers / DCPmars.pas < prev    next >
Pascal/Delphi Source File  |  2002-07-08  |  28KB  |  708 lines

  1. {******************************************************************************}
  2. {* DCPcrypt v2.0 written by David Barton (crypto@cityinthesky.co.uk) **********}
  3. {******************************************************************************}
  4. {* A binary compatible implementation of Mars *********************************}
  5. {******************************************************************************}
  6. {* Copyright (c) 1999-2002 David Barton                                       *}
  7. {* Permission is hereby granted, free of charge, to any person obtaining a    *}
  8. {* copy of this software and associated documentation files (the "Software"), *}
  9. {* to deal in the Software without restriction, including without limitation  *}
  10. {* the rights to use, copy, modify, merge, publish, distribute, sublicense,   *}
  11. {* and/or sell copies of the Software, and to permit persons to whom the      *}
  12. {* Software is furnished to do so, subject to the following conditions:       *}
  13. {*                                                                            *}
  14. {* The above copyright notice and this permission notice shall be included in *}
  15. {* all copies or substantial portions of the Software.                        *}
  16. {*                                                                            *}
  17. {* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR *}
  18. {* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,   *}
  19. {* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL    *}
  20. {* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER *}
  21. {* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING    *}
  22. {* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER        *}
  23. {* DEALINGS IN THE SOFTWARE.                                                  *}
  24. {******************************************************************************}
  25. unit DCPmars;
  26.  
  27. interface
  28. uses
  29.   Classes, Sysutils, DCPcrypt2, DCPconst, DCPblockciphers;
  30.  
  31. type
  32.   TDCP_mars= class(TDCP_blockcipher128)
  33.   protected
  34.     KeyData: array[0..39] of DWord;
  35.     procedure InitKey(const Key; Size: longword); override;
  36.   public
  37.     class function GetID: integer; override;
  38.     class function GetAlgorithm: string; override;
  39.     class function GetMaxKeySize: integer; override;
  40.     class function SelfTest: boolean; override;
  41.     procedure Burn; override;
  42.     procedure EncryptECB(const InData; var OutData); override;
  43.     procedure DecryptECB(const InData; var OutData); override;
  44.   end;
  45.  
  46.  
  47. {******************************************************************************}
  48. {******************************************************************************}
  49. implementation
  50. {$R-}{$Q-}
  51. {$I DCPmars.inc}
  52.  
  53. function LRot32(X: DWord; c: longword): DWord;
  54. begin
  55.   LRot32:= (X shl c) or (X shr (32 - c));
  56. end;
  57.  
  58. function RRot32(X: DWord; c: longword): DWord;
  59. begin
  60.   RRot32:= (X shr c) or (X shl (32 - c));
  61. end;
  62.  
  63. class function TDCP_mars.GetID: integer;
  64. begin
  65.   Result:= DCP_mars;
  66. end;
  67.  
  68. class function TDCP_mars.GetAlgorithm: string;
  69. begin
  70.   Result:= 'Mars';
  71. end;
  72.  
  73. class function TDCP_mars.GetMaxKeySize: integer;
  74. begin
  75.   Result:= 1248;
  76. end;
  77.  
  78. class function TDCP_mars.SelfTest: boolean;
  79. const
  80.   Key1: array[0..3] of dword=
  81.     ($deb35132,$83c296de,$39069e6b,$994c2438);
  82.   Key2: array[0..5] of dword=
  83.     ($a5391779,$1a58048b,$a853a993,$1d41102c,$088658d1,$954d8738);
  84.   Key3: array[0..7] of dword=
  85.     ($9867a1fb,$22ef7a3e,$8ce27c31,$a3e1aa02,$3ccce5e8,$2aa8beed,$9ac3db99,$27725ed6);
  86.   Plain1: array[0..3] of dword= ($deb35132,$83c296de,$39069e6b,$994c2438);
  87.   Plain2: array[0..3] of dword= ($2dc46167,$d242613e,$adbf4fa8,$8f1583b3);
  88.   Plain3: array[0..3] of dword= ($a4ab4413,$0847c4d3,$1621a7a8,$8493f4d4);
  89.   Cipher1: array[0..3] of dword= ($a91245f9,$4e032db4,$042279c4,$9ba608d7);
  90.   Cipher2: array[0..3] of dword= ($260334cb,$6d587f45,$e0d2bd54,$bd191c57);
  91.   Cipher3: array[0..3] of dword= ($67a1acdd,$be3163e3,$5f9f1c2c,$b8a48fe3);
  92. var
  93.   Cipher: TDCP_mars;
  94.   Block: array[0..3] of dword;
  95. begin
  96.   Cipher:= TDCP_mars.Create(nil);
  97.   Cipher.Init(Key1,Sizeof(Key1)*8,nil);
  98.   Cipher.EncryptECB(Plain1,Block);
  99.   Result:= CompareMem(@Cipher1,@Block,Sizeof(Block));
  100.   Cipher.DecryptECB(Block,Block);
  101.   Result:= Result and CompareMem(@Plain1,@Block,Sizeof(Block));
  102.   Cipher.Burn;
  103.   Cipher.Init(Key2,Sizeof(Key2)*8,nil);
  104.   Cipher.EncryptECB(Plain2,Block);
  105.   Result:= Result and CompareMem(@Cipher2,@Block,Sizeof(Block));
  106.   Cipher.DecryptECB(Block,Block);
  107.   Result:= Result and CompareMem(@Plain2,@Block,Sizeof(Block));
  108.   Cipher.Burn;
  109.   Cipher.Init(Key3,Sizeof(Key3)*8,nil);
  110.   Cipher.EncryptECB(Plain3,Block);
  111.   Result:= Result and CompareMem(@Cipher3,@Block,Sizeof(Block));
  112.   Cipher.DecryptECB(Block,Block);
  113.   Result:= Result and CompareMem(@Plain3,@Block,Sizeof(Block));
  114.   Cipher.Burn;
  115.   Cipher.Free;
  116. end;
  117.  
  118. procedure gen_mask(var x, m: DWord);
  119. var
  120.   u: DWord;
  121. begin
  122.   u:= x and (x shr 1); u:= u and (u shr 2);
  123.   u:= u and (u shr 4); u:= u and (u shr 1) and (u shr 2);
  124.   m:= u;
  125.   u:= (x xor $FFFFFFFF) and ((x xor $FFFFFFFF) shr 1); u:= u and (u shr 2);
  126.   u:= u and (u shr 4); u:= u and (u shr 1) and (u shr 2);
  127.   u:= u or m;
  128.   m:= (u shl 1) or (u shl 2) or (u shl 3)
  129.        or (u shl 4) or (u shl 5) or (u shl 6)
  130.        or (u shl 7) or (u shl 8);
  131.   m:= (m or u or (u shl 9)) and ((x xor $FFFFFFFF) xor (x shl 1)) and ((x xor $FFFFFFFF) xor (x shr 1));
  132.   m:= m and $FFFFFFFC;
  133. end;
  134.  
  135. procedure TDCP_mars.InitKey(const Key; Size: longword);
  136. var
  137.   i, j, m, u, w: DWord;
  138.   t: array[-7..39] of DWord;
  139.   KeyB: array[0..39] of DWord;
  140. begin
  141.   Size:= Size div 8;
  142.   FillChar(KeyB,Sizeof(KeyB),0);
  143.   Move(Key,KeyB,Size);
  144.   Size:= Size div 4;
  145.   Move(vk,t,Sizeof(vk));
  146.   for i:= 0 to 38 do
  147.   begin
  148.     u:= t[i-7] xor t[i-2];
  149.     t[i]:= LRot32(u,3) xor KeyB[i mod DWord(Size)] xor i;
  150.   end;
  151.   t[39]:= Size;
  152.   for j:= 0 to 6 do
  153.   begin
  154.     for i:= 1 to 39 do
  155.     begin
  156.       u:= t[i] + s_box[t[i-1] and $1FF];
  157.       t[i]:= LRot32(u,9);
  158.     end;
  159.     u:= t[0] + s_box[t[39] and $1FF];
  160.     t[0]:= LRot32(u,9);
  161.   end;
  162.   for i:= 0 to 39 do
  163.     KeyData[(7*i) mod 40]:= t[i];
  164.   i:= 5;
  165.   repeat
  166.     u:= s_box[265+(KeyData[i] and $3)];
  167.     j:= KeyData[i+3] and $1f;
  168.     w:= KeyData[i] or $3;
  169.     gen_mask(w,m);
  170.     KeyData[i]:= w xor (LRot32(u,j) and m);
  171.     Inc(i,2);
  172.   until i>= 37;
  173. end;
  174.  
  175. procedure TDCP_mars.Burn;
  176. begin
  177.   FillChar(KeyData,Sizeof(KeyData),$FF);
  178.   inherited Burn;
  179. end;
  180.  
  181. procedure TDCP_mars.EncryptECB(const InData; var OutData);
  182. var
  183.   l, m, r, t: DWord;
  184.   blk: array[0..3] of DWord;
  185. begin
  186.   if not fInitialized then
  187.     raise EDCP_blockcipher.Create('Cipher not initialized');
  188.   Blk[0]:= PDWord(@InData)^;
  189.   Blk[1]:= PDWord(longword(@InData)+4)^;
  190.   Blk[2]:= PDWord(longword(@InData)+8)^;
  191.   Blk[3]:= PDWord(longword(@InData)+12)^;
  192.  
  193.   blk[0]:= blk[0] + KeyData[0]; blk[1]:= blk[1] + KeyData[1];
  194.   blk[2]:= blk[2] + KeyData[2]; blk[3]:= blk[3] + KeyData[3];
  195.   blk[1]:= blk[1] xor s_box[  blk[0]         and $FF];
  196.   blk[1]:= blk[1]  +  s_box[((blk[0] shr  8) and $FF) + 256];
  197.   blk[2]:= blk[2]  +  s_box[ (blk[0] shr 16) and $FF];
  198.   blk[3]:= blk[3] xor s_box[((blk[0] shr 24) and $FF) + 256];
  199.   blk[0]:= RRot32(blk[0], 24); blk[0]:= blk[0] + blk[3];
  200.   blk[2]:= blk[2] xor s_box[  blk[1]         and $FF];
  201.   blk[2]:= blk[2]  +  s_box[((blk[1] shr  8) and $FF) + 256];
  202.   blk[3]:= blk[3]  +  s_box[ (blk[1] shr 16) and $FF];
  203.   blk[0]:= blk[0] xor s_box[((blk[1] shr 24) and $FF) + 256];
  204.   blk[1]:= RRot32(blk[1], 24); blk[1]:= blk[1] + blk[2];
  205.   blk[3]:= blk[3] xor s_box[  blk[2]         and $FF];
  206.   blk[3]:= blk[3]  +  s_box[((blk[2] shr  8) and $FF) + 256];
  207.   blk[0]:= blk[0]  +  s_box[ (blk[2] shr 16) and $FF];
  208.   blk[1]:= blk[1] xor s_box[((blk[2] shr 24) and $FF) + 256];
  209.   blk[2]:= RRot32(blk[2], 24);
  210.   blk[0]:= blk[0] xor s_box[  blk[3]         and $FF];
  211.   blk[0]:= blk[0]  +  s_box[((blk[3] shr  8) and $FF) + 256];
  212.   blk[1]:= blk[1]  +  s_box[ (blk[3] shr 16) and $FF];
  213.   blk[2]:= blk[2] xor s_box[((blk[3] shr 24) and $FF) + 256];
  214.   blk[3]:= RRot32(blk[3], 24);
  215.   blk[1]:= blk[1] xor s_box[  blk[0]         and $FF];
  216.   blk[1]:= blk[1]  +  s_box[((blk[0] shr  8) and $FF) + 256];
  217.   blk[2]:= blk[2]  +  s_box[ (blk[0] shr 16) and $FF];
  218.   blk[3]:= blk[3] xor s_box[((blk[0] shr 24) and $FF) + 256];
  219.   blk[0]:= RRot32(blk[0], 24); blk[0]:= blk[0] + blk[3];
  220.   blk[2]:= blk[2] xor s_box[  blk[1]         and $FF];
  221.   blk[2]:= blk[2]  +  s_box[((blk[1] shr  8) and $FF) + 256];
  222.   blk[3]:= blk[3]  +  s_box[ (blk[1] shr 16) and $FF];
  223.   blk[0]:= blk[0] xor s_box[((blk[1] shr 24) and $FF) + 256];
  224.   blk[1]:= RRot32(blk[1], 24); blk[1]:= blk[1] + blk[2];
  225.   blk[3]:= blk[3] xor s_box[  blk[2]         and $FF];
  226.   blk[3]:= blk[3]  +  s_box[((blk[2] shr  8) and $FF) + 256];
  227.   blk[0]:= blk[0]  +  s_box[ (blk[2] shr 16) and $FF];
  228.   blk[1]:= blk[1] xor s_box[((blk[2] shr 24) and $FF) + 256];
  229.   blk[2]:= RRot32(blk[2], 24);
  230.   blk[0]:= blk[0] xor s_box[  blk[3]         and $FF];
  231.   blk[0]:= blk[0]  +  s_box[((blk[3] shr  8) and $FF) + 256];
  232.   blk[1]:= blk[1]  +  s_box[ (blk[3] shr 16) and $FF];
  233.   blk[2]:= blk[2] xor s_box[((blk[3] shr 24) and $FF) + 256];
  234.   blk[3]:= RRot32(blk[3], 24);
  235.   m:= blk[0] + KeyData[4];
  236.   r:= LRot32(blk[0],13) * KeyData[5];
  237.   l:= s_box[m and $1FF]; r:= LRot32(r,5);
  238.   t:= r and $1f; m:= LRot32(m,t);
  239.   l:= l xor r; r:= LRot32(r,5); l:= l xor r;
  240.   t:= r and $1f; l:= LRot32(l,t);
  241.   blk[0]:= LRot32(blk[0],13);
  242.   blk[1]:= blk[1] + l;
  243.   blk[2]:= blk[2] + m;
  244.   blk[3]:= blk[3] xor r;
  245.   m:= blk[1] + KeyData[6];
  246.   r:= LRot32(blk[1],13) * KeyData[7];
  247.   l:= s_box[m and $1FF]; r:= LRot32(r,5);
  248.   t:= r and $1f; m:= LRot32(m,t);
  249.   l:= l xor r; r:= LRot32(r,5); l:= l xor r;
  250.   t:= r and $1f; l:= LRot32(l,t);
  251.   blk[1]:= LRot32(blk[1],13);
  252.   blk[2]:= blk[2] + l;
  253.   blk[3]:= blk[3] + m;
  254.   blk[0]:= blk[0] xor r;
  255.   m:= blk[2] + KeyData[8];
  256.   r:= LRot32(blk[2],13) * KeyData[9];
  257.   l:= s_box[m and $1FF]; r:= LRot32(r,5);
  258.   t:= r and $1f; m:= LRot32(m,t);
  259.   l:= l xor r; r:= LRot32(r,5); l:= l xor r;
  260.   t:= r and $1f; l:= LRot32(l,t);
  261.   blk[2]:= LRot32(blk[2],13);
  262.   blk[3]:= blk[3] + l;
  263.   blk[0]:= blk[0] + m;
  264.   blk[1]:= blk[1] xor r;
  265.   m:= blk[3] + KeyData[10];
  266.   r:= LRot32(blk[3],13) * KeyData[11];
  267.   l:= s_box[m and $1FF]; r:= LRot32(r,5);
  268.   t:= r and $1f; m:= LRot32(m,t);
  269.   l:= l xor r; r:= LRot32(r,5); l:= l xor r;
  270.   t:= r and $1f; l:= LRot32(l,t);
  271.   blk[3]:= LRot32(blk[3],13);
  272.   blk[0]:= blk[0] + l;
  273.   blk[1]:= blk[1] + m;
  274.   blk[2]:= blk[2] xor r;
  275.   m:= blk[0] + KeyData[12];
  276.   r:= LRot32(blk[0],13) * KeyData[13];
  277.   l:= s_box[m and $1FF]; r:= LRot32(r,5);
  278.   t:= r and $1f; m:= LRot32(m,t);
  279.   l:= l xor r; r:= LRot32(r,5); l:= l xor r;
  280.   t:= r and $1f; l:= LRot32(l,t);
  281.   blk[0]:= LRot32(blk[0],13);
  282.   blk[1]:= blk[1] + l;
  283.   blk[2]:= blk[2] + m;
  284.   blk[3]:= blk[3] xor r;
  285.   m:= blk[1] + KeyData[14];
  286.   r:= LRot32(blk[1],13) * KeyData[15];
  287.   l:= s_box[m and $1FF]; r:= LRot32(r,5);
  288.   t:= r and $1f; m:= LRot32(m,t);
  289.   l:= l xor r; r:= LRot32(r,5); l:= l xor r;
  290.   t:= r and $1f; l:= LRot32(l,t);
  291.   blk[1]:= LRot32(blk[1],13);
  292.   blk[2]:= blk[2] + l;
  293.   blk[3]:= blk[3] + m;
  294.   blk[0]:= blk[0] xor r;
  295.   m:= blk[2] + KeyData[16];
  296.   r:= LRot32(blk[2],13) * KeyData[17];
  297.   l:= s_box[m and $1FF]; r:= LRot32(r,5);
  298.   t:= r and $1f; m:= LRot32(m,t);
  299.   l:= l xor r; r:= LRot32(r,5); l:= l xor r;
  300.   t:= r and $1f; l:= LRot32(l,t);
  301.   blk[2]:= LRot32(blk[2],13);
  302.   blk[3]:= blk[3] + l;
  303.   blk[0]:= blk[0] + m;
  304.   blk[1]:= blk[1] xor r;
  305.   m:= blk[3] + KeyData[18];
  306.   r:= LRot32(blk[3],13) * KeyData[19];
  307.   l:= s_box[m and $1FF]; r:= LRot32(r,5);
  308.   t:= r and $1f; m:= LRot32(m,t);
  309.   l:= l xor r; r:= LRot32(r,5); l:= l xor r;
  310.   t:= r and $1f; l:= LRot32(l,t);
  311.   blk[3]:= LRot32(blk[3],13);
  312.   blk[0]:= blk[0] + l;
  313.   blk[1]:= blk[1] + m;
  314.   blk[2]:= blk[2] xor r;
  315.   m:= blk[0] + KeyData[20];
  316.   r:= LRot32(blk[0],13) * KeyData[21];
  317.   l:= s_box[m and $1FF]; r:= LRot32(r,5);
  318.   t:= r and $1f; m:= LRot32(m,t);
  319.   l:= l xor r; r:= LRot32(r,5); l:= l xor r;
  320.   t:= r and $1f; l:= LRot32(l,t);
  321.   blk[0]:= LRot32(blk[0],13);
  322.   blk[3]:= blk[3] + l;
  323.   blk[2]:= blk[2] + m;
  324.   blk[1]:= blk[1] xor r;
  325.   m:= blk[1] + KeyData[22];
  326.   r:= LRot32(blk[1],13) * KeyData[23];
  327.   l:= s_box[m and $1FF]; r:= LRot32(r,5);
  328.   t:= r and $1f; m:= LRot32(m,t);
  329.   l:= l xor r; r:= LRot32(r,5); l:= l xor r;
  330.   t:= r and $1f; l:= LRot32(l,t);
  331.   blk[1]:= LRot32(blk[1],13);
  332.   blk[0]:= blk[0] + l;
  333.   blk[3]:= blk[3] + m;
  334.   blk[2]:= blk[2] xor r;
  335.   m:= blk[2] + KeyData[24];
  336.   r:= LRot32(blk[2],13) * KeyData[25];
  337.   l:= s_box[m and $1FF]; r:= LRot32(r,5);
  338.   t:= r and $1f; m:= LRot32(m,t);
  339.   l:= l xor r; r:= LRot32(r,5); l:= l xor r;
  340.   t:= r and $1f; l:= LRot32(l,t);
  341.   blk[2]:= LRot32(blk[2],13);
  342.   blk[1]:= blk[1] + l;
  343.   blk[0]:= blk[0] + m;
  344.   blk[3]:= blk[3] xor r;
  345.   m:= blk[3] + KeyData[26];
  346.   r:= LRot32(blk[3],13) * KeyData[27];
  347.   l:= s_box[m and $1FF]; r:= LRot32(r,5);
  348.   t:= r and $1f; m:= LRot32(m,t);
  349.   l:= l xor r; r:= LRot32(r,5); l:= l xor r;
  350.   t:= r and $1f; l:= LRot32(l,t);
  351.   blk[3]:= LRot32(blk[3],13);
  352.   blk[2]:= blk[2] + l;
  353.   blk[1]:= blk[1] + m;
  354.   blk[0]:= blk[0] xor r;
  355.   m:= blk[0] + KeyData[28];
  356.   r:= LRot32(blk[0],13) * KeyData[29];
  357.   l:= s_box[m and $1FF]; r:= LRot32(r,5);
  358.   t:= r and $1f; m:= LRot32(m,t);
  359.   l:= l xor r; r:= LRot32(r,5); l:= l xor r;
  360.   t:= r and $1f; l:= LRot32(l,t);
  361.   blk[0]:= LRot32(blk[0],13);
  362.   blk[3]:= blk[3] + l;
  363.   blk[2]:= blk[2] + m;
  364.   blk[1]:= blk[1] xor r;
  365.   m:= blk[1] + KeyData[30];
  366.   r:= LRot32(blk[1],13) * KeyData[31];
  367.   l:= s_box[m and $1FF]; r:= LRot32(r,5);
  368.   t:= r and $1f; m:= LRot32(m,t);
  369.   l:= l xor r; r:= LRot32(r,5); l:= l xor r;
  370.   t:= r and $1f; l:= LRot32(l,t);
  371.   blk[1]:= LRot32(blk[1],13);
  372.   blk[0]:= blk[0] + l;
  373.   blk[3]:= blk[3] + m;
  374.   blk[2]:= blk[2] xor r;
  375.   m:= blk[2] + KeyData[32];
  376.   r:= LRot32(blk[2],13) * KeyData[33];
  377.   l:= s_box[m and $1FF]; r:= LRot32(r,5);
  378.   t:= r and $1f; m:= LRot32(m,t);
  379.   l:= l xor r; r:= LRot32(r,5); l:= l xor r;
  380.   t:= r and $1f; l:= LRot32(l,t);
  381.   blk[2]:= LRot32(blk[2],13);
  382.   blk[1]:= blk[1] + l;
  383.   blk[0]:= blk[0] + m;
  384.   blk[3]:= blk[3] xor r;
  385.   m:= blk[3] + KeyData[34];
  386.   r:= LRot32(blk[3],13) * KeyData[35];
  387.   l:= s_box[m and $1FF]; r:= LRot32(r,5);
  388.   t:= r and $1f; m:= LRot32(m,t);
  389.   l:= l xor r; r:= LRot32(r,5); l:= l xor r;
  390.   t:= r and $1f; l:= LRot32(l,t);
  391.   blk[3]:= LRot32(blk[3],13);
  392.   blk[2]:= blk[2] + l;
  393.   blk[1]:= blk[1] + m;
  394.   blk[0]:= blk[0] xor r;
  395.   blk[1]:= blk[1] xor s_box[ (blk[0]         and $FF) + 256];
  396.   blk[2]:= blk[2]  -  s_box[ (blk[0] shr 24) and $FF];
  397.   blk[3]:= blk[3]  -  s_box[((blk[0] shr 16) and $FF) + 256];
  398.   blk[3]:= blk[3] xor s_box[ (blk[0] shr  8) and $FF];
  399.   blk[0]:= LRot32(blk[0], 24);
  400.   blk[2]:= blk[2] xor s_box[ (blk[1]         and $FF) + 256];
  401.   blk[3]:= blk[3]  -  s_box[ (blk[1] shr 24) and $FF];
  402.   blk[0]:= blk[0]  -  s_box[((blk[1] shr 16) and $FF) + 256];
  403.   blk[0]:= blk[0] xor s_box[ (blk[1] shr  8) and $FF];
  404.   blk[1]:= LRot32(blk[1], 24); blk[2]:= blk[2] - blk[1];
  405.   blk[3]:= blk[3] xor s_box[ (blk[2]         and $FF) + 256];
  406.   blk[0]:= blk[0]  -  s_box[ (blk[2] shr 24) and $FF];
  407.   blk[1]:= blk[1]  -  s_box[((blk[2] shr 16) and $FF) + 256];
  408.   blk[1]:= blk[1] xor s_box[ (blk[2] shr  8) and $FF];
  409.   blk[2]:= LRot32(blk[2], 24); blk[3]:= blk[3] - blk[0];
  410.   blk[0]:= blk[0] xor s_box[ (blk[3]         and $FF) + 256];
  411.   blk[1]:= blk[1]  -  s_box[ (blk[3] shr 24) and $FF];
  412.   blk[2]:= blk[2]  -  s_box[((blk[3] shr 16) and $FF) + 256];
  413.   blk[2]:= blk[2] xor s_box[ (blk[3] shr  8) and $FF];
  414.   blk[3]:= LRot32(blk[3], 24);
  415.   blk[1]:= blk[1] xor s_box[ (blk[0]         and $FF) + 256];
  416.   blk[2]:= blk[2]  -  s_box[ (blk[0] shr 24) and $FF];
  417.   blk[3]:= blk[3]  -  s_box[((blk[0] shr 16) and $FF) + 256];
  418.   blk[3]:= blk[3] xor s_box[ (blk[0] shr  8) and $FF];
  419.   blk[0]:= LRot32(blk[0], 24);
  420.   blk[2]:= blk[2] xor s_box[ (blk[1]         and $FF) + 256];
  421.   blk[3]:= blk[3]  -  s_box[ (blk[1] shr 24) and $FF];
  422.   blk[0]:= blk[0]  -  s_box[((blk[1] shr 16) and $FF) + 256];
  423.   blk[0]:= blk[0] xor s_box[ (blk[1] shr  8) and $FF];
  424.   blk[1]:= LRot32(blk[1], 24); blk[2]:= blk[2] - blk[1];
  425.   blk[3]:= blk[3] xor s_box[ (blk[2]         and $FF) + 256];
  426.   blk[0]:= blk[0]  -  s_box[ (blk[2] shr 24) and $FF];
  427.   blk[1]:= blk[1]  -  s_box[((blk[2] shr 16) and $FF) + 256];
  428.   blk[1]:= blk[1] xor s_box[ (blk[2] shr  8) and $FF];
  429.   blk[2]:= LRot32(blk[2], 24); blk[3]:= blk[3] - blk[0];
  430.   blk[0]:= blk[0] xor s_box[ (blk[3]         and $FF) + 256];
  431.   blk[1]:= blk[1]  -  s_box[ (blk[3] shr 24) and $FF];
  432.   blk[2]:= blk[2]  -  s_box[((blk[3] shr 16) and $FF) + 256];
  433.   blk[2]:= blk[2] xor s_box[ (blk[3] shr  8) and $FF];
  434.   blk[3]:= LRot32(blk[3], 24);
  435.   blk[0]:= blk[0] - KeyData[36]; blk[1]:= blk[1] - KeyData[37];
  436.   blk[2]:= blk[2] - KeyData[38]; blk[3]:= blk[3] - KeyData[39];
  437.  
  438.   PDWord(@OutData)^:= Blk[0];
  439.   PDWord(longword(@OutData)+4)^:= Blk[1];
  440.   PDWord(longword(@OutData)+8)^:= Blk[2];
  441.   PDWord(longword(@OutData)+12)^:= Blk[3];
  442. end;
  443.  
  444. procedure TDCP_mars.DecryptECB(const InData; var OutData);
  445. var
  446.   l, m, r, t: DWord;
  447.   blk: array[0..3] of DWord;
  448. begin
  449.   if not fInitialized then
  450.     raise EDCP_blockcipher.Create('Cipher not initialized');
  451.   Blk[0]:= PDWord(@InData)^;
  452.   Blk[1]:= PDWord(longword(@InData)+4)^;
  453.   Blk[2]:= PDWord(longword(@InData)+8)^;
  454.   Blk[3]:= PDWord(longword(@InData)+12)^;
  455.  
  456.   blk[0]:= blk[0] + KeyData[36]; blk[1]:= blk[1] + KeyData[37];
  457.   blk[2]:= blk[2] + KeyData[38]; blk[3]:= blk[3] + KeyData[39];
  458.   blk[3]:= RRot32(blk[3], 24);
  459.   blk[2]:= blk[2] xor s_box[ (blk[3] shr  8) and $FF];
  460.   blk[2]:= blk[2]  +  s_box[((blk[3] shr 16) and $FF) + 256];
  461.   blk[1]:= blk[1]  +  s_box[ (blk[3] shr 24) and $FF];
  462.   blk[0]:= blk[0] xor s_box[ (blk[3]         and $FF) + 256];
  463.   blk[3]:= blk[3] + blk[0]; blk[2]:= RRot32(blk[2], 24);
  464.   blk[1]:= blk[1] xor s_box[ (blk[2] shr  8) and $FF];
  465.   blk[1]:= blk[1]  +  s_box[((blk[2] shr 16) and $FF) + 256];
  466.   blk[0]:= blk[0]  +  s_box[ (blk[2] shr 24) and $FF];
  467.   blk[3]:= blk[3] xor s_box[ (blk[2]         and $FF) + 256];
  468.   blk[2]:= blk[2] + blk[1]; blk[1]:= RRot32(blk[1], 24);
  469.   blk[0]:= blk[0] xor s_box[ (blk[1] shr  8) and $FF];
  470.   blk[0]:= blk[0]  +  s_box[((blk[1] shr 16) and $FF) + 256];
  471.   blk[3]:= blk[3]  +  s_box[ (blk[1] shr 24) and $FF];
  472.   blk[2]:= blk[2] xor s_box[ (blk[1]         and $FF) + 256];
  473.   blk[0]:= RRot32(blk[0], 24);
  474.   blk[3]:= blk[3] xor s_box[ (blk[0] shr  8) and $FF];
  475.   blk[3]:= blk[3]  +  s_box[((blk[0] shr 16) and $FF) + 256];
  476.   blk[2]:= blk[2]  +  s_box[ (blk[0] shr 24) and $FF];
  477.   blk[1]:= blk[1] xor s_box[ (blk[0]         and $FF) + 256];
  478.   blk[3]:= RRot32(blk[3], 24);
  479.   blk[2]:= blk[2] xor s_box[ (blk[3] shr  8) and $FF];
  480.   blk[2]:= blk[2]  +  s_box[((blk[3] shr 16) and $FF) + 256];
  481.   blk[1]:= blk[1]  +  s_box[ (blk[3] shr 24) and $FF];
  482.   blk[0]:= blk[0] xor s_box[ (blk[3]         and $FF) + 256];
  483.   blk[3]:= blk[3] + blk[0]; blk[2]:= RRot32(blk[2], 24);
  484.   blk[1]:= blk[1] xor s_box[ (blk[2] shr  8) and $FF];
  485.   blk[1]:= blk[1]  +  s_box[((blk[2] shr 16) and $FF) + 256];
  486.   blk[0]:= blk[0]  +  s_box[ (blk[2] shr 24) and $FF];
  487.   blk[3]:= blk[3] xor s_box[ (blk[2]         and $FF) + 256];
  488.   blk[2]:= blk[2] + blk[1]; blk[1]:= RRot32(blk[1], 24);
  489.   blk[0]:= blk[0] xor s_box[ (blk[1] shr  8) and $FF];
  490.   blk[0]:= blk[0]  +  s_box[((blk[1] shr 16) and $FF) + 256];
  491.   blk[3]:= blk[3]  +  s_box[ (blk[1] shr 24) and $FF];
  492.   blk[2]:= blk[2] xor s_box[ (blk[1]         and $FF) + 256];
  493.   blk[0]:= RRot32(blk[0], 24);
  494.   blk[3]:= blk[3] xor s_box[ (blk[0] shr  8) and $FF];
  495.   blk[3]:= blk[3]  +  s_box[((blk[0] shr 16) and $FF) + 256];
  496.   blk[2]:= blk[2]  +  s_box[ (blk[0] shr 24) and $FF];
  497.   blk[1]:= blk[1] xor s_box[ (blk[0]         and $FF) + 256];
  498.   blk[3]:= RRot32(blk[3],13);
  499.   m:= blk[3] + KeyData[34];
  500.   r:= LRot32(blk[3],13) * KeyData[35];
  501.   l:= s_box[m and $1FF]; r:= LRot32(r,5);
  502.   t:= r and $1f; m:= LRot32(m,t);
  503.   l:= l xor r; r:= LRot32(r,5); l:= l xor r;
  504.   t:= r and $1f; l:= LRot32(l,t);
  505.   blk[2]:= blk[2] - l;
  506.   blk[1]:= blk[1] - m;
  507.   blk[0]:= blk[0] xor r;
  508.   blk[2]:= RRot32(blk[2],13);
  509.   m:= blk[2] + KeyData[32];
  510.   r:= LRot32(blk[2],13) * KeyData[33];
  511.   l:= s_box[m and $1FF]; r:= LRot32(r,5);
  512.   t:= r and $1f; m:= LRot32(m,t);
  513.   l:= l xor r; r:= LRot32(r,5); l:= l xor r;
  514.   t:= r and $1f; l:= LRot32(l,t);
  515.   blk[1]:= blk[1] - l;
  516.   blk[0]:= blk[0] - m;
  517.   blk[3]:= blk[3] xor r;
  518.   blk[1]:= RRot32(blk[1],13);
  519.   m:= blk[1] + KeyData[30];
  520.   r:= LRot32(blk[1],13) * KeyData[31];
  521.   l:= s_box[m and $1FF]; r:= LRot32(r,5);
  522.   t:= r and $1f; m:= LRot32(m,t);
  523.   l:= l xor r; r:= LRot32(r,5); l:= l xor r;
  524.   t:= r and $1f; l:= LRot32(l,t);
  525.   blk[0]:= blk[0] - l;
  526.   blk[3]:= blk[3] - m;
  527.   blk[2]:= blk[2] xor r;
  528.   blk[0]:= RRot32(blk[0],13);
  529.   m:= blk[0] + KeyData[28];
  530.   r:= LRot32(blk[0],13) * KeyData[29];
  531.   l:= s_box[m and $1FF]; r:= LRot32(r,5);
  532.   t:= r and $1f; m:= LRot32(m,t);
  533.   l:= l xor r; r:= LRot32(r,5); l:= l xor r;
  534.   t:= r and $1f; l:= LRot32(l,t);
  535.   blk[3]:= blk[3] - l;
  536.   blk[2]:= blk[2] - m;
  537.   blk[1]:= blk[1] xor r;
  538.   blk[3]:= RRot32(blk[3],13);
  539.   m:= blk[3] + KeyData[26];
  540.   r:= LRot32(blk[3],13) * KeyData[27];
  541.   l:= s_box[m and $1FF]; r:= LRot32(r,5);
  542.   t:= r and $1f; m:= LRot32(m,t);
  543.   l:= l xor r; r:= LRot32(r,5); l:= l xor r;
  544.   t:= r and $1f; l:= LRot32(l,t);
  545.   blk[2]:= blk[2] - l;
  546.   blk[1]:= blk[1] - m;
  547.   blk[0]:= blk[0] xor r;
  548.   blk[2]:= RRot32(blk[2],13);
  549.   m:= blk[2] + KeyData[24];
  550.   r:= LRot32(blk[2],13) * KeyData[25];
  551.   l:= s_box[m and $1FF]; r:= LRot32(r,5);
  552.   t:= r and $1f; m:= LRot32(m,t);
  553.   l:= l xor r; r:= LRot32(r,5); l:= l xor r;
  554.   t:= r and $1f; l:= LRot32(l,t);
  555.   blk[1]:= blk[1] - l;
  556.   blk[0]:= blk[0] - m;
  557.   blk[3]:= blk[3] xor r;
  558.   blk[1]:= RRot32(blk[1],13);
  559.   m:= blk[1] + KeyData[22];
  560.   r:= LRot32(blk[1],13) * KeyData[23];
  561.   l:= s_box[m and $1FF]; r:= LRot32(r,5);
  562.   t:= r and $1f; m:= LRot32(m,t);
  563.   l:= l xor r; r:= LRot32(r,5); l:= l xor r;
  564.   t:= r and $1f; l:= LRot32(l,t);
  565.   blk[0]:= blk[0] - l;
  566.   blk[3]:= blk[3] - m;
  567.   blk[2]:= blk[2] xor r;
  568.   blk[0]:= RRot32(blk[0],13);
  569.   m:= blk[0] + KeyData[20];
  570.   r:= LRot32(blk[0],13) * KeyData[21];
  571.   l:= s_box[m and $1FF]; r:= LRot32(r,5);
  572.   t:= r and $1f; m:= LRot32(m,t);
  573.   l:= l xor r; r:= LRot32(r,5); l:= l xor r;
  574.   t:= r and $1f; l:= LRot32(l,t);
  575.   blk[3]:= blk[3] - l;
  576.   blk[2]:= blk[2] - m;
  577.   blk[1]:= blk[1] xor r;
  578.   blk[3]:= RRot32(blk[3],13);
  579.   m:= blk[3] + KeyData[18];
  580.   r:= LRot32(blk[3],13) * KeyData[19];
  581.   l:= s_box[m and $1FF]; r:= LRot32(r,5);
  582.   t:= r and $1f; m:= LRot32(m,t);
  583.   l:= l xor r; r:= LRot32(r,5); l:= l xor r;
  584.   t:= r and $1f; l:= LRot32(l,t);
  585.   blk[0]:= blk[0] - l;
  586.   blk[1]:= blk[1] - m;
  587.   blk[2]:= blk[2] xor r;
  588.   blk[2]:= RRot32(blk[2],13);
  589.   m:= blk[2] + KeyData[16];
  590.   r:= LRot32(blk[2],13) * KeyData[17];
  591.   l:= s_box[m and $1FF]; r:= LRot32(r,5);
  592.   t:= r and $1f; m:= LRot32(m,t);
  593.   l:= l xor r; r:= LRot32(r,5); l:= l xor r;
  594.   t:= r and $1f; l:= LRot32(l,t);
  595.   blk[3]:= blk[3] - l;
  596.   blk[0]:= blk[0] - m;
  597.   blk[1]:= blk[1] xor r;
  598.   blk[1]:= RRot32(blk[1],13);
  599.   m:= blk[1] + KeyData[14];
  600.   r:= LRot32(blk[1],13) * KeyData[15];
  601.   l:= s_box[m and $1FF]; r:= LRot32(r,5);
  602.   t:= r and $1f; m:= LRot32(m,t);
  603.   l:= l xor r; r:= LRot32(r,5); l:= l xor r;
  604.   t:= r and $1f; l:= LRot32(l,t);
  605.   blk[2]:= blk[2] - l;
  606.   blk[3]:= blk[3] - m;
  607.   blk[0]:= blk[0] xor r;
  608.   blk[0]:= RRot32(blk[0],13);
  609.   m:= blk[0] + KeyData[12];
  610.   r:= LRot32(blk[0],13) * KeyData[13];
  611.   l:= s_box[m and $1FF]; r:= LRot32(r,5);
  612.   t:= r and $1f; m:= LRot32(m,t);
  613.   l:= l xor r; r:= LRot32(r,5); l:= l xor r;
  614.   t:= r and $1f; l:= LRot32(l,t);
  615.   blk[1]:= blk[1] - l;
  616.   blk[2]:= blk[2] - m;
  617.   blk[3]:= blk[3] xor r;
  618.   blk[3]:= RRot32(blk[3],13);
  619.   m:= blk[3] + KeyData[10];
  620.   r:= LRot32(blk[3],13) * KeyData[11];
  621.   l:= s_box[m and $1FF]; r:= LRot32(r,5);
  622.   t:= r and $1f; m:= LRot32(m,t);
  623.   l:= l xor r; r:= LRot32(r,5); l:= l xor r;
  624.   t:= r and $1f; l:= LRot32(l,t);
  625.   blk[0]:= blk[0] - l;
  626.   blk[1]:= blk[1] - m;
  627.   blk[2]:= blk[2] xor r;
  628.   blk[2]:= RRot32(blk[2],13);
  629.   m:= blk[2] + KeyData[8];
  630.   r:= LRot32(blk[2],13) * KeyData[9];
  631.   l:= s_box[m and $1FF]; r:= LRot32(r,5);
  632.   t:= r and $1f; m:= LRot32(m,t);
  633.   l:= l xor r; r:= LRot32(r,5); l:= l xor r;
  634.   t:= r and $1f; l:= LRot32(l,t);
  635.   blk[3]:= blk[3] - l;
  636.   blk[0]:= blk[0] - m;
  637.   blk[1]:= blk[1] xor r;
  638.   blk[1]:= RRot32(blk[1],13);
  639.   m:= blk[1] + KeyData[6];
  640.   r:= LRot32(blk[1],13) * KeyData[7];
  641.   l:= s_box[m and $1FF]; r:= LRot32(r,5);
  642.   t:= r and $1f; m:= LRot32(m,t);
  643.   l:= l xor r; r:= LRot32(r,5); l:= l xor r;
  644.   t:= r and $1f; l:= LRot32(l,t);
  645.   blk[2]:= blk[2] - l;
  646.   blk[3]:= blk[3] - m;
  647.   blk[0]:= blk[0] xor r;
  648.   blk[0]:= RRot32(blk[0],13);
  649.   m:= blk[0] + KeyData[4];
  650.   r:= LRot32(blk[0],13) * KeyData[5];
  651.   l:= s_box[m and $1FF]; r:= LRot32(r,5);
  652.   t:= r and $1f; m:= LRot32(m,t);
  653.   l:= l xor r; r:= LRot32(r,5); l:= l xor r;
  654.   t:= r and $1f; l:= LRot32(l,t);
  655.   blk[1]:= blk[1] - l;
  656.   blk[2]:= blk[2] - m;
  657.   blk[3]:= blk[3] xor r;
  658.   blk[3]:= LRot32(blk[3], 24);
  659.   blk[2]:= blk[2] xor s_box[((blk[3] shr 24) and $FF) + 256];
  660.   blk[1]:= blk[1]  -  s_box[ (blk[3] shr 16) and $FF];
  661.   blk[0]:= blk[0]  -  s_box[((blk[3] shr  8) and $FF) + 256];
  662.   blk[0]:= blk[0] xor s_box[  blk[3]         and $FF];
  663.   blk[2]:= LRot32(blk[2], 24);
  664.   blk[1]:= blk[1] xor s_box[((blk[2] shr 24) and $FF) + 256];
  665.   blk[0]:= blk[0]  -  s_box[ (blk[2] shr 16) and $FF];
  666.   blk[3]:= blk[3]  -  s_box[((blk[2] shr  8) and $FF) + 256];
  667.   blk[3]:= blk[3] xor s_box[  blk[2]         and $FF];
  668.   blk[1]:= blk[1] - blk[2]; blk[1]:= LRot32(blk[1], 24);
  669.   blk[0]:= blk[0] xor s_box[((blk[1] shr 24) and $FF) + 256];
  670.   blk[3]:= blk[3]  -  s_box[ (blk[1] shr 16) and $FF];
  671.   blk[2]:= blk[2]  -  s_box[((blk[1] shr  8) and $FF) + 256];
  672.   blk[2]:= blk[2] xor s_box[  blk[1]         and $FF];
  673.   blk[0]:= blk[0] - blk[3]; blk[0]:= LRot32(blk[0], 24);
  674.   blk[3]:= blk[3] xor s_box[((blk[0] shr 24) and $FF) + 256];
  675.   blk[2]:= blk[2]  -  s_box[ (blk[0] shr 16) and $FF];
  676.   blk[1]:= blk[1]  -  s_box[((blk[0] shr  8) and $FF) + 256];
  677.   blk[1]:= blk[1] xor s_box[  blk[0]         and $FF];
  678.   blk[3]:= LRot32(blk[3], 24);
  679.   blk[2]:= blk[2] xor s_box[((blk[3] shr 24) and $FF) + 256];
  680.   blk[1]:= blk[1]  -  s_box[ (blk[3] shr 16) and $FF];
  681.   blk[0]:= blk[0]  -  s_box[((blk[3] shr  8) and $FF) + 256];
  682.   blk[0]:= blk[0] xor s_box[  blk[3]         and $FF];
  683.   blk[2]:= LRot32(blk[2], 24);
  684.   blk[1]:= blk[1] xor s_box[((blk[2] shr 24) and $FF) + 256];
  685.   blk[0]:= blk[0]  -  s_box[ (blk[2] shr 16) and $FF];
  686.   blk[3]:= blk[3]  -  s_box[((blk[2] shr  8) and $FF) + 256];
  687.   blk[3]:= blk[3] xor s_box[  blk[2]         and $FF];
  688.   blk[1]:= blk[1] - blk[2]; blk[1]:= LRot32(blk[1], 24);
  689.   blk[0]:= blk[0] xor s_box[((blk[1] shr 24) and $FF) + 256];
  690.   blk[3]:= blk[3]  -  s_box[ (blk[1] shr 16) and $FF];
  691.   blk[2]:= blk[2]  -  s_box[((blk[1] shr  8) and $FF) + 256];
  692.   blk[2]:= blk[2] xor s_box[  blk[1]         and $FF];
  693.   blk[0]:= blk[0] - blk[3]; blk[0]:= LRot32(blk[0], 24);
  694.   blk[3]:= blk[3] xor s_box[((blk[0] shr 24) and $FF) + 256];
  695.   blk[2]:= blk[2]  -  s_box[ (blk[0] shr 16) and $FF];
  696.   blk[1]:= blk[1]  -  s_box[((blk[0] shr  8) and $FF) + 256];
  697.   blk[1]:= blk[1] xor s_box[  blk[0]         and $FF];
  698.   blk[0]:= blk[0] - KeyData[0]; blk[1]:= blk[1] - KeyData[1];
  699.   blk[2]:= blk[2] - KeyData[2]; blk[3]:= blk[3] - KeyData[3];
  700.  
  701.   PDWord(@OutData)^:= Blk[0];
  702.   PDWord(longword(@OutData)+4)^:= Blk[1];
  703.   PDWord(longword(@OutData)+8)^:= Blk[2];
  704.   PDWord(longword(@OutData)+12)^:= Blk[3];
  705. end;
  706.  
  707. end.
  708.