Win32::Printer???

2009-02-21 Thread Jon Bjornstad
In the activestate ppm repository at: http://ppm4.activestate.com/idx/W3...WU.html Win32::Printer is listed but it is not available for download. The build logs show that there were fatal errors during the build on 5.8 and 5.10. If I simply want to send a plain text file to the default

Pass Phrase known onky by the script

2009-02-21 Thread 田口 浩
Hello, I made a module generating 8 length, 1 password used at a CGI. My boss says it should save maintain the last 1000 password in a file to prevent the module to generate a duplicate password. Our customer hates the duplication of passwords, though my test says no duplication produced by less

Re: Pass Phrase known onky by the script

2009-02-21 Thread Mark Pryor
--- On Sat, 2/21/09, 田口 浩 h-tagu...@secom.co.jp wrote: From: 田口 浩 h-tagu...@secom.co.jp Subject: Pass Phrase known onky by the script To: perl-win32-users@listserv.ActiveState.com Date: Saturday, February 21, 2009, 6:10 PM Hello, I made a module generating 8 length, 1 password used at

RE: Pass Phrase known onky by the script

2009-02-21 Thread 田口 浩
then you can hash each password and return it as hex (md5_hex). Oh, I was trying to hash of the whole data 'join(\t,@pass)', and de_hash it at decryption time. No need to de_hash. Just hash a new check if hashed pass exists. Thanks, ___