An idea for a password system?
You could always use a random seed system to make a password.
This code could be used to create and store a password:
Input("New Password: ",A
A->rand
rand->B
In which A would be a password, and B would be the randomized number based on it.
So the password 1234 would produce .0219931723, which could then be stored somewhere. This way, nobody can just read through variables to find the password.
Using this method, you could check to see if the password is correct with the code:
Input("Enter Password: ",A
If A=B
"Yay stuff happens
If A\=\B //Sorry, that's the not-equal sign
"Sad things happen