Android Question SecureMyText question

Ricky D

Well-Known Member
Licensed User
Longtime User
I have downloaded the library.

Are there any examples for using it with storing to sqlite and retrieving that data at a later date.

I want to encrypt the login details of my app

regards, Ricky
 

Ricky D

Well-Known Member
Licensed User
Longtime User
I am wondering if just using encrpyt is ok for throwing to sqlite
 
Upvote 0

DonManfred

Expert
Licensed User
Longtime User
Are there any examples for using it with storing to sqlite and retrieving that data at a later date.
The Data is a String. Even before and after encryption.
So you just can encrypt a text and store the encrypted text in your Database.
When you read the Value back from your Database you decrypt the stored String to get the Stored value.

If you are familar with SqLite then you easily should know how to save or read the String.
 
Upvote 0
Top