Spring セキュリティ 3 のセキュリティの一部としてソルト ソースを実装しようとしています。ユーザー名をソルトしたいのですが、以下に示すようにこれを使用するには、Spring セキュリティを利用するためにどのドメインを実装する必要がありますか?デフォルトの実装???
<authentication-manager>
<authentication-provider user-service-ref="userDetailsService">
<password-encoder hash="sha-256">
<salt-source user-property="username" />
</password-encoder>
</authentication-provider>
</authentication-manager>