我将一个项目迁移到 Spring 3.1,该项目使用
org.springframework.security.util.EncryptionUtils
这个类似乎在 Spring 3.1 中消失了,我发现一些参考资料表明它在 Spring 3.0 中已经被弃用了。
实用程序已用于简单的同步加密:
encryptedText = EncryptionUtils.encrypt(password, text)
decryptedText = EncryptionUtils.decrypt(password, encryptedText)
这是一个不错且简单的方法。您能否建议使用可以达到相同结果的良好替代品?