I have a database-table of users including columns for password-hash and password-salt. As I am one of the users in this table I also know the plain-text password of one of these users. The salt column is varchar(20) and hash is varchar(64).
I was wondering if it is possible to determine the hashing-algorithm used. Eventually, I would like to add users to the database with strong initial passwords, as the software only provides very weak ones. So I would like to generate passwords in such a way that they can be used to actually log into the software.