views:

18

answers:

1

Hi,

This is karthik,

I would like to implement aes encryption method on my iphone application . Already I have done it with some problem . I had encrypted the string successfully and I can send it to java server to decrypt it. But they cannot decrypt it to original string . As the same , They encrypt some data and have send it to me. Me too cannot decrypt it. Can anyone please suggest me? to solve this problem. I am trying to fix this issue for last 4 days. So please help me...

 Is there any tutorial to implement aes both on java and iphone?
+1  A: 

On the iPhone, you have OpenSSL available. You can google for various examples on how to do AES with it, like this one.

DarkDust