How do I migrate the user password field in a laravel project to another language?

there is an old laravel project with the user"s password field. Now the data of this project needs to be migrated to other languages (go).
but the password field cannot reverse hash out of the original value,

.

how should I handle this situation?
do I need to use go to implement a laravel password hash function?

laravel encryption Source


see what means are used to encrypt passwords in laravel, and just use go to implement one. Anyway, all encryption methods are just different languages, and the result must be the same


the encryption function of laravel you use is posted
https://github.com/vzglad-smerti/password_hash

.
Menu