Linked Questions

73 votes
9 answers
113k views

per my question Aes Encryption... missing an important piece, I have now learned that my assumption for creating a reversible encryption on a string was a bit off. I now have public static byte[...
user avatar
21 votes
5 answers
23k views

I've found plenty of examples how to do encryption in C#, and a couple for Android, but I'm particularly looking for a way to handle encrypting (using something like AES, TripleDES, etc.) from Android,...
Jess's user avatar
  • 43k
15 votes
6 answers
35k views

I am trying to encrypt some text using the AES algorithm on both the Android and IPhone platforms. My problem is, even using the same encryption/decryption algorithm (AES-128) and same fixed variables ...
UBA_MobileTeam's user avatar
9 votes
2 answers
7k views

Trying to encrypt sample data using AES128 algorithm with CBC and PKCS7 padding in Android and iOS, but results are different :( Android code: private static final byte[] KEY = { 0x01, 0x02, 0x03, ...
Tutankhamen's user avatar
  • 3,582
1 vote
4 answers
8k views

I am trying to implement AES128 algorithm on Android, and I have referenced this link for a basic AES implementation (http://java.sun.com/developer/technicalArticles/Security/AES/AES_v1.html). The ...
David's user avatar
  • 33
13 votes
1 answer
10k views

First thing first. Some time ago I needed a simple AES encryption in Android to encrypt a password and send it as a parameter for a .net web service where the password was decrypted. The following is ...
MBX's user avatar
  • 828
6 votes
3 answers
3k views

I'm trying to implement AES128 encryption on an Android. I've got a solution working on an iPhone with Objective C but having trouble porting it to Android. I've searched stackoverflow for a ...
Pabs's user avatar
  • 243
2 votes
1 answer
5k views

I am a newbie to this encryption. I am creating an application for both android and iOS in which i have to encrypt(using AES Encryprtion) a file at server side and decrypt at client side in both iOS ...
Mahes's user avatar
  • 131
3 votes
3 answers
6k views

We are creating same project in android and iphone. Now problem is that we need to send user information to aspx server using webservice in encrypted form. We both have implemented it but results are ...
Soniya's user avatar
  • 600
0 votes
1 answer
2k views

I am using the following simple encrypt and decrypt functions just to see that it works before using more complicated security features like padding and hashing. For some reason the returned clear ...
Simon's user avatar
  • 509
-4 votes
1 answer
245 views

We are creating same project in android and iPhone. Now the problem is that we need to send some information to php server using web service in aes encrypted form. We both have implemented it but ...
Feras Farhan's user avatar