Guest User

Untitled

a guest
Jan 22nd, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. username:password:salt
  2.  
  3. md5(pass + salt)
  4. md5(salt + pass)
  5. md5(md5(pass) + md5(salt))
  6. md5(pass + md5(salt))
  7. md5(md5(...(salt + pass + salt)...))
  8. ...
  9. and whatnot.
  10.  
  11. md5(password.substring(0,4) + salt + password.substring(4,end))
  12.  
  13. hash(salt . password)
  14.  
  15. hash(password . salt)
Add Comment
Please, Sign In to add comment