TOlfCryptDecrypt.XORDecrypt Method

Overloads

XORDecrypt(TStream)

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

XORDecrypt(TStream, TByteDynArray)

use XOR operand to decrypt a buffer with a keys buffer

XORDecrypt(TStream)

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

Delphi
function XORDecrypt(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.

XORDecrypt(TStream, TByteDynArray)

use XOR operand to decrypt a buffer with a keys buffer

Delphi
class function XORDecrypt(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.