
brian.hayes
User
Sep 14, 2000, 5:18 PM
Post #2 of 4
(7496 views)
|
I am assuming your talking about forms, so to answere that you would type something like. the type = password will do it. <BLOCKQUOTE><font size="1" face="Arial,Helvetica,sans serif">code:</font><HR> <input name="userpass" type="Password"> </pre><HR></BLOCKQUOTE> Your other question about encrytion come with perl. If you read your manual that installs with perl you will find multiple type of encrytion you can use. MD2, MD5, etc.... Digest::MD5 - Perl interface to the MD5 Algorithm <BLOCKQUOTE><font size="1" face="Arial,Helvetica,sans serif">code:</font><HR> # Functional style use Digest::MD5 qw(md5 md5_hex md5_base64); $digest = md5($data); $digest = md5_hex($data); $digest = md5_base64($data); # OO style use Digest::MD5; $ctx = Digest::MD5->new; $ctx->add($data); $ctx->addfile(*FILE); $digest = $ctx->digest; $digest = $ctx->hexdigest; $digest = $ctx->b64digest; </pre><HR></BLOCKQUOTE>
|