{*****************************************************************************
The DEC team (see file NOTICE.txt) licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. A copy of this licence is found in the root directory
of this project in the file LICENCE.txt or alternatively at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
*****************************************************************************}
unit DECCipherBase;
interface
{$INCLUDE DECOptions.inc}
uses
{$IFDEF FPC}
SysUtils, Classes,
{$ELSE}
System.SysUtils, System.Classes,
{$ENDIF}
DECBaseClass, DECFormatBase;
type
///
/// Possible kindes of cipher algorithms
///
/// ctNull = special "do nothing cipher"
///
///
/// ctStream = cipher operating on a stream of bytes instead of blocks
///
///
/// ctBlock = cipher operating on blocks of bytes with a fixed size
///
///
/// ctSymmetric = cipher where the same key encrypts and decrypts
///
///
/// ctAsymetric = cipher where encryption and decryption requires
/// different keys
///
///
TCipherTypes = (ctNull, ctStream, ctBlock, ctSymmetric, ctAsymmetric);
///
/// Actual kind of cipher algorithm
///
TCipherType = set of TCipherTypes;
///
/// Padding used to fill the last incomplete block of a block encryption
/// algorithm. To be expanded in a future version
///
TBlockFillMode = (fmByte);
///
/// Record containing meta data about a certain cipher
///
TCipherContext = packed record
///
/// maximal key size in bytes
///
KeySize : Integer;
///
/// mininmal block size in bytes, e.g. 1 = Streamcipher
///
BlockSize : Integer;
///
/// internal buffersize in bytes
///
BufferSize : Integer;
///
/// Size in bytes of the FAdditionalBuffer used by some of the cipher algorithms
///
AdditionalBufferSize : Integer;
///
/// When true the memory a certain internal pointer (FAdditionalBuffer)
/// points to needs to be backuped during key initialization if no init
/// vector is specified and restored at the end of that init method.
/// Same in Done method as well.
///
NeedsAdditionalBufferBackup : Boolean;
///
/// Minimum number of rounds allowed for any block cipher having a rounds
/// property. In all other cases it will be set to 1.
///
MinRounds : UInt16;
///
/// Maximum number of rounds allowed for any block cipher having a rounds
/// property. In all other cases it will be set to 1.
///
MaxRounds : UInt16;
///
/// Specifies the kind of cipher
///
CipherType : TCipherType;
end;
///
/// TCipher.State represents the internal state of processing
///
/// csNew : cipher isn't initialized, .Init() must be called before en/decode
///
///
/// csNew : cipher isn't initialized, .Init() must be called before en/decode
///
///
/// csInitialized : cipher is initialized by .Init(), i.e. Keysetup was processed
///
///
/// csEncode : Encoding was started, and more chunks can be encoded, but not decoded
///
///
/// csDecode : Decoding was started, and more chunks can be decoded, but not encoded
///
///
/// csPadded : trough En/Decoding the messagechunks are padded, no more chunks can
/// be processed, the cipher is blocked
///
///
/// csDone : Processing is finished and Cipher.Done was called. Now new En/Decoding
/// can be started without calling .Init() before. csDone is basically
/// identical to csInitialized, except Cipher.Buffer holds the encrypted
/// last state of Cipher.Feedback, thus Cipher.Buffer can be used as C-MAC.
///
///
TCipherState = (csNew, csInitialized, csEncode, csDecode, csPadded, csDone);
///
/// Set of cipher states, representing the internal state of processing
///
TCipherStates = set of TCipherState;
///
/// This defines how the individual blocks of the data to be processed are
/// linked with each other.
///
/// Modes cmCBCx, cmCTSx, cmCTSxx, cmCFBx, cmOFBx, cmCFSx, cmECBx are working
/// on Blocks of Cipher.BufferSize bytes, when using a Blockcipher that's equal
/// to Cipher.BlockSize.
///
/// Modes cmCFB8, cmOFB8, cmCFS8 work on 8 bit Feedback Shift Registers.
///
/// Modes cmCTSx, cmCFSx, cmCFS8 are proprietary modes developed by Hagen
/// Reddmann. These modes work like cmCBCx, cmCFBx, cmCFB8 but with double
/// XOR'ing of the inputstream into the feedback register.
///
/// Mode cmECBx needs message padding to be a multiple of Cipher.BlockSize and
/// should be used only in 1-byte Streamciphers.
///
/// Modes cmCFB8, cmCFBx, cmOFB8, cmOFBx, cmCFS8 and cmCFSx need no padding.
///
/// Modes cmCTSx, cmCBCx need no external padding, because internally the last
/// truncated block is padded by cmCFS8 or cmCFB8. After padding these Modes
/// cannot be used to process any more data. If needed to process chunks of
/// data then each chunk must be algined to Cipher.BufferSize bytes.
///
/// Mode cmCTS3 is a proprietary mode developed by Frederik Winkelsdorf. It
/// replaces the CFS8 padding of the truncated final block with a CFSx padding.
/// Useful when converting projects that previously used the old DEC v3.0. It
/// has the same restrictions for external padding and chunk processing as
/// cmCTSx has.
///
TCipherMode = (
cmCTSx, // double CBC, with CFS8 padding of truncated final block
cmCBCx, // Cipher Block Chaining, with CFB8 padding of truncated final block
cmCFB8, // 8bit Cipher Feedback mode
cmCFBx, // CFB on Blocksize of Cipher
cmOFB8, // 8bit Output Feedback mode
cmOFBx, // OFB on Blocksize bytes
cmCFS8, // 8Bit CFS, double CFB
cmCFSx, // CFS on Blocksize bytes
cmECBx // Electronic Code Book
{$IFDEF DEC3_CMCTS}
,cmCTS3 // double CBC, with less secure padding of truncated final block
// for DEC 3.0 compatibility only (see DECOptions.inc)
{$ENDIF DEC3_CMCTS}
);
///
/// Each cipher algorithm has to implement a Encode and a Decode method which
/// has the same signature as this type. The CipherFormats get these
/// encode/decode methods passed to do their work.
///
///
/// Contains the data to be encoded or decoded
///
///
/// Contains the data after encoding or decoding
///
///
/// Number of bytes to encode or decode
///
TDECCipherCodeEvent = procedure(const Source; var Dest; DataSize: Integer) of object;
///
/// Class type of the cipher base class
///
TDECCipherClass = class of TDECCipher;
///
/// Base class for all implemented cipher algorithms
///
///
/// When adding new block ciphers do never directly inherit from this class!
/// Inherit from TDECCipherFormats.
///
TDECCipher = class(TDECObject)
strict private
///
/// This is the complete memory block containing FInitializationVector,
/// FFeedback, FBuffer and FAdditionalBuffer
///
FData : PByteArray;
///
/// This is the size of FData in byte
///
FDataSize : Integer;
strict protected
///
/// Padding mode used to concatenate/connect blocks in a block cipher
///
FMode : TCipherMode;
///
/// Mode used for filling up an incomplete last block in a block cipher
///
FFillMode : TBlockFillMode;
///
/// Current processing state
///
FState: TCipherState;
///
/// Size of the internally used processing buffer in byte
///
FBufferSize: Integer;
///
/// At which position of the buffer are we currently operating?
///
FBufferIndex: Integer;
///
/// Some algorithms, mostly the cipher mode ones, need a temporary buffer
/// to work with. Some other methods like Done or Valid cipher need to pass
/// a buffer as parameter as that is ecpected by the called method.
///
FBuffer: PByteArray;
///
/// Initialization vector. When using cipher modes to derive a stream
/// cipher from a block cipher algorithm some data from each encrypted block
/// is fed into the encryption of the next block. For the first block there
/// is no such encrypted data yet, so this initialization vector fills this
/// "gap".
///
FInitializationVector: PByteArray;
///
/// Cipher modes are used to derive a stream cipher from block cipher
/// algorithms. For this something from the last entrypted block (or for
/// the first block from the vector) is used in the encryption of the next
/// block. It may be XORed with the next block cipher text for isntance.
/// That data "going into the next block encryption" is this feedback array
///
FFeedback: PByteArray;
///
/// Size of FAdditionalBuffer in Byte
///
FAdditionalBufferSize: Integer;
///
/// A buffer some of the cipher algorithms need to operate on. It is
/// some part of FBuffer like FInitializationVector and FFeedback as well.
///
FAdditionalBuffer: Pointer;
///
/// If a user does not specify an init vector (IV) during key setup
/// (IV length = 0) the init method generates an IV by encrypting the
/// complete memory reserved for IV. Within this memory block is the memory
/// FAdditionalBuffer points to as well, and for some algorithms this part
/// of the memory may not be altered during initialization so it is
/// backupped to this memory location and restored after the IV got encrypted.
/// In DoDone it needs to be restored as well to prevent any unwanted
/// leftovers which might pose a security issue.
///
FAdditionalBufferBackup: Pointer;
///
/// Checks whether the state machine is in one of the states specified as
/// parameter. If not a EDECCipherException will be raised.
///
///
/// List of states the state machine should be at currently
///
procedure CheckState(States: TCipherStates);
///
/// Initialize the key, based on the key passed in
///
///
/// Encryption/Decryption key to be used
///
///
/// Size of the key passed in bytes.
///
procedure DoInit(const Key; Size: Integer); virtual; abstract;
///
/// This abstract method needs to be overwritten by each concrete encryption
/// algorithm as this is the routine used internally to encrypt a single
/// block of data.
///
///
/// Data to be encrypted
///
///
/// In this memory the encrypted result will be written
///
///
/// Size of source in byte
///
procedure DoEncode(Source, Dest: Pointer; Size: Integer); virtual; abstract;
///
/// This abstract method needs to be overwritten by each concrete encryption
/// algorithm as this is the routine used internally to decrypt a single
/// block of data.
///
///
/// Data to be decrypted
///
///
/// In this memory the decrypted result will be written
///
///
/// Size of source in byte
///
procedure DoDecode(Source, Dest: Pointer; Size: Integer); virtual; abstract;
///
/// Securely fills the processing buffer with zeroes to make stealing data
/// from memory harder.
///
procedure SecureErase; virtual;
///
/// Returns the currently set cipher block mode, means how blocks are
/// linked to each other in order to avoid certain attacks.
///
function GetMode: TCipherMode;
///
/// Sets the cipher mode, means how each block is being linked with his
/// predecessor to avoid certain attacks
///
procedure SetMode(Value: TCipherMode);
public
///
/// List of registered DEC classes. Key is the Identity of the class.
///
class var ClassList : TDECClassList;
///
/// Tries to find a class type by its name
///
///
/// Name to look for in the list
///
///
/// Returns the class type if found. if it could not be found a
/// EDECClassNotRegisteredException will be thrown
///
class function ClassByName(const Name: string): TDECCipherClass;
///
/// Tries to find a class type by its numeric identity DEC assigned to it.
/// Useful for file headers, so they can easily encode numerically which
/// cipher class was being used.
///
///
/// Identity to look for
///
///
/// Returns the class type of the class with the specified identity value
/// or throws an EDECClassNotRegisteredException exception if no class
/// with the given identity has been found
///
class function ClassByIdentity(Identity: Int64): TDECCipherClass;
///
/// Initializes the instance. Relies in parts on information given by the
/// Context class function.
///
constructor Create; override;
///
/// Frees internal structures and where necessary does so in a save way so
/// that data in those structures cannot be "stolen".
///
destructor Destroy; override;
///
/// Provides meta data about the cipher algorithm used like key size.
/// To be overidden in the concrete cipher classes.
///
///
/// C++ does not support virtual static functions thus the base cannot be
/// marked 'abstract'. Calling this version of the method will lead to an
/// EDECAbstractError
///
class function Context: TCipherContext; virtual;
///
/// Initializes the cipher with the necessary encryption/decryption key
///
///
/// Encryption/decryption key. Recommended/required key length is dependant
/// on the concrete algorithm.
///
///
/// Size of the key in bytes
///
///
/// Initialization vector. This contains the values the first block of
/// data to be processed is linked with. This is being done the same way
/// as the 2nd block of the data to be processed will be linked with the
/// first block and so on and this is dependant on the cypher mode set via
/// Mode property
///
///
/// Size of the initialization vector in bytes
///
///
/// optional parameter defining the value with which the last block will
/// be filled up if the size of the data to be processed cannot be divided
/// by block size without reminder. Means: if the last block is not
/// completely filled with data.
///
procedure Init(const Key; Size: Integer; const IVector; IVectorSize: Integer; IFiller: Byte = $FF); overload;
///
/// Initializes the cipher with the necessary encryption/decryption key
///
///
/// Encryption/decryption key. Recommended/required key length is dependant
/// on the concrete algorithm.
///
///
/// Initialization vector. This contains the values the first block of
/// data to be processed is linked with. This is being done the same way
/// as the 2nd block of the data to be processed will be linked with the
/// first block and so on and this is dependant on the cypher mode set via
/// Mode property
///
///
/// optional parameter defining the value with which the last block will
/// be filled up if the size of the data to be processed cannot be divided
/// by block size without reminder. Means: if the last block is not
/// completely filled with data.
///
procedure Init(const Key: TBytes; const IVector: TBytes; IFiller: Byte = $FF); overload;
///
/// Initializes the cipher with the necessary encryption/decryption key
///
///
/// Encryption/decryption key. Recommended/required key length is dependant
/// on the concrete algorithm.
///
///
/// Initialization vector. This contains the values the first block of
/// data to be processed is linked with. This is being done the same way
/// as the 2nd block of the data to be processed will be linked with the
/// first block and so on and this is dependant on the cypher mode set via
/// Mode property
///
///
/// optional parameter defining the value with which the last block will
/// be filled up if the size of the data to be processed cannot be divided
/// by block size without reminder. Means: if the last block is not
/// completely filled with data.
///
procedure Init(const Key: RawByteString; const IVector: RawByteString = ''; IFiller: Byte = $FF); overload;
{$IFDEF ANSISTRINGSUPPORTED}
///
/// Initializes the cipher with the necessary encryption/decryption key.
/// Only for use with the classic desktop compilers.
///
///
/// Encryption/decryption key. Recommended/required key length is dependant
/// on the concrete algorithm.
///
///
/// Initialization vector. This contains the values the first block of
/// data to be processed is linked with. This is being done the same way
/// as the 2nd block of the data to be processed will be linked with the
/// first block and so on and this is dependant on the cypher mode set via
/// Mode property
///
///
/// optional parameter defining the value with which the last block will
/// be filled up if the size of the data to be processed cannot be divided
/// by block size without reminder. Means: if the last block is not
/// completely filled with data.
///
procedure Init(const Key: AnsiString; const IVector: AnsiString = ''; IFiller: Byte = $FF); overload;
{$ENDIF}
{$IFNDEF NEXTGEN}
///
/// Initializes the cipher with the necessary encryption/decryption key.
/// Only for use with the classic desktop compilers.
///
///
/// Encryption/decryption key. Recommended/required key length is dependant
/// on the concrete algorithm.
///
///
/// Initialization vector. This contains the values the first block of
/// data to be processed is linked with. This is being done the same way
/// as the 2nd block of the data to be processed will be linked with the
/// first block and so on and this is dependant on the cypher mode set via
/// Mode property
///
///
/// optional parameter defining the value with which the last block will
/// be filled up if the size of the data to be processed cannot be divided
/// by block size without reminder. Means: if the last block is not
/// completely filled with data.
///
procedure Init(const Key: WideString; const IVector: WideString = ''; IFiller: Byte = $FF); overload;
{$ENDIF}
///
{ TODO : Description needs to be revised }
/// Properly finishes the cryptographic operation. It needs to be called
/// at the end of encrypting or decrypting data, otherwise the last block
/// or last byte of the data will not be properly processed.
///
procedure Done;
// Encoding / Decoding Routines
// Do not add further methods of that kind here! If needed add them to
// TDECFormattedCipher in DECCipherFormats or inherit from that one.
///
/// Encrypts the contents of a RawByteString. This method is deprecated
/// and should be replaced by a variant expecting TBytes as source in
/// order to not support mistreating strings as binary buffers.
///
///
/// This is the direct successor of the EncodeBinary method from DEC 5.2.
/// When block chaining mode ECBx is used
/// (not recommended!), the size of the data passed via this parameter
/// needs to be a multiple of the block size of the algorithm used,
/// otherwise a EDECCipherException exception will be raised!
///
///
/// The data to be encrypted
///
///
/// Optional parameter. Here a formatting method can be passed. The
/// resulting encrypted data will be formatted with this function, if one
/// has been passed. Examples are hex or base 64 formatting.
///
///
/// Encrypted data. Init must have been called previously.
///
function EncodeRawByteString(const Source: RawByteString;
Format: TDECFormatClass = nil): RawByteString; deprecated; // please use EncodeBytes functions now
///
/// Decrypts the contents of a RawByteString. This method is deprecated
/// and should be replaced by a variant expecting TBytes as source in
/// order to not support mistreating strings as binary buffers.
///
///
/// This is the direct successor of the DecodeBinary method from DEC 5.2
/// When block chaining mode ECBx is used
/// (not recommended!), the size of the data passed via this parameter
/// needs to be a multiple of the block size of the algorithm used,
/// otherwise a EDECCipherException exception will be raised!
///
///
/// The data to be decrypted
///
///
/// Optional parameter. Here a formatting method can be passed. The
/// data to be decrypted will be formatted with this function, if one
/// has been passed. Examples are hex or base 64 formatting.
/// This is used for removing a formatting applied by the EncodeRawByteString
/// method.
///
///
/// Decrypted data. Init must have been called previously.
///
function DecodeRawByteString(const Source: RawByteString;
Format: TDECFormatClass = nil): RawByteString; deprecated; // please use DecodeBytes functions now
///
/// Encrypts the contents of a ByteArray.
///
///
/// The data to be encrypted. When block chaining mode ECBx is used
/// (not recommended!), the size of the data passed via this parameter
/// needs to be a multiple of the block size of the algorithm used,
/// otherwise a EDECCipherException exception will be raised!
///
///
/// Optional parameter. Here a formatting method can be passed. The
/// resulting encrypted data will be formatted with this function, if one
/// has been passed. Examples are hex or base 64 formatting.
///
///
/// Encrypted data. Init must have been called previously.
///
function EncodeBytes(const Source: TBytes; Format: TDECFormatClass = nil): TBytes;
///
/// Decrypts the contents of a ByteArray.
///
///
/// The data to be decrypted. When block chaining mode ECBx is used
/// (not recommended!), the size of the data passed via this parameter
/// needs to be a multiple of the block size of the algorithm used,
/// otherwise a EDECCipherException exception will be raised!
///
///
/// Optional parameter. Here a formatting method can be passed. The
/// data to be decrypted will be formatted with this function, if one
/// has been passed. Examples are hex or base 64 formatting.
/// This is used for removing a formatting applied by the EncodeRawByteString
/// method.
///
///
/// Decrypted data. Init must have been called previously.
///
function DecodeBytes(const Source: TBytes; Format: TDECFormatClass): TBytes;
// CalcMACBytes deferred since the current implementation would neither be
// performant (that would require another TFormatBase.Encode variant from
// pointer to TBytes and that would require a new method name as overloads
// may not differ in return values only and it would require a lot of unit
// tests to get implemented. Deferred in particular also due to not yet
// really understanding the purpose of CalcMAC
// function CalcMACByte(Format: TDECFormatClass = nil): TBytes; overload;
// Deprecated directive commented out, as replacement CalcMACByte has not
// been implemented yet, see remark above. Use case for CalcMAC is not clear
// yet either.
function CalcMAC(Format: TDECFormatClass = nil): RawByteString; overload; //deprecated; // please use the TBytes based overload;
// properties
///
/// Provides the size of the initialization vector in bytes.
///
property InitVectorSize: Integer
read FBufferSize;
///
/// Provides access to the contents of the initialization vector
///
property InitVector: PByteArray
read FInitializationVector;
///
/// Cipher modes are used to derive a stream cipher from block cipher
/// algorithms. For this something from the last entrypted block (or for
/// the first block from the vector) is used in the encryption of the next
/// block. It may be XORed with the next block cipher text for instance.
/// That data "going into the next block encryption" is stored in this
/// feedback array. The size usually depends on the block size of the
/// cipher algorithm.
///
property Feedback: PByteArray
read FFeedback;
///
/// Allows to query the current internal processing state
///
property State: TCipherState
read FState;
///
/// Mode used for padding data to be encrypted/decrypted. See TCipherMode.
///
property Mode: TCipherMode
read GetMode
write SetMode;
///
/// Mode used for filling up an incomplete last block in a block cipher
///
property FillMode: TBlockFillMode
read FFillMode
write FFillMode;
end;
///
/// Returns the passed cipher class type if it is not nil. Otherwise the
/// class type class set per SetDefaultCipherClass is being returned. If using
/// the DECCiphers unit that one registers TCipher_Null in the initialization
///
///
/// Class type of a cipher class like TCipher_Blowfish or nil, if no
/// encryption/decryption is desired.
///
///
/// Passed class type or defined default cipher class type, depending on
/// CipherClass parameter value.
///
function ValidCipher(CipherClass: TDECCipherClass = nil): TDECCipherClass;
///
/// Defines which cipher class to return by ValidCipher if passing nil to that
///
///
/// Class type of a cipher class to return by ValidCipher if passing nil to
/// that one. This parameter should not be nil!
///
procedure SetDefaultCipherClass(CipherClass: TDECCipherClass);
implementation
uses
{$IFDEF FPC}
TypInfo,
{$ELSE}
System.TypInfo,
{$ENDIF}
DECUtil;
{$IFOPT Q+}{$DEFINE RESTORE_OVERFLOWCHECKS}{$Q-}{$ENDIF}
{$IFOPT R+}{$DEFINE RESTORE_RANGECHECKS}{$R-}{$ENDIF}
resourcestring
sAlreadyPadded = 'Cipher has already been padded, cannot process message';
sInvalidState = 'Cipher is not in valid state for this action';
sNoKeyMaterialGiven = 'No Keymaterial given (Security Issue)';
sKeyMaterialTooLarge = 'Keymaterial is too large for use (Security Issue)';
sIVMaterialTooLarge = 'Initvector is too large for use (Security Issue)';
sInvalidMACMode = 'Invalid Cipher mode to compute MAC';
sCipherNoDefault = 'No default cipher has been registered';
var
///
/// Cipher class returned by ValidCipher if nil is passed as parameter to it
///
FDefaultCipherClass: TDECCipherClass = nil;
function ValidCipher(CipherClass: TDECCipherClass): TDECCipherClass;
begin
if CipherClass <> nil then
Result := CipherClass
else
Result := FDefaultCipherClass;
if Result = nil then
raise EDECCipherException.CreateRes(@sCipherNoDefault);
end;
procedure SetDefaultCipherClass(CipherClass: TDECCipherClass);
begin
Assert(Assigned(CipherClass), 'Do not set a nil default cipher class!');
FDefaultCipherClass := CipherClass;
end;
{ TDECCipher }
constructor TDECCipher.Create;
var
MustAdditionalBufferSave: Boolean;
begin
inherited Create;
FBufferSize := Context.BufferSize;
FAdditionalBufferSize := Context.AdditionalBufferSize;
MustAdditionalBufferSave := Context.NeedsAdditionalBufferBackup;
// Initialization vector, feedback, buffer, additional buffer
FDataSize := FBufferSize * 3 + FAdditionalBufferSize;
if MustAdditionalBufferSave then
// if contents of the FAdditionalBuffer needs to be saved increase buffer size
// by FAdditionalBufferSize so FAdditionalBuffer and then FAdditionalBufferBackup
// fit in the buffer
Inc(FDataSize, FAdditionalBufferSize);
// ReallocMemory instead of ReallocMem due to C++ compatibility as per 10.1 help
FData := ReallocMemory(FData, FDataSize);
FInitializationVector := @FData[0];
FFeedback := @FInitializationVector[FBufferSize];
FBuffer := @FFeedback[FBufferSize];
FAdditionalBuffer := @FBuffer[FBufferSize];
if MustAdditionalBufferSave then
// buffer contents: FData, then FFeedback, then FBuffer then FAdditionalBuffer
FAdditionalBufferBackup := @PByteArray(FAdditionalBuffer)[FAdditionalBufferSize]
else
FAdditionalBufferBackup := nil;
FFillMode := fmByte;
FState := csNew;
SecureErase;
end;
destructor TDECCipher.Destroy;
begin
SecureErase;
// FreeMem instead of ReallocMemory which produced a memory leak. ReallocMemory
// was used instead of ReallocMem due to C++ compatibility as per 10.1 help
FreeMem(FData, FDataSize);
FInitializationVector := nil;
FFeedback := nil;
FBuffer := nil;
FAdditionalBuffer := nil;
FAdditionalBufferBackup := nil;
inherited Destroy;
end;
procedure TDECCipher.SetMode(Value: TCipherMode);
begin
if Value <> FMode then
begin
if not (FState in [csNew, csInitialized, csDone]) then
Done;
FMode := Value;
end;
end;
procedure TDECCipher.CheckState(States: TCipherStates);
begin
if not (FState in States) then
begin
if FState = csPadded then
raise EDECCipherException.CreateRes(@sAlreadyPadded)
else
raise EDECCipherException.CreateRes(@sInvalidState);
end;
end;
class function TDECCipher.ClassByIdentity(Identity: Int64): TDECCipherClass;
begin
result := TDECCipherClass(ClassList.ClassByIdentity(Identity));
end;
class function TDECCipher.ClassByName(const Name: string): TDECCipherClass;
begin
result := TDECCipherClass(ClassList.ClassByName(Name));
end;
class function TDECCipher.Context: TCipherContext;
begin
// C++ does not support virtual static functions thus the base cannot be
// marked 'abstract'. This is our workaround:
raise EDECAbstractError.Create(GetShortClassName);
end;
procedure TDECCipher.Init(const Key; Size: Integer; const IVector; IVectorSize: Integer; IFiller: Byte);
begin
FState := csNew;
SecureErase;
if (Size > Context.KeySize) and (not (ctNull in Context.CipherType)) then
raise EDECCipherException.CreateRes(@sKeyMaterialTooLarge);
if IVectorSize > FBufferSize then
raise EDECCipherException.CreateRes(@sIVMaterialTooLarge);
DoInit(Key, Size);
if FAdditionalBufferBackup <> nil then
// create backup of FBuffer
Move(FAdditionalBuffer^, FAdditionalBufferBackup^, FAdditionalBufferSize);
FillChar(FInitializationVector^, FBufferSize, IFiller);
if IVectorSize = 0 then
begin
DoEncode(FInitializationVector, FInitializationVector, FBufferSize);
if FAdditionalBufferBackup <> nil then
// Restore backup fo FBuffer
Move(FAdditionalBufferBackup^, FAdditionalBuffer^, FAdditionalBufferSize);
end
else
Move(IVector, FInitializationVector^, IVectorSize);
Move(FInitializationVector^, FFeedback^, FBufferSize);
FState := csInitialized;
end;
procedure TDECCipher.Init(const Key: TBytes; const IVector: TBytes; IFiller: Byte = $FF);
begin
if (Length(Key) = 0) and (not (ctNull in Context.CipherType)) then
raise EDECCipherException.CreateRes(@sNoKeyMaterialGiven);
if IVector <> nil then
Init(Key[0], Length(Key), IVector[0], Length(IVector), IFiller)
else
Init(Key[0], Length(Key), NullStr, 0, IFiller);
end;
procedure TDECCipher.Init(const Key: RawByteString; const IVector: RawByteString = ''; IFiller: Byte = $FF);
begin
if (Length(Key) = 0) and (not (ctNull in Context.CipherType)) then
raise EDECCipherException.CreateRes(@sNoKeyMaterialGiven);
if Length(IVector) > 0 then
{$IF CompilerVersion >= 24.0}
Init(Key[Low(Key)], Length(Key) * SizeOf(Key[Low(Key)]),
IVector[Low(IVector)], Length(IVector) * SizeOf(IVector[Low(IVector)]), IFiller)
{$ELSE}
Init(Key[1], Length(Key) * SizeOf(Key[1]),
IVector[1], Length(IVector) * SizeOf(IVector[1]), IFiller)
{$IFEND}
else
{$IF CompilerVersion >= 24.0}
Init(Key[Low(Key)], Length(Key) * SizeOf(Key[Low(Key)]), NullStr, 0, IFiller);
{$ELSE}
Init(Key[1], Length(Key) * SizeOf(Key[1]), NullStr, 0, IFiller);
{$IFEND}
end;
{$IFDEF ANSISTRINGSUPPORTED}
procedure TDECCipher.Init(const Key, IVector: AnsiString; IFiller: Byte);
begin
if (Length(Key) = 0) and (not (ctNull in Context.CipherType)) then
raise EDECCipherException.Create(sNoKeyMaterialGiven);
if Length(IVector) > 0 then
{$IF CompilerVersion >= 24.0}
Init(Key[Low(Key)], Length(Key) * SizeOf(Key[Low(Key)]),
IVector[Low(IVector)], Length(IVector) * SizeOf(Low(IVector)), IFiller)
{$ELSE}
Init(Key[1], Length(Key) * SizeOf(Key[Low(Key)]),
IVector[IVector[1]], Length(IVector) * SizeOf(IVector[1]), IFiller)
{$IFEND}
else
{$IF CompilerVersion >= 24.0}
Init(Key[Low(Key)], Length(Key) * SizeOf(Key[Low(Key)]), NullStr, 0, IFiller);
{$ELSE}
Init(Key[1], Length(Key) * SizeOf(Key[1]), NullStr, 0, IFiller);
{$IFEND}
end;
{$ENDIF}
{$IFNDEF NEXTGEN}
procedure TDECCipher.Init(const Key, IVector: WideString; IFiller: Byte);
begin
if (Length(Key) = 0) and (not (ctNull in Context.CipherType)) then
raise EDECCipherException.CreateRes(@sNoKeyMaterialGiven);
if Length(IVector) > 0 then
{$IF CompilerVersion >= 24.0}
Init(Key[Low(Key)], Length(Key) * SizeOf(Key[Low(Key)]),
IVector[Low(IVector)], Length(IVector) * SizeOf(IVector[Low(IVector)]), IFiller)
{$ELSE}
Init(Key[1], Length(Key) * SizeOf(Key[1]),
IVector[1], Length(IVector) * SizeOf(IVector[1]), IFiller)
{$IFEND}
else
{$IF CompilerVersion >= 24.0}
Init(Key[Low(Key)], Length(Key) * SizeOf(Key[Low(Key)]), NullStr, 0, IFiller);
{$ELSE}
Init(Key[1], Length(Key) * SizeOf(Key[1]), NullStr, 0, IFiller);
{$IFEND}
end;
{$ENDIF}
procedure TDECCipher.Done;
begin
if FState <> csDone then
begin
FState := csDone;
FBufferIndex := 0;
DoEncode(FFeedback, FBuffer, FBufferSize);
Move(FInitializationVector^, FFeedback^, FBufferSize);
if FAdditionalBufferBackup <> nil then
Move(FAdditionalBufferBackup^, FAdditionalBuffer^, FAdditionalBufferSize);
end;
end;
procedure TDECCipher.SecureErase;
begin
ProtectBuffer(FData[0], FDataSize);
end;
function TDECCipher.EncodeRawByteString(const Source: RawByteString; Format: TDECFormatClass): RawByteString;
var
b : TBytes;
begin
SetLength(b, 0);
if Length(Source) > 0 then
begin
{$IF CompilerVersion >= 24.0}
SetLength(b, Length(Source) * SizeOf(Source[Low(Source)]));
DoEncode(@Source[low(Source)], @b[0], Length(Source) * SizeOf(Source[low(Source)]));
{$ELSE}
SetLength(b, Length(Source) * SizeOf(Source[1]));
DoEncode(@Source[1], @b[0], Length(Source) * SizeOf(Source[1]));
{$IFEND}
Result := BytesToRawString(ValidFormat(Format).Encode(b));
end;
end;
function TDECCipher.GetMode: TCipherMode;
begin
Result := FMode;
end;
function TDECCipher.EncodeBytes(const Source: TBytes; Format: TDECFormatClass = nil): TBytes;
begin
SetLength(Result, 0);
if Length(Source) > 0 then
begin
SetLength(Result, Length(Source) * SizeOf(Source[0]));
DoEncode(@Source[0], @Result[0], Length(Source) * SizeOf(Source[0]));
Result := ValidFormat(Format).Encode(Result);
end;
end;
function TDECCipher.DecodeRawByteString(const Source: RawByteString; Format: TDECFormatClass): RawByteString;
var
b : TBytes;
begin
SetLength(Result, 0);
if Length(Source) > 0 then
begin
// Delphi 10.1 Berlin and 10.2 Tokyo will issue a W1057 implicit string
// conversion warning here because the RawByteString BytesOf function is by
// mistake in a $IFNDEF NEXTGEN block. See QP report:
// https://quality.embarcadero.com/browse/RSP-20574
// This has been fixed in 10.3.0 Rio
b := ValidFormat(Format).Decode(BytesOf(Source));
{$IF CompilerVersion >= 24.0}
DoDecode(@b[0], @Result[Low(Result)], Length(Result) * SizeOf(Result[Low(Result)]));
{$ELSE}
DoDecode(@b[0], @Result[1], Length(Result) * SizeOf(Result[1]));
{$IFEND}
end;
end;
function TDECCipher.DecodeBytes(const Source: TBytes; Format: TDECFormatClass): TBytes;
begin
SetLength(Result, 0);
if Length(Source) > 0 then
begin
Result := ValidFormat(Format).Decode(Source);
DoDecode(@Result[0], @Result[0], Length(Result) * SizeOf(Result[0]));
end;
end;
function TDECCipher.CalcMAC(Format: TDECFormatClass): RawByteString;
begin
Done;
if FMode in [cmECBx] then
raise EDECException.CreateRes(@sInvalidMACMode)
else
Result := ValidFormat(Format).Encode(FBuffer^, FBufferSize);
{ TODO : How to rewrite? EncodeBytes cannot be called directly like that }
end;
//function TDECCipher.CalcMACByte(Format: TDECFormatClass): TBytes;
//begin
// Done;
// if FMode in [cmECBx] then
// raise EDECCipherException.Create(sInvalidMACMode)
// else
// begin
// Result := System.SysUtils.BytesOf(ValidFormat(Format).Encode(FBuffer^, FBufferSize));
// end;
//end;
{$IFDEF RESTORE_RANGECHECKS}{$R+}{$ENDIF}
{$IFDEF RESTORE_OVERFLOWCHECKS}{$Q+}{$ENDIF}
{$IFDEF DELPHIORBCB}
procedure ModuleUnload(Instance: NativeInt);
var // automaticaly deregistration/releasing
i: Integer;
begin
if TDECCipher.ClassList <> nil then
begin
for i := TDECCipher.ClassList.Count - 1 downto 0 do
begin
if NativeInt(FindClassHInstance(TClass(TDECCipher.ClassList[i]))) = Instance then
TDECCipher.ClassList.Remove(TDECCipher.ClassList[i].Identity);
end;
end;
end;
{$ENDIF DELPHIORBCB}
initialization
// Code for packages and dynamic extension of the class registration list
{$IFDEF DELPHIORBCB}
AddModuleUnloadProc(ModuleUnload);
{$ENDIF DELPHIORBCB}
TDECCipher.ClassList := TDECClassList.Create;
finalization
// Ensure no further instances of classes registered in the registraiotn list
// are possible through the list after this unit has been unloaded by unloding
// the package this unit is in
{$IFDEF DELPHIORBCB}
RemoveModuleUnloadProc(ModuleUnload);
{$ENDIF DELPHIORBCB}
TDECCipher.ClassList.Free;
end.