issues
search
deontologician
/
spaceship-build
Sci-fi spaceship engineering simulation
GNU Affero General Public License v3.0
5
stars
1
forks
source link
Develop user management strategy
#47
Open
xXxH3LIOSxXx
opened
10 years ago
xXxH3LIOSxXx
commented
10 years ago
How will new users register for on-line play?
What data will we store/ask for from the user?
Where will this data (if any of it) be visible to other players?
deontologician
commented
10 years ago
This is the basic authentication method many sites use:
Make a small web server that talks to the same database the game does
Use their email address as the login (they could select an in-game name, but the login should be globally unique)
I suggest using
PBKDF2
as described here:
http://etutorials.org/Programming/secure+programming/Chapter+8.+Authentication+and+Key+Exchange/8.11+Performing+Password-Based+Authentication+with+PBKDF2/