Hi
I am implementing reset password in my application.
In there by using getuser entity action I fetched the User's Password but I don't know how to validate that with the password in my local variable. That local variable is mapped to Input widget on screen.
Can anyone please tell me how to do that
Maria
Hi Maria
In dependencies under platformpasswordutensils add "ValidatePassword".
It has two input parameters one is Plain Text Password - that's old password you already stored in the variable. And second one is SaltedHashedPassword inside there give your encrypted password fetched from GetUser entity action.
If it matches it returns ISValid output parameters as True, otherwise it returns false. Based on that you can validate password in reset password scenario.
I hope it will work for you.
Regards
Murali
Thank You Murali for your solution