views:

215

answers:

3

Can anyone tell me where can I find a Perl program which decrypts a password and then encrypts it using the blowfish algorithm? I found one but it is in Java, but I don't know much about that language. =(

anyway.. thanks for those who answered, esp to Konstantinos? hmm.

+6  A: 

The language is called Perl, not PERL, and the first port of call for looking to do almost anything with it is the CPAN, which has lots of modules for dealing with Blowfish.

David Dorward
+1  A: 

Password "encryption" is typically implemented via hashing, which means that it's not reversible.

For the second part of your question, you can search CPAN for Blowfish modules.

Michael Carman