Re: password encrytion perl help

2003-07-01 Thread Janek Schleicher
Vemulakonda Uday Bhaskar wrote at Tue, 01 Jul 2003 09:11:00 +: > my code looks like this: > > #!/usr/bin/perl Missing use strict; use warnings; > $ftp=Net::FTP->new("xxx.xxx.xxx.xxx") else die "not connected"; or > $u=; > CHOMP $u; ^ cho

Re: password encrytion perl help

2003-07-01 Thread Sudarshan Raghavan
vemulakonda uday bhaskar wrote: hi all my code looks like this: #!/usr/bin/perl $ftp=Net::FTP->new("xxx.xxx.xxx.xxx") else die "not connected"; $u=; CHOMP $u; $p=; CHOMP $p; $ftp->login($u,$p) or die "login failed"; the code is working fine but the problem is when it asks password i need to give

password encrytion perl help

2003-07-01 Thread vemulakonda uday bhaskar
hi all my code looks like this: #!/usr/bin/perl $ftp=Net::FTP->new("xxx.xxx.xxx.xxx") else die "not connected"; $u=; CHOMP $u; $p=; CHOMP $p; $ftp->login($u,$p) or die "login failed"; the code is working fine but the problem is when it asks password i need to give it , and so is visible to all.