I encrypt a string in c# (RijndaelManaged), which returns a byte array.
I want to save that byte array to a database in order to get it decrypted later in the android device.
I have tried converting it to base64 in c#, But as I understand android doesnt support base64 decoding before API8.
Is there another way saving the byte array in the DB, so I can later fetch it and decrypt it on android?
10X