Hi,
In my B4A app, I receive a string from my MariaDB database via an SQL query. I am supposed to decrypt the received encrypted string in B4A
In MariaDB, the string is encrypted using the following SQL statement
I searched the forum and read a few posts, but then it is discussing the vector and cypher used etc. As you can see in the above SQL statement, nothing is mentioned about the cypher, vector etc, its just the scoring to be encrypted and the password to be used.
May I know which encryption/Decryption library is to be used in B4A ?
Any help will be appreciated
In my B4A app, I receive a string from my MariaDB database via an SQL query. I am supposed to decrypt the received encrypted string in B4A
In MariaDB, the string is encrypted using the following SQL statement
SQL:
SELECT CAST( AES_ENCRYPT(FirstName,'MyPassword') AS CHAR(50) ) AS 'EncryptedString' FROM MyTableName
I searched the forum and read a few posts, but then it is discussing the vector and cypher used etc. As you can see in the above SQL statement, nothing is mentioned about the cypher, vector etc, its just the scoring to be encrypted and the password to be used.
May I know which encryption/Decryption library is to be used in B4A ?
Any help will be appreciated