in reply to password checking?
The actual checking is probably quite trivial, but very dependent on how the credentials are stored. For example, if you have a mysql database table then a query along the lines of:
SELECT something from users where username=? and password=PASSWORD(?);
Followed by a count of the rows returned would do the job.
Other ways of storing the credentials would have different ways of accessing them, so this problem is very dependent on the specifics.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: password checking?
by superfrink (Curate) on Aug 16, 2005 at 05:14 UTC |