Hi everybody!
I just want to en/decrypt a simple string. For that I copied SS_AESEncryption.jar and SS_AESEncryption.xml to the
location where I stored all other external and additional libraries.
Even this simlpe declaration:
Declaration:
Process_Globals
'These global variables will be declared once when the application starts.
'These variables can be accessed from all modules.
Public EncDec As AESEncryption
'+++++++++++++++++++++++++++++++++++++++
fires an error: "libraries\encrption.jar" not found
Dim cipher As B4XCipher
Dim encrypted() As Byte = cipher.Encrypt("your simple string".GetBytes("utf8"), "your complex password")
'now test
Dim decrypted() As Byte = cipher.Decrypt(encrypted, "your complex password")
Log(BytesToString(decrypted, 0, decrypted.Length, "utf8"))