in reply to Reading a password from the user

The user, while entering, should not be able to see the password...or atleast see *s
<input type="password" name="password" size="20">
Make a form, using the above, to send the password to your script. The user will see ****** when they type, but the script will recieve the password in the same way as any other text. If you have the password encrypted in a file, you then crypt the password sent to the script, and then compare the two crypted passwords. I don't see why you need special modules to do this... could you explain some more?

Replies are listed 'Best First'.
Re: Re: Reading a password from the user
by dga (Hermit) on Apr 04, 2003 at 16:51 UTC

    The explanation is that this case is getting the password from a command line and not via a web form.