TOlfCryptDecrypt.XORCrypt Method

Overloads

XORCrypt(TStream)

use XOR operand to crypt a buffer with the keys buffer property

XORCrypt(TStream, TByteDynArray)

use XOR operand to crypt a buffer with a keys buffer

XORCrypt(TStream)

use XOR operand to crypt a buffer with the keys buffer property

Delphi
function XORCrypt(const AStream: TStream): TMemoryStream

Parameters

AStream
TStream

Returns

TMemoryStream

Remarks

You can use the program at https://xorkeysgenerator.olfsoftware.fr/ to generate a compatible XOR keys buffer.

XORCrypt(TStream, TByteDynArray)

use XOR operand to crypt a buffer with a keys buffer

Delphi
class function XORCrypt(const AStream: TStream; const AKeys: TByteDynArray): TMemoryStream

Parameters

AStream
TStream
AKeys
TByteDynArray

Returns

TMemoryStream

Remarks

You can use the program at https://xorkeysgenerator.olfsoftware.fr/ to generate a compatible XOR keys buffer.