[Perl-unix-users] Calling a cgi script from

2002-09-27 Thread Scott Anderson \(PayRight\)
I'm working on a small counter script that will allow me to count page hits without SSI. I call the following code using the tag with a source being the cgi script that will count for me. The problem I'm having is that it doesn't seem to run the script at all when called on page load and it doesn

Re: [Perl-unix-users] Blowfish encrypted passwords

2002-09-27 Thread Trevor Joerges
In order to decrypt the Blowfish encrypted data you will need the original encryption key. If you have this then the method to encrypt and decrypt, as taken from the module docs, is: use Crypt::Blowfish; my $cipher = new Crypt::Blowfish $key; my $ciphertext = $cipher->encrypt($plaintext);

[Perl-unix-users] Blowfish encrypted passwords

2002-09-27 Thread jehaande
Hiyas I've been meaning to write a perl script that lets me administer a user list, where the passwords are stored using the blowfish algorithm. Now, using regex's I'm able to retrieve all the relevant information, meaning the usernames, the passwords (encrypted of course) etc. Now, how do I che