Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions Source/DECCipherBase.pas
Original file line number Diff line number Diff line change
Expand Up @@ -616,8 +616,7 @@ TDECCipher = class(TDECObject)
/// </exception>
function EncodeRawByteString(const Source: RawByteString;
Format: TDECFormatClass = nil): RawByteString;
deprecated; // please use EncodeBytes functions now
// or TCipherFormats.EncodeStringToString
deprecated 'please use EncodeBytes functions or TCipherFormats.EncodeStringToString now';
/// <summary>
/// Decrypts the contents of a RawByteString. This method is deprecated
/// and should be replaced by a variant expecting TBytes as source in
Expand Down Expand Up @@ -648,7 +647,7 @@ TDECCipher = class(TDECObject)
/// is not a multiple of the algorithm's block size.
/// </exception>
function DecodeRawByteString(const Source: RawByteString;
Format: TDECFormatClass = nil): RawByteString; deprecated; // please use DecodeBytes functions now
Format: TDECFormatClass = nil): RawByteString; deprecated 'please use DecodeBytes functions now';

/// <summary>
/// Encrypts the contents of a ByteArray.
Expand Down Expand Up @@ -708,7 +707,7 @@ TDECCipher = class(TDECObject)
// 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;
function CalcMAC(Format: TDECFormatClass = nil): RawByteString; overload; //deprecated 'please use the TBytes based overload';

// properties

Expand Down