I have a software which stores passwords using an unknown hashing method. for example if the 123456789 set as the password, it would be stored in the database by two fields which are 'salt' (seems that the salt is generated randomly) and 'hashed'. And I need to know how the software reaches to that hashed string.
as an example for the origial string: 123456789
the salt is: ifWIg1IB
hashed is: QkKtpxSqd+kIH2EuMkNdWV44B2g=
I need to know it because of making an integrated login system via this hashed password. I think it is very important to avoid make lots of username and password for each person in an office.
with the best respects