League of Legends database compromised, passwords hashed without salt
euw.leagueoflegends.com
League of Legends database compromised, passwords hashed without salt
1–10 of 109 posts
Re: League of Legends database compromised, passwords hashed without salt
#2Re: League of Legends database compromised, passwords hashed without salt
#3Re: League of Legends database compromised, passwords hashed without salt
#4It says encrypted not hashed, these are not the same thing. Encryption uses keys and without the keys you can't get the value without a huge brute force effort. Hash without salt can be broken trivially. It'd bad either way but encrypted is way better than leaked hash.
Re: League of Legends database compromised, passwords hashed without salt
#5Re: League of Legends database compromised, passwords hashed without salt
#6Is there a good authentication system that doesn't involve storing passwords, hashed passwords, or encrypted passwords in the master database?
Re: League of Legends database compromised, passwords hashed without salt
#7Re: League of Legends database compromised, passwords hashed without salt
#8Is there a good authentication system that doesn't involve storing passwords, hashed passwords, or encrypted passwords in the master database?
Apparently it's quite tricky to implement properly though.
Re: League of Legends database compromised, passwords hashed without salt
#9It says encrypted not hashed, these are not the same thing. Encryption uses keys and without the keys you can't get the value without a huge brute force effort. Hash without salt can be broken trivially. It'd bad either way but encrypted is way better than leaked hash.