I am trying to encrypt a string with Windows RT. Before it was possible to use the ProtectData in the system.security namespace but that does not exist in WinRT. I tried to use the following code but it does not work. public static async Task<string> EncryptSting(string data) { DataProtectionProvider provider [...] read more