I need fast and simple way to encrypt/decrypt a “lot” of String data.
I tried jasypt but it crashes on my Android phone. I have about 2000 records (strings).
BasicTextEncryptor textEncryptor = new BasicTextEncryptor();
textEncryptor.setPassword("password");
String myEncryptedText = textEncryptor.encrypt(input);
Is there some other way? I don’t need extremely high security, it needs to be fast!
Java – encrypt / decrypt user name and password from a configuration file
Code from above link