Hi guys,
    Below is the code I have written using perl script. Please help me
to port it to crypto++ library

//encryption
my $cipher = Crypt::CBC->new(
                -cipher => "Crypt::Rijndael",
                -key    => $key,
                -header => 'salt',
                );
        $cipher->start( 'encrypting' );

//decryption
my $cipher = Crypt::CBC->new(
                -cipher => "Crypt::OpenSSL::AES",
                -key    => $key,
                -header => 'salt',
                );
        $cipher->start( 'decrypting' );

Thanks,
I'm able to get Crypt::Rijndael in crypto++ library but how to get
Crypt::OpenSSL::AES in crypto++

Thanks in advance


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the "Crypto++ Users" 
Google Group.
To unsubscribe, send an email to [EMAIL PROTECTED]
More information about Crypto++ and this group is available at 
http://www.cryptopp.com.
-~----------~----~----~----~------~----~------~--~---

Reply via email to