Click or drag to resize

UtilSimpleObfuscatorDeobfuscate Method

Decodes an obfuscated string by reversing the obfuscation process.

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

Parameters

obfuscated  String
The obfuscated string to decode. This must be a valid Base64-encoded string.

Return Value

String
The original, deobfuscated string.
Remarks
The method assumes the input string was obfuscated using a reversible process involving Base64 encoding and XOR encryption with a predefined key. The same key used for obfuscation must be used for deobfuscation.
See Also