I'm very new to Spring and SpringSecurity.
I have in my database the table where I have stored the users with their passwords. (a Postgresql database). Every time when I insert a new record in my table, I have a trigger that encrypts the password using md5 algorithm. On my application, I use Spring, and I try to also make use of SpringSecurity 3.2 module. I provided my own UserDetailsService
service. the problem is that I don't know what should I do to make the authentication successful having this scenario. I think that spring fails to authenticate the user due to the fact that the password is stored with database md5 algorithm. Does anyone have any suggestion on what should I do.
If you need any code sample, ask me for it.