View Single Post
  #74  
Παλιό 23-05-2013, 11:18
King C. Ο/Η King C. βρίσκεται εκτός σύνδεσης
Senior Member
 
Ημερομηνία εγγραφής: Apr 2012
Περιοχή: Αθήνα
Μηνύματα: 104
Προεπιλογή Απάντηση: Να σας πω τι βίωσα σήμερα!

Pls read the below (from a vbulletin admin) at an IT forum, where I am a moderator, in order to understand how vbulletin's password encryption works...

"When you salt a hash you add extra characters to the original hash and then hash it again.

So if your password was Arnox: md5(Arnox) = f0dc9695a2038573c4883c3d23311485

Now if you salted that f0dc9695a2038573c4883c3d23311485+sdfw34twsd

-> md5(f0dc9695a2038573c4883c3d23311485sdfw34twsd) = bdbff09e470662ed9e063c600b9d5a51

bdbff09e470662ed9e063c600b9d5a51 would be stored in the database. So unless you knew the salt it would make it very very very hard to decrypt it.

Whatever salt you choose to use needs to be consistent."