im using HTTP Digest to connect to my Spring application using Spring DigestAuthenticationFilter. The application uses Tomcat 7. It works fine with plain text (in the database)
My problem: I want to store hashed passwords (with salt, if possible), and not in clear text. But if I understood correctly, HTTP Digest requires that the password be in clear text.
Is there a way to change this in Spring Security?
guigui42
source share