Use Argon2ID as the password hashing algorithm #26
Loading…
Reference in New Issue
No description provided.
Delete Branch "WildEgo/server:master"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Hi, thanks for the PR! I was going to use Bcrypt, but I did some reading and this seems a better technical solution at first glance. I'll check it out!
Argon2ID is super nice and super balanced, also works with Laravel with just a change from what I remember which is nice, as well as anything recent, if you need a password this should work for you
$argon2id$v=19$m=16,t=2,p=1$MTIzNDU2Nzg$Dhk8fwnes+f9vzOwgdALlA
<- That'spassword
, also had some issues setting up the server after the update but I got around it (locale changes)Yeah, sorry for the undocumented locale changes!
I've merged your request and I also did some changes, mainly the password doesn't get passed around to the database, and the fact that the game would yield different results messages for a "account not found" and a "wrong password" status, which doesn't sit right with good security practices.
Make sure to update the client as well.
No worries mate, anything I do on the server side or client side is more "proof of concept" then anything since I'm not familiar with cpp in the least so I just puzzle logic together, any improvements to what I do are appreciated.
Any stuff you'd want added or modified that I can play around with?