 | UtilSimpleObfuscatorObfuscate Method |
Obfuscates the specified plain text by applying a reversible transformation.
Namespace: QsInformatica.UtilsAssembly: QsInformatica.Utils (in QsInformatica.Utils.dll) Version: 28.0.0
Syntaxpublic static string Obfuscate(
string plainText
)
Public Shared Function Obfuscate (
plainText As String
) As String
public:
static String^ Obfuscate(
String^ plainText
)
static member Obfuscate :
plainText : string -> string
Parameters
- plainText String
- The plain text to obfuscate. Cannot be or empty.
Return Value
StringA Base64-encoded string representing the obfuscated version of the input text.
RemarksThe 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