I want to encrypt the specific data that I want in the tables.
For instance,
I need something like this:
update mytable set column1 = encrypt(column1, "key") where condition;
and this:
select decrypt(column1, "key") from mytable where condition;
Simple any built-in SQL function in SQLite to execute this?
I have a Java function for encrypt () and decrypt (), I need to massage the encryption of the column of the table, and it will be too slow if I read the column, apply this function and then write back. Please inform.
Thanks in advance.
Rahim source share