Migrating users table from Laravel to Ruby and using BCrypt to decode passwords does not work
问题 I am migrating users table from a laravel application to a ruby SSO server, and I am using BCrypt to validate passwords in ruby. The problem i am facing is that passwords do not match because the Hash generated by laravel starts with $2y$10..... and my BCrypt generates a hash $2a$10.... The versions between the two hashes do not match. Ruby BCrypt shows version 2a , instead laravel 2y How can i bring them on the same version so i can do user authentication in ruby like this? BCrypt::Password