使用 Spring Security 3 对密码进行哈希处理和加盐处理
如何使用 Spring Security 3 对密码进行哈希处理并加盐?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何使用 Spring Security 3 对密码进行哈希处理并加盐?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
通过编程方式,您可以按如下方式执行此操作:
在 application-context.xml(在
contextConfigLocation
下的 web.xml 中定义)文件中定义 bean(本示例使用md5
) 。然后自动连接密码编码器:
在您的方法中或您想要散列和加盐的任何地方。
上面的调用应该返回一个加盐哈希(作为
String
)。应该可以做到这一点。我假设你能找出你需要的罐子。
更新
不用说,使用 MD5 并不是最好的主意。理想情况下,您至少应该使用 SHA-256。这可以通过
ShaPasswordEncoder
。将上面的 MD5 bean 配置替换为:
Programmatic-ally you would do it as follows:
In your application-context.xml (defined in web.xml under
contextConfigLocation
) file define the bean (this example usesmd5
).Then Autowire the password encoder:
In your method or wherever you want to hash and salt.
The above call should return a salted hash (as a
String
).That should do it. I'm assuming you can figure out the jar's you'll need.
UPDATE
It should go without saying that using MD5 is not the best idea. Ideally you should use SHA-256 at least. This can be done with the
ShaPasswordEncoder
.Replace the MD5 bean config above with:
最简单的似乎是 Spring Security 3.1,假设对散列的完成方式没有限制:
Simplest seems to be Spring Security 3.1 assuming no constraints on the way hashing should be done:
最简单的方法,如 记录:
HTH
easiest way, as documented:
HTH