today i installed the new windows phone 8 sdk (w8phone sdk)... tried to include some of my base classes from windows 8 apps... same core they say... but whoops?
no Windows.Security.Cryptography
?
I used the SymmetricKeyAlgorithmProvider
for end-to-end encryption of serialized data with WCF Services.
(http://msdn.microsoft.com/en-us/library/windows/apps/xaml/br241537.aspx)
Seems using .NET Framework Encryption is quite proprietary to the platforms/devices.
Anyone some advises for same functionality on Windows 8 Phone?
Thanks.
EDIT/UPDATE
I solved the problem by porting http://www.bouncycastle.org/ to separate Windows 8 and Windows Phone 8 Libs and a slight changed version of the little BC Engine from here: Encrypt/Decrypt using Bouncy Castle in C#