• irna

    (@irna)


    Using which alogrithm is the password stored in the wp_users table????

Viewing 3 replies - 1 through 3 (of 3 total)
  • catacaustic

    (@catacaustic)

    The passowrd hash is done using the wp_hash_password() function.

    Thread Starter irna

    (@irna)

    do you have any link which can provide coding and decocoding code for the password in the wordpress??

    Moderator bcworkz

    (@bcworkz)

    Hashes are one way encryptions. You cannot decode a hash back into a plaintext password. You check passwords by running the offered password through the same function and verify the resulting hash is the same as the one stored in the DB. If you’d like to see the coding there is a source code link at the bottom of catacaustic’s reference.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘password’ is closed to new replies.