I am getting hashes and salts based on MD5 from a platform where users register.My platform is getting from a csv file the data of the new users(name,surname,username,password) and i have created a script in php that adds them automatically in my database.However i have a problem with the passwords because the platform i am using uses Bcrypt passwords.I have no idea how i can change the salted MD5 hashed passwords to a Bcrypt password so that when the users that have registered to the other platform try to login in mine the authentication succeeds.
Thank you in advance.