Logins in Design Philosophy
|
|
I'm making a CGI application, but I don't want people to be forced to make a BYOND key to logon. I was wondering whats the best way to do this, I was thinking about doing this to keep passwords and usernames secure.
var/username var/password var/const/salt = "text" var/list/hashes proc IsValidLogin(username,password) if((md5(username+salt+password) in hashes) Welcome(username) else
|
|