{******************************************************************************} {* DCPcrypt v2.0 written by David Barton (crypto@cityinthesky.co.uk) **********} {******************************************************************************} {* A binary compatible implementation of RC6 **********************************} {******************************************************************************} {* Copyright (c) 1999-2002 David Barton *} {* Permission is hereby granted, free of charge, to any person obtaining a *} {* copy of this software and associated documentation files (the "Software"), *} {* to deal in the Software without restriction, including without limitation *} {* the rights to use, copy, modify, merge, publish, distribute, sublicense, *} {* and/or sell copies of the Software, and to permit persons to whom the *} {* Software is furnished to do so, subject to the following conditions: *} {* *} {* The above copyright notice and this permission notice shall be included in *} {* all copies or substantial portions of the Software. *} {* *} {* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR *} {* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, *} {* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL *} {* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER *} {* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING *} {* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER *} {* DEALINGS IN THE SOFTWARE. *} {******************************************************************************} unit DCPrc6; {$MODE Delphi} interface uses Classes, Sysutils, DCPcrypt2, DCPconst, DCPblockciphers; const NUMROUNDS= 20; { number of rounds must be between 16-24 } type TDCP_rc6= class(TDCP_blockcipher128) protected KeyData: array[0..((NUMROUNDS*2)+3)] of DWord; procedure InitKey(const Key; Size: longword); override; public class function GetId: integer; override; class function GetAlgorithm: string; override; class function GetMaxKeySize: integer; override; class function SelfTest: boolean; override; procedure Burn; override; procedure EncryptECB(const InData; var OutData); override; procedure DecryptECB(const InData; var OutData); override; end; {******************************************************************************} {******************************************************************************} implementation {$R-}{$Q-} const sBox: array[0..51] of DWord= ( $B7E15163,$5618CB1C,$F45044D5,$9287BE8E,$30BF3847,$CEF6B200, $6D2E2BB9,$0B65A572,$A99D1F2B,$47D498E4,$E60C129D,$84438C56, $227B060F,$C0B27FC8,$5EE9F981,$FD21733A,$9B58ECF3,$399066AC, $D7C7E065,$75FF5A1E,$1436D3D7,$B26E4D90,$50A5C749,$EEDD4102, $8D14BABB,$2B4C3474,$C983AE2D,$67BB27E6,$05F2A19F,$A42A1B58, $42619511,$E0990ECA,$7ED08883,$1D08023C,$BB3F7BF5,$5976F5AE, $F7AE6F67,$95E5E920,$341D62D9,$D254DC92,$708C564B,$0EC3D004, $ACFB49BD,$4B32C376,$E96A3D2F,$87A1B6E8,$25D930A1,$C410AA5A, $62482413,$007F9DCC,$9EB71785,$3CEE913E); function LRot32(X: DWord; c: longword): DWord; begin LRot32:= (X shl c) or (X shr (32 - c)); end; function RRot32(X: DWord; c: longword): DWord; begin RRot32:= (X shr c) or (X shl (32 - c)); end; class function TDCP_rc6.GetID: integer; begin Result:= DCP_rc6; end; class function TDCP_rc6.GetAlgorithm: string; begin Result:= 'RC6'; end; class function TDCP_rc6.GetMaxKeySize: integer; begin Result:= 2048; end; class function TDCP_rc6.SelfTest: boolean; const Key1: array[0..15] of byte= ($01,$23,$45,$67,$89,$ab,$cd,$ef,$01,$12,$23,$34,$45,$56,$67,$78); Plain1: array[0..15] of byte= ($02,$13,$24,$35,$46,$57,$68,$79,$8a,$9b,$ac,$bd,$ce,$df,$e0,$f1); Cipher1: array[0..15] of byte= ($52,$4e,$19,$2f,$47,$15,$c6,$23,$1f,$51,$f6,$36,$7e,$a4,$3f,$18); Key2: array[0..31] of byte= ($01,$23,$45,$67,$89,$ab,$cd,$ef,$01,$12,$23,$34,$45,$56,$67,$78, $89,$9a,$ab,$bc,$cd,$de,$ef,$f0,$10,$32,$54,$76,$98,$ba,$dc,$fe); Plain2: array[0..15] of byte= ($02,$13,$24,$35,$46,$57,$68,$79,$8a,$9b,$ac,$bd,$ce,$df,$e0,$f1); Cipher2: array[0..15] of byte= ($c8,$24,$18,$16,$f0,$d7,$e4,$89,$20,$ad,$16,$a1,$67,$4e,$5d,$48); var Cipher: TDCP_rc6; Data: array[0..15] of byte; begin dcpFillChar(Data, SizeOf(Data), 0); Cipher:= TDCP_rc6.Create(nil); Cipher.Init(Key1,Sizeof(Key1)*8,nil); Cipher.EncryptECB(Plain1,Data); Result:= boolean(CompareMem(@Data,@Cipher1,Sizeof(Data))); Cipher.DecryptECB(Data,Data); Result:= Result and boolean(CompareMem(@Data,@Plain1,Sizeof(Data))); Cipher.Burn; Cipher.Init(Key2,Sizeof(Key2)*8,nil); Cipher.EncryptECB(Plain2,Data); Result:= Result and boolean(CompareMem(@Data,@Cipher2,Sizeof(Data))); Cipher.DecryptECB(Data,Data); Result:= Result and boolean(CompareMem(@Data,@Plain2,Sizeof(Data))); Cipher.Burn; Cipher.Free; end; procedure TDCP_rc6.InitKey(const Key; Size: longword); var xKeyD: array[0..63] of DWord; i, j, k, xKeyLen: longword; A, B: DWord; begin Size:= Size div 8; dcpFillChar(xKeyD,Sizeof(xKeyD),0); Move(Key,xKeyD,Size); xKeyLen:= Size div 4; if (Size mod 4)<> 0 then Inc(xKeyLen); Move(sBox,KeyData,((NUMROUNDS*2)+4)*4); i:= 0; j:= 0; A:= 0; B:= 0; if xKeyLen> ((NUMROUNDS*2)+4) then k:= xKeyLen*3 else k:= ((NUMROUNDS*2)+4)*3; for k:= 1 to k do begin A:= LRot32(KeyData[i]+A+B,3); KeyData[i]:= A; B:= LRot32(xKeyD[j]+A+B,A+B); xKeyD[j]:= B; i:= (i+1) mod ((NUMROUNDS*2)+4); j:= (j+1) mod xKeyLen; end; FillChar(xKeyD,Sizeof(xKeyD),0); end; procedure TDCP_rc6.Burn; begin FillChar(KeyData,Sizeof(KeyData),$FF); inherited Burn; end; procedure TDCP_rc6.EncryptECB(const InData; var OutData); var x0, x1, x2, x3: DWord; u, t: DWord; i: longword; begin if not fInitialized then raise EDCP_blockcipher.Create('Cipher not initialized'); x0:= PDword(@InData)^; x1:= PDword(pointer(@InData)+4)^; x2:= PDword(pointer(@InData)+8)^; x3:= PDword(pointer(@InData)+12)^; x1:= x1 + KeyData[0]; x3:= x3 + KeyData[1]; for i:= 1 to NUMROUNDS do begin t:= Lrot32(x1 * (2*x1 + 1),5); u:= Lrot32(x3 * (2*x3 + 1),5); x0:= Lrot32(x0 xor t,u) + KeyData[2*i]; x2:= Lrot32(x2 xor u,t) + KeyData[2*i+1]; t:= x0; x0:= x1; x1:= x2; x2:= x3; x3:= t; end; x0:= x0 + KeyData[(2*NUMROUNDS)+2]; x2:= x2 + KeyData[(2*NUMROUNDS)+3]; PDword(@OutData)^:= x0; PDword(pointer(@OutData)+4)^:= x1; PDword(pointer(@OutData)+8)^:= x2; PDword(pointer(@OutData)+12)^:= x3; end; procedure TDCP_rc6.DecryptECB(const InData; var OutData); var x0, x1, x2, x3: DWord; u, t: DWord; i: longword; begin if not fInitialized then raise EDCP_blockcipher.Create('Cipher not initialized'); x0:= PDword(@InData)^; x1:= PDword(pointer(@InData)+4)^; x2:= PDword(pointer(@InData)+8)^; x3:= PDword(pointer(@InData)+12)^; x2:= x2 - KeyData[(2*NUMROUNDS)+3]; x0:= x0 - KeyData[(2*NUMROUNDS)+2]; for i:= NUMROUNDS downto 1 do begin t:= x0; x0:= x3; x3:= x2; x2:= x1; x1:= t; u:= Lrot32(x3 * (2*x3 + 1),5); t:= Lrot32(x1 * (2*x1 + 1),5); x2:= Rrot32(x2 - KeyData[2*i+1],t) xor u; x0:= Rrot32(x0 - KeyData[2*i],u) xor t; end; x3:= x3 - KeyData[1]; x1:= x1 - KeyData[0]; PDword(@OutData)^:= x0; PDword(pointer(@OutData)+4)^:= x1; PDword(pointer(@OutData)+8)^:= x2; PDword(pointer(@OutData)+12)^:= x3; end; end.