• Nexus-Plexus

    (@nexus-plexus)


    Im using the logins of wordpress for my game, But how do I encode the text like wordpress? How do I decode it?

Viewing 1 replies (of 1 total)
  • catacaustic

    (@catacaustic)

    You can’t de-code the passwords in the database. They have been hashed using a one-way algorythm, meaning that you can only hash them, you can’t un-hash them.

    As far as I remember (I could be wrong…) the passwords are hashed uisng MD5, so you can check using something like this…

    SELECT ID FROM wp_users WHERE username = 'chosen_username' AND password = MD5('password goes in here')

Viewing 1 replies (of 1 total)

The topic ‘Passwords in MySQL’ is closed to new replies.