RE: Perl Security

2003-07-22 Thread Dan Muey
> Jonathan wrote: > > Hi, > > > > I am insterested in creating a reusable module that allows my > > scripts to have pretty good security. I just don't know how > i would go > > about encrypting passwords. Please help > > I like to: use Crypt::OpenPGP; It's very handy at helping keep the

Re: Perl Security

2003-07-22 Thread Douglas Hunter
Jonathan wrote: Hi, I am insterested in creating a reusable module that allows my scripts to have pretty good security. I just don't know how i would go about encrypting passwords. Please help perldoc -q password has some advice for you (which includes looking at perldoc -f crypt). You sho

Re: Perl Security

2002-10-29 Thread dan
how is it possible to send a message 11 years in the future? dan "Jonathan" <[EMAIL PROTECTED]> wrote in message news:000801cde00e$979fab00$8693a7d0@;win2k... Hi, I am insterested in creating a reusable module that allows my scripts to have pretty good security. I just don't know how i would

Re: Perl Security

2001-06-19 Thread Jos Boumans
depending on what you want, you could use rot13 (or twice ;-) or actually go about hard core and md5 them you might want to take a look at the modules that come with the Digest bundle... (search.cpan.org to look for them) hope this helps, Jos Boumans jonathan wrote: > Hi, > > I am inster

Perl Security

2001-06-18 Thread jonathan
Hi, I am insterested in creating a reusable module that allows my scripts to have pretty good security. I just don't know how i would go about encrypting passwords. Please help Thanks