Howdy list, 

I made a script that use Crypt::OpenPGP to 
encrypt/decrypt some data.

I was thinking about testing out some other Encryption 
modules to see if any worked faster/ were more portable.
Since I'm not an encyption master I thoguht I'd ask for 
input from any experienced in the matter.

What I need is to accomplish this:

use Crypt::OpenPGP;
my $pgp = Crypt::OpenPGP->new;

my $ciphertext = $pgp->encrypt(
                Data => $string,
                Passphrase => $pass,
                Armour => 1
        );

my $plaintext = $pgp->decrypt(
                   Data       => $ciphertext,
                   Passphrase => $pass
             );

I am looking to accomplish the above:
        - running as quickly as possible
        - as portably as possible

I'd like to get a few ideas so I can install any needed modules 
and benchmark them but there are so many to choose from!

Any thoughts anyone?

TIA

Dan

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to