Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

2 Answers

up vote 8 down vote accepted

As Lars said, AES is probably the best choice these days. For a Perl implementation, see Crypt::Rijndael

share|improve this answer

Use AES encryption with a common secret key.

Perl

C#

share|improve this answer
Sorry for unmarking your answer. Unfortunately I can't mark both of you with the correct answer - and Leon mentioned Crypt::Rijndael which helped. – David Christiansen Feb 23 '09 at 14:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.