AES Encryption/decryption 使用 Spring 安全
AES Encryption/decryption using Spring Security
我一直在网上寻找如何在 Spring 框架中使用 AES encrypt/decrypt 密码或字符串。任何链接或教程?解释 AES 也很好,但请使用非书呆子的话。
如果你想知道我为什么要这样做是因为我们需要加密密码并将其保存在会话中,然后从会话中获取密码进行解密然后使用它。
提前致谢。
Spring 安全实际上并不自己构建加密工具——它们更多地处理身份验证、登录、会话和编码(因此,散列密码和诸如此类的事情)。看看http://www.jasypt.org/, which is commonly used with spring security if encryption/decryption is needed at the spring security level (http://www.jasypt.org/springsecurity.html).
我一直在网上寻找如何在 Spring 框架中使用 AES encrypt/decrypt 密码或字符串。任何链接或教程?解释 AES 也很好,但请使用非书呆子的话。
如果你想知道我为什么要这样做是因为我们需要加密密码并将其保存在会话中,然后从会话中获取密码进行解密然后使用它。
提前致谢。
Spring 安全实际上并不自己构建加密工具——它们更多地处理身份验证、登录、会话和编码(因此,散列密码和诸如此类的事情)。看看http://www.jasypt.org/, which is commonly used with spring security if encryption/decryption is needed at the spring security level (http://www.jasypt.org/springsecurity.html).