Thank you jcsnider for explanation of encryption of password mysql.
I managed to create the login logic for my Node.JS web application.
Now I'm trying to figure out the sign up logic.
How is the Id for new accounts produced? Is there any formula?
I can see that pattern is 8 characters + dash + 4 characters + dash + 4 characters + dash + 4 characters + dash + 12 characters = 36 characters
02a7eeee-1690-4655-80df-0e85997b39ce
08d68361-e3f6-7d0e-ec60-a7f51dcc60c5
25d7cd34-ccb2-4940-a1ff-e0de09b0ad46
904867dc-54ab-40c2-a5e5-7b5503168e85
ae77bfb0-e049-4bf3-b810-ffcdf59dae8f
If I do not follow this kind of pattern, would the new accounts be unaccessible in the game?
Link is my login logic (sorry for poor code, this is learn by doing)
login.logic.rtf