I wish to keep some data common between my Windows 8, Windows phone 8 and Android application.
The data is encrypted text being downloaded from the internet and decrypted on the device.
The problem however is that every time I try using the built-in classes for AES encryption they all produce different outputs on different devices. On Windows phone 8 I was using RijndaelManaged class but that is missing in WinRT. And the output given by a Windows phone 8 encrypted text would not be decrypted on WinRT or Android. Is there a common encryption/decryption method that would work for all three platforms?