i am changing the password and then forwarding to /loginuser and redirect to users dashboard. i had secured this with httpbasic authentication since i am a beginner, I am using
I think you have a problem because your encoded password has a length < 28, from spring sources:
if (saltLength < 28) { throw new IllegalArgumentException("Invalid salt"); }
how to fix that:
I hope that helps.