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#
Windows.Security.Cryptography
is a WinRT API. Windows Phone 8 still being mostly Silverlight uses the APIs from System.Security.Cryptography
, which does not include the SymmetricKeyAlgorithmProvider
.
You can still use the AesManaged
API on Windows Phone, which may, or may not, be enough for your purpose.
Windows.Security.Cryptography
is most likely just the x86 COM abstraction of the Microsoft cryptolib, which is the same as most of System.Security.Cryptography
on .NET 3.5-4.0
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With