 | UtilSimpleObfuscatorDeobfuscate Method |
Decodes an obfuscated string by reversing the obfuscation process.
Namespace: QsInformatica.UtilsAssembly: QsInformatica.Utils (in QsInformatica.Utils.dll) Version: 28.0.0
Syntaxpublic static string Deobfuscate(
string obfuscated
)
Public Shared Function Deobfuscate (
obfuscated As String
) As String
public:
static String^ Deobfuscate(
String^ obfuscated
)
static member Deobfuscate :
obfuscated : string -> string
Parameters
- obfuscated String
- The obfuscated string to decode. This must be a valid Base64-encoded string.
Return Value
StringThe original, deobfuscated string.
RemarksThe 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