Android Question Function Encrypt and Decrypt (library StringFunctions)

AlpVir

Well-Known Member
Licensed User
Longtime User
What is the degree of obfuscation of the functions in the subject? Poor, good, excellent or what else?
Does it make sense to use the following code to further hide the contents of a string?
Is it possible to decrypt the content of the SC1 variable, after having identified it with a binary file viewer?
Thanks in advance


B4X:
    Dim sf         As StringFunctions
    Dim SC        As String 
    Dim D        As String 
    sf.Initialize
    'SC=sf.Encrypt("Lorem Ipsum")
    'LogColor(SC,Colors.Red)
    SC="ìôòïÈìäñîË"
    D=sf.Decrypt(SC)
    LogColor(D,Colors.Green)
 
Top