How to specify Algorithm="MD5" in WWW-Authenticate challenge response with Spring Security -
i have configuration set follows utilize md5 encryption.
<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"/> from understanding, according http://tools.ietf.org/html/rfc2617#section-3.2.1, md5 should default encryption algorithm. due client needs, however, need our server specify directly. please me in achieving this?
Comments
Post a Comment