in reply to Decrypting with OpenSSL
On the other hand, this would require either calling out to the /whatever/bin/openssl command, or using the OpenCA::OpenSSL module, which does pretty much the same thing. (if it even supports the "enc" function)
The Crypt::Blowfish_PP perl module would seem to be a simpler option if you are already processing the cgi request in perl.
From the docs:
That's pretty lucid for your needs, eh ?$blowfish=new Crypt::Blowfish_PP($key); $plaintextBlock=$blowfish->decrypt($ciphertextBlock);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Decrypting with OpenSSL
by Sifmole (Chaplain) on Jan 20, 2001 at 02:47 UTC |