I’m developing a application to Windows(C#), Iphone, Android and Iphone which will connect to a SOAP WebService, that store information on a Database.
I’m looking for a way to encrypt/decrypt the information between those platforms. Is there any cross platforms library?
As @Sascha says, AES is available on pretty much every platform. What you have to do is to make sure that everything else is the same on both platforms:
Whatever you chose do set things explicitly and don’t rely on defaults. Defaults can differ between systems and any difference will cause decryption to fail.