I encoded 3 column of the database with the B4XEncryption library
But my database size has increased a lot
What suggestion do you have to hide data in the database?
Are you talking about SQlite? You can use it with encryption. Take a search. By the way there's always an overhead using encryption. Search Google, too for an answer because it's a general question how to secure db's.
a simple encryption:
bitwise exclusive OR (XOR) let the size the same.
you can xor byte for byte with a keyword.
if you do this again you have back your original.
Are you talking about SQlite? You can use it with encryption. Take a search. By the way there's always an overhead using encryption. Search Google, too for an answer because it's a general question how to secure db's.
a simple encryption:
bitwise exclusive OR (XOR) let the size the same.
you can xor byte for byte with a keyword.
if you do this again you have back your original.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.