我正在尝试在 Spring security 3 中实现 salt 源作为我的安全性的一部分。我想给用户名加盐,但是为了使用它,如下所示,我需要实现哪个域才能利用 spring security 的默认实现???
<authentication-manager>
<authentication-provider user-service-ref="userDetailsService">
<password-encoder hash="sha-256">
<salt-source user-property="username" />
</password-encoder>
</authentication-provider>
</authentication-manager>