Click or drag to resize

UtilSimpleObfuscatorObfuscate Method

Obfuscates the specified plain text by applying a reversible transformation.

Namespace: QsInformatica.Utils
Assembly: QsInformatica.Utils (in QsInformatica.Utils.dll) Version: 28.0.0
Syntax
public static string Obfuscate(
	string plainText
)

Parameters

plainText  String
The plain text to obfuscate. Cannot be or empty.

Return Value

String
A Base64-encoded string representing the obfuscated version of the input text.
Remarks
The obfuscation process applies a simple XOR operation using a predefined key and encodes the result in Base64 format. This method is not intended for secure encryption and should not be used for sensitive data.
See Also