如何使用Spring Security在WWW-Authenticate质询响应中指定Algorithm =“MD5”

时间:2013-08-16 14:32:01

标签: spring security authentication encryption header

我的配置设置如下,以利用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应该是默认的加密算法。但是,由于客户端的需要,我需要我们的服务器直接指定它。有人可以帮助我实现这个目标吗?

0 个答案:

没有答案