base64 encoding issues. very urgent.
All,
I implemented a small application that encrypts two pieces of information using DESede/CBC/PKCS5Padding.
Just before I send the encrypted data over the internet via a form post, I beas64 encode the encrypted data (which is in byte[]).
The client (implements decryption using .net) receives the info and when he tries to use the form post info, he see that my payload has %xx characters where ever there is a "/", "=" and "+". This is throwing major hammers in the works.
Is there any way to prevent the conversion of "/", "+", "=" to %xx characters from happening.

