Reputation: 5899
I am needing to encrypt using Perl and decrypt on .Net (C#). i.e. Perl encrypts a file and my .Net code decrypts the file (and even maybe validates integrity).
The problem is that I am not familiar with the encryption capabilities of Perl. Can anyone offer guidance on how best to approach this and what the possibilities are?
Thanks in advance!
DC
Upvotes: 1
Views: 1165
Reputation: 30245
As Lars said, AES is probably the best choice these days. For a Perl implementation, see Crypt::Rijndael
Upvotes: 8