1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
|
{
This file is part of the Free Component Library (FCL)
Copyright (c) 1999-2000 by Michael Van Canneyt and Florian Klaempfl
See the file COPYING.FPC, included in this distribution,
for details about the copyright.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
**********************************************************************}
{$ifdef fpc}
{$mode objfpc}
{$endif}
Unit idea;
{
IDEA encryption routines for pascal
ported from PGP 2.3
IDEA encryption routines for pascal, ported from PGP 2.3
Copyright (C) for this port 1998 Ingo Korb
Copyright (C) for the stream support 1999 Michael Van Canneyt
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free
Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
}
{$R-,Q-}
{ Not nice but fast... }
INTERFACE
Uses Sysutils,Classes;
CONST
IDEAKEYSIZE = 16;
IDEABLOCKSIZE = 8;
ROUNDS = 8;
KEYLEN = (6*ROUNDS+4);
TYPE
TIDEAKey = ARRAY[0..keylen-1] OF Word;
TIdeaCryptKey = ARRAY[0..7] OF Word;
TIdeaCryptData = ARRAY[0..3] OF Word;
{ For backward compatibility }
IDEAkey = TIDEAkey;
IdeaCryptKey = TIdeaCryptKey;
IdeaCryptData = TIdeaCryptData;
PROCEDURE EnKeyIdea(UserKey: TIdeacryptkey; VAR z: TIDEAKey);
PROCEDURE DeKeyIdea(z: TIDEAKey; VAR dk: TIDEAKey);
PROCEDURE CipherIdea(Input: TIDEACryptData; VAR outdata: TIDEACryptData; z: TIDEAKey);
Type
EIDEAError = Class(EStreamError);
TIDEAStream = Class(TOwnerStream)
Private
FKey : TIDEAKey;
FData : TIDEACryptData;
FBufpos : Byte;
FPos : Longint;
Public
Constructor Create(AKey : TIDEAKey; Dest: TStream);
Property Key : TIDEAKey Read FKey;
end;
TIDEAEncryptStream = Class(TIDEAStream)
public
Destructor Destroy; override;
function Write(const Buffer; Count: Longint): Longint; override;
function Seek(Offset: Longint; Origin: Word): Longint; override;
procedure Flush;
end;
TIDEADeCryptStream = Class(TIDEAStream)
public
function Read(var Buffer; Count: Longint): Longint; override;
function Seek(Offset: Longint; Origin: Word): Longint; override;
end;
Implementation
Const
SNoSeekAllowed = 'Seek not allowed on encryption streams';
PROCEDURE mul(VAR a:Word; b: Word);
VAR p: LongInt;
BEGIN
IF (a <> 0) THEN BEGIN
IF (b <> 0) THEN BEGIN
p := LongInt(a)*b;
b := p;
a := p SHR 16;
IF (b < a) THEN a := b - a + 1
ELSE a := b - a;
END ELSE a := 1 - a;
END ELSE a := 1-b;
END;
FUNCTION inv(x: word): Word;
VAR t0,t1,q,y: Word;
BEGIN
IF x <= 1 THEN BEGIN
inv := x;
exit;
END;
t1 := 65537 DIV x;
y := 65537 MOD x;
IF y = 1 THEN BEGIN
inv := Word(1-t1);
exit;
END;
t0 := 1;
REPEAT
q := x DIV y;
x := x MOD y;
t0 := t0 + q * t1;
IF x = 1 THEN BEGIN
inv := t0;
exit;
END;
q := y DIV x;
y := y MOD x;
t1 := t1 + q*t0;
UNTIL y = 1;
inv := word(1-t1);
END;
PROCEDURE EnKeyIdea(userkey: ideacryptkey; VAR z: ideakey);
VAR zi,i,j: integer;
BEGIN
FOR j := 0 TO 7 DO z[j] := userkey[j];
zi := 0;
i := 0;
FOR j := 8 TO keylen-1 DO BEGIN
Inc(i);
z[zi+i+7] := (z[zi+(i AND 7)] SHL 9) OR (z[zi+((i+1) AND 7)] SHR 7);
zi := zi + (i AND 8);
i := i AND 7;
END;
FOR i := 0 TO 7 DO userkey[i] := 0;
END;
PROCEDURE DeKeyIdea(z: IDEAKey; VAR dk: ideakey);
VAR j: Integer;
t1,t2,t3: Word;
p: IDEAKey;
ip: Integer;
iz: Integer;
BEGIN
iz := 0;
ip := keylen;
FOR j := 0 TO keylen - 1 DO p[j] := 0;
t1 := inv(z[iz]); Inc(iz);
t2 := not(z[iz])+1; Inc(iz);
t3 := not(z[iz])+1; Inc(iz);
Dec(ip); p[ip] := inv(z[iz]); Inc(iz);
Dec(ip); p[ip] := t3;
Dec(ip); p[ip] := t2;
Dec(ip); p[ip] := t1;
FOR j := 1 TO rounds-1 DO BEGIN
t1 := z[iz]; Inc(iz);
Dec(ip); p[ip] := z[iz]; Inc(iz);
Dec(ip); p[ip] := t1;
t1 := inv(z[iz]); Inc(iz);
t2 := Not(z[iz])+1; Inc(iz);
t3 := Not(z[iz])+1; Inc(iz);
Dec(ip); p[ip] := inv(z[iz]); Inc(iz);
Dec(ip); p[ip] := t2;
Dec(ip); p[ip] := t3;
Dec(ip); p[ip] := t1;
END;
t1 := z[iz]; Inc(iz);
Dec(ip); p[ip] := z[iz]; Inc(iz);
Dec(ip); p[ip] := t1;
t1 := inv(z[iz]); Inc(iz);
t2 := Not(z[iz])+1; Inc(iz);
t3 := Not(z[iz])+1; Inc(iz);
Dec(ip); p[ip] := inv(z[iz]);
Dec(ip); p[ip] := t3;
Dec(ip); p[ip] := t2;
Dec(ip); p[ip] := t1;
FOR j := 0 TO KeyLen-1 DO BEGIN
dk[j] := p[j];
p[j] := 0;
END;
FOR j := 0 TO 51 DO z[j] := 0;
END;
PROCEDURE CipherIdea(input: ideacryptdata; VAR outdata: ideacryptdata; z:IDEAkey);
VAR x1, x2, x3, x4, t1, t2: Word;
r: Integer;
zi: Integer;
BEGIN
zi := 0;
x1 := input[0];
x2 := input[1];
x3 := input[2];
x4 := input[3];
FOR r := 1 TO ROUNDS DO BEGIN
mul(x1,z[zi]); Inc(zi);
x2 := x2 + z[zi]; Inc(zi);
x3 := x3 + z[zi]; Inc(zi);
mul(x4, z[zi]); Inc(zi);
t2 := x1 XOR x3;
mul(t2, z[zi]); Inc(zi);
t1 := t2 + (x2 XOR x4);
mul(t1, z[zi]); Inc(zi);
t2 := t1+t2;
x1 := x1 XOR t1;
x4 := x4 XOR t2;
t2 := t2 XOR x2;
x2 := x3 XOR t1;
x3 := t2;
END;
mul(x1, z[zi]); Inc(zi);
outdata[0] := x1;
outdata[1] := x3 + z[zi]; Inc(zi);
outdata[2] := x2 + z[zi]; Inc(zi);
Mul(x4,z[zi]);
outdata[3] := x4;
FOR r := 0 TO 3 DO input[r] := 0;
FOR r := 0 TO 51 DO z[r] := 0;
END;
{ ---------------------------------------------------------------------
TIDEAStream
---------------------------------------------------------------------}
Constructor TIDEAStream.Create(AKey : ideakey; Dest: TStream);
begin
inherited Create(Dest);
FKey:=AKey;
FBufPos:=0;
Fpos:=0;
end;
{ ---------------------------------------------------------------------
TIDEAEncryptStream
---------------------------------------------------------------------}
Destructor TIDEAEncryptStream.Destroy;
begin
Flush;
Inherited Destroy;
end;
Procedure TIDEAEncryptStream.Flush;
Var
OutData : IdeaCryptData;
begin
If FBufPos>0 then
begin
// Fill with nulls
FillChar(PChar(@FData)[FBufPos],SizeOf(FData)-FBufPos,#0);
CipherIdea(Fdata,OutData,FKey);
Source.Write(OutData,SizeOf(OutData));
// fixed: Manual flush and then free will now work
FBufPos := 0;
end;
end;
function TIDEAEncryptStream.Write(const Buffer; Count: Longint): Longint;
Var
mvsize : Longint;
OutData : IDEAcryptdata;
begin
Result:=0;
While Count>0 do
begin
MVsize:=Count;
If Mvsize>SizeOf(Fdata)-FBufPos then
mvsize:=SizeOf(FData)-FBufPos;
Move(PChar(@Buffer)[Result],PChar(@FData)[FBufPos],MVSize);
If FBufPos+mvSize=Sizeof(FData) then
begin
// Empty buffer.
CipherIdea(Fdata,OutData,FKey);
// this will raise an exception if needed.
Source.Writebuffer(OutData,SizeOf(OutData));
FBufPos:=0;
end
else
inc(FBufPos,mvsize);
Dec(Count,MvSize);
Inc(Result,mvSize);
end;
Inc(FPos,Result);
end;
function TIDEAEncryptStream.Seek(Offset: Longint; Origin: Word): Longint;
begin
if (Offset = 0) and (Origin = soFromCurrent) then
Result := FPos
else
Raise EIDEAError.Create(SNoSeekAllowed);
end;
{ ---------------------------------------------------------------------
TIDEADecryptStream
---------------------------------------------------------------------}
function TIDEADeCryptStream.Read(var Buffer; Count: Longint): Longint;
Var
mvsize : Longint;
InData : IDEAcryptdata;
begin
Result:=0;
While Count>0 do
begin
// Empty existing buffer.
If (FBufPos>0) then
begin
mvSize:=FBufPos;
If MvSize>count then
mvsize:=Count;
Move(PChar(@FData)[0],PChar(@Buffer)[Result],MVSize);
If ((Sizeof(FData)-MvSize)>0) then
Move(PChar(@FData)[mvSize],PChar(@FData)[0],Sizeof(FData)-MvSize);
Dec(Count,mvsize);
Inc(Result,mvsize);
FBufPos:=FBufPos-MvSize;
end;
// Fill buffer again if needed.
If (Count>0) then
begin
mvsize:=Source.Read(InData,SizeOf(InData));
If mvsize>0 then
begin
If MvSize<SizeOf(InData) Then
// Fill with nulls
FillChar(PChar(@InData)[mvsize],SizeOf(InData)-mvsize,#0);
CipherIdea(InData,FData,FKey);
FBufPos:=SizeOf(FData);
end
else
Count:=0; // No more data available from stream; st
end;
end;
Inc(FPos,Result);
end;
function TIDEADeCryptStream.Seek(Offset: Longint; Origin: Word): Longint;
Var Buffer : Array[0..1023] of byte;
i : longint;
begin
// Fake seek if possible by reading and discarding bytes.
If ((Offset>=0) and (Origin = soFromCurrent)) or
((Offset>FPos) and (Origin = soFromBeginning)) then
begin
For I:=1 to (Offset div SizeOf(Buffer)) do
ReadBuffer(Buffer,SizeOf(Buffer));
ReadBuffer(Buffer,Offset mod SizeOf(Buffer));
Result:=FPos;
end
else
Raise EIDEAError.Create(SNoSeekAllowed);
end;
END.
|