Hi, I have set up an authentication source using external MariaDB.
I can test this authentication succesfully using clear text passwords with the policy simulation tool
When I tried to change the password type to any kind of hash (md5, sha or sha256), the policy simulation fails with user reject message
The filter query I am using is:
SELECT username as UserName, password AS User_Password, perfil, descripcion, estado FROM usuarios WHERE username = '%{Authentication:Username}';
Is there any different keyword instead of User_Password to be used with hashed passwords?
I read an article using Hash_Password but in that case I receive an error indicating wrong filter query
Thanks in advance
Regards