We have created few reports in Pentaho with PostgreSQL as data source. We have implemented the authentication of pentaho to take from PostgreSQL database users and roles tables but in the db Passwords are stored as hash passwords. So when we try to login to Pentaho with the username and actual passwords, login is not working as we passed the hash passwords to the pentaho server while configuring the security.
So can someone let me know how to decrypt the hashed passwords while retrieving them from the DB with the below statement so that we can pass actual passwords to the Pentaho server while configuring authentication.
SELECT username, password, enabled FROM USERS ORDER BY username(In this statement password should be the decrypted passwords but in the db hash passwords are stored)
Thank you in advance.
