Browse Source

minor cleanup

Ugochukwu Mmaduekwe 6 years ago
parent
commit
fd9a5db3f4

+ 1 - 0
CryptoLib/src/Crypto/Modes/ClpBlockCipherModes.pas

@@ -627,6 +627,7 @@ type
   TCtsBlockCipher = class sealed(TBufferedBlockCipher, ICtsBlockCipher)
 
   strict private
+  var
     FblockSize: Int32;
 
   public

+ 0 - 13
CryptoLib/src/Interfaces/ClpIBlockCipherModes.pas

@@ -91,19 +91,6 @@ type
 
     ['{4D02FD0B-47D6-4914-B31F-5869FF364558}']
 
-    function GetOutputSize(inputLen: Int32): Int32;
-
-    function GetUpdateOutputSize(inputLen: Int32): Int32;
-
-    function ProcessByte(input: Byte; const output: TCryptoLibByteArray;
-      outOff: Int32): Int32;
-
-    function ProcessBytes(const input: TCryptoLibByteArray;
-      inOff, Length: Int32; const output: TCryptoLibByteArray;
-      outOff: Int32): Int32;
-
-    function DoFinal(const output: TCryptoLibByteArray; outOff: Int32): Int32;
-
   end;
 
 implementation