Site icon Hip-Hop Website Design and Development

how to import contacts from php to wordpress

hello I have a php site with a list of already registered members who have a password.
I would like to be able to import my members into wordpress with their passwords … how to do that. On my php site registration is done with this hash code

$cost = ['cost' => 12];
                            $password = password_hash($password, PASSWORD_BCRYPT, $cost);