我的配置设置如下,以利用MD5加密。
<authentication-manager >
<authentication-provider user-service-ref="userDetailsService" >
<password-encoder ref="passwordEncoder"/>
</authentication-provider>
</authentication-manager>
<beans:bean class="org.springframework.security.authentication.encoding.Md5PasswordEncoder" id="passwordEncoder"/>
根据我的理解,根据http://tools.ietf.org/html/rfc2617#section-3.2.1,MD5应该是默认的加密算法。但是,由于客户端的需要,我需要我们的服务器直接指定它。有人可以帮助我实现这个目标吗?