I have a WCF service, currently expecting byte[] as input parameter, but I want to send NSData from iOS. These types seem incompatible.
I've read a lot about this and most suggest that I convert the NSData to a base64 string.
Will this work for obscured data? I.e. my NSData consists of NSData that was passed through an AES256 Encryption algorithm. I don't think this data can be converted back to string successfully.