Skip to content

Commit a9226c7

Browse files
author
Markus Humm
committed
Added missing class name to optional method
The TDECCipherModes.DecodeCTS3 method lacked the class name in the implementation.
1 parent 9366980 commit a9226c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/DECCipherModes.pas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1244,7 +1244,7 @@ procedure TDECCipherModes.DecodeCTSx(Source, Dest: PUInt8Array; Size: Integer);
12441244
end;
12451245

12461246
{$IFDEF DEC3_CMCTS}
1247-
procedure DecodeCTS3(Source, Dest: PUInt8Array; Size: Integer);
1247+
procedure TDECCipherModes.DecodeCTS3(Source, Dest: PUInt8Array; Size: Integer);
12481248
var
12491249
I: Integer;
12501250
F, B, T: PUInt8Array;

0 commit comments

Comments
 (0)