Re: md5 function and storable module

2003-12-11 Thread Yannick Warnier
Le jeu 11/12/2003 à 16:19, Dan Anderson a écrit : > Caveat Coder! Perl can be set up so that the @INC doesn't point to the > core modules. I have seen this on shared hosting, where (I assume) the > sys admin decided to use it as a way to secure the box. I don't get it. What would be my interest

Re: md5 function

2003-12-11 Thread Jeff 'japhy' Pinyan
On Dec 11, Dan Anderson said: >Caveat Coder! Perl can be set up so that the @INC doesn't point to the >core modules. I have seen this on shared hosting, where (I assume) the >sys admin decided to use it as a way to secure the box. > >Of course, if you use something like this: > >BEGIN { > unsh

Re: md5 function

2003-12-11 Thread Dan Anderson
On Thu, 2003-12-11 at 05:51, Randy W. Sims wrote: > On 12/11/2003 5:41 AM, Yannick Warnier wrote: > > > Hi all, > > > > Is there an easy function to apply an md5 to a string? (sha1 could also > > do) > > I've looked at the perl base functions and didn't find it but I would > > like to avoid the u

Re: md5 function

2003-12-11 Thread Yannick Warnier
Le jeu 11/12/2003 à 11:51, Randy W. Sims a écrit : > On 12/11/2003 5:41 AM, Yannick Warnier wrote: > > Is there an easy function to apply an md5 to a string? (sha1 could also > > do) > > I've looked at the perl base functions and didn't find it but I would > > like to avoid the use of modules as m

Re: md5 function

2003-12-11 Thread Randy W. Sims
On 12/11/2003 5:41 AM, Yannick Warnier wrote: Hi all, Is there an easy function to apply an md5 to a string? (sha1 could also do) I've looked at the perl base functions and didn't find it but I would like to avoid the use of modules as much as I can. Thanks, Yannick Digest::MD5 & Digest::SHA1 B

Re: MD5 module

2003-06-25 Thread Janek Schleicher
Mario Kulka wrote at Wed, 25 Jun 2003 19:36:45 +: > Few days ago I sent a message about uploading modules but I just realized I > wasn't subscribed to the list. I just re-subscribed but I missed the replys; > is there a way to view the last messages posted to the list by date or > something

Re: MD5 module

2003-06-25 Thread Josimar Nunes de Oliveira
Try http://archive.develooper.com/beginners%40perl.org/dateindex.html Good luck! Josimar - Original Message - From: "mario kulka" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, June 25, 2003 4:36 PM Subject: MD5 module > Few days ago I sent a message about uploading mo

Re: md5 encryption.

2002-11-13 Thread dan
look up Crypt::PasswdMD5 on CPAN. I use the same module, no problems. dan "Christopher Burger" <[EMAIL PROTECTED]> wrote in message news:!~!UENERkVCMDkAAQACABgAQQZ01V1XZUy+ZLRflK79TcKA [EMAIL PROTECTED] Just a quick question. How can encrypt something with md5 encryption.

Re: md5 encryption.

2002-11-13 Thread Felix Geerinckx
on wo, 13 nov 2002 18:23:15 GMT, Christopher Burger wrote: > Just a quick question. How can encrypt something with md5 encryption. > I have passwords in a mysql database that are md5 encrypted. I was > wondering if I can use something like > > $password = md5($input{'password'}; > > to get th

RE: md5 encryption.

2002-11-13 Thread Timothy Johnson
perldoc Digest::MD5 This is the module you want to use. -Original Message- From: Christopher Burger [mailto:chris@;burgerfamily.net] Sent: Wednesday, November 13, 2002 10:23 AM To: [EMAIL PROTECTED] Subject: md5 encryption. Just a quick question. How can encrypt something with md5 enc

RE: MD5

2002-05-10 Thread Zacharyb
Thanks for the recommendations, I will use them. Zack -Original Message- From: Jeff 'japhy' Pinyan [mailto:[EMAIL PROTECTED]] Sent: Friday, May 10, 2002 1:58 PM To: Zachary Buckholz Cc: [EMAIL PROTECTED] Subject: Re: MD5 On May 10, Zachary Buckholz said: >#!/usr/bin/pe

Re: MD5

2002-05-10 Thread Jeff 'japhy' Pinyan
On May 10, Zachary Buckholz said: >#!/usr/bin/perl > >use LWP::Simple; >use Digest::MD5 md5_hex; > >for (@ARGV) { >$url = $_; >$content = get($url); >$digest = md5_hex($content); >print "$digest"; > >} > >exit(); No offense, but why so drawn out? Why do $url = $_, instead of for $url (@ARGV)

Re: MD5

2002-05-10 Thread Zachary Buckholz
This is what I use to check if a website has changed. It makes an MD5 string. #!/usr/bin/perl use LWP::Simple; use Digest::MD5 md5_hex; for (@ARGV) { $url = $_; $content = get($url); $digest = md5_hex($content); print "$digest"; } exit(); "Arran" <[EMAIL PROTECTED]> wrote in message 056401

Re: MD5

2002-05-10 Thread drieux
On Friday, May 10, 2002, at 04:33 , Arran wrote: > Is it possilble to MD5 multi lines so the output code is only 1 line? > > Should it do this any way? [..] you may wish to actually read preldoc Digest::MD5 you would be amazed at the illustrations in the documentation. ciao drieu

Re: MD5

2002-05-10 Thread Felix Geerinckx
on Fri, 10 May 2002 11:33:49 GMT, [EMAIL PROTECTED] (Arran) wrote: > Is it possilble to MD5 multi lines so the output code is only 1 > line? The output of the Digest::MD5 Perl module is not in lines, it's a 128- bit fingerprint, which can be rendered as binary, hex or base64. > WHat would the