in reply to Encrypt in Perl and decrypt in JAVA

Remember to encode first the whole thing with base64 to be sure nothing get modified by the encoding/decoding in different languages
  • Comment on Re: Encrypt in Perl and decrypt in JAVA

Replies are listed 'Best First'.
Re^2: Encrypt in Perl and decrypt in JAVA
by ashok.g (Beadle) on Jan 05, 2011 at 11:46 UTC
    you mean to say that encode the string using base64, encrypt the encoded string, send , decrypt the string value and finally decode using base64?