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!
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…