要加密我使用的密码(从http://www.jasypt.org/encrypting-texts.html修改):
BasicTextEncryptor textEncryptor = new BasicTextEncryptor();
textEncryptor.setPassword(myEncryptionPassword);
String myEncryptedText = textEncryptor.encrypt(myText);
String plainText = textEncryptor.decrypt(myEncryptedText);
为什么需要设置密码BasicTextEncryptor
?
我可能在这里不理解一些基本的东西,但这是否没有意义,尽管它不起作用:
BasicTextEncryptor textEncryptor = new BasicTextEncryptor();
String myEncryptedText = textEncryptor.encrypt(myText);
String plainText = textEncryptor.decrypt(myEncryptedText);