I need to integrate a Django system with a Wordpress site, as in wordpress users should be able to log in the DJnago part and vice versa,
For this I need to understand how the password hashing works in Wordpress. I can see the wp_users
table which stores the username and password hashes.
Looking through the wordpress code, I can see the password is set via wp_set_password, which is using hash_password to hash the password.
Now I dont know enough PHP to understand how it is working. I need to replicate the same in python so I can validate the password from Django part.