views:

331

answers:

2

How to encrypt a data using symbian C++, so that i can decrypt the same data using java

Thanks Sunil

+1  A: 

You should be able to use any algorithm - it's just that the encoding will be written in C++ and the decoding in Java.

ChrisF
Sunil
I'm surprised at that really - sorry I couldn't offer anything more concrete.
ChrisF
A: 

you can use a common encryption algorithm like Base64. which is available in both Symbian and Java. In Symbian, TImCodecB64 can be used for Base64 encryption.

Sunieal
Base64 is not encryption, it's encoding. It takes seconds to "break" it.
myplacedk