Reputation: 343
I'm developing an App which should have a Login, so the user has to authenticate itself every time he uses the app. The app should not require the user to have an connection to the network; the password is device/user-specific.
Is there a common way how to save the password?
Upvotes: 0
Views: 516
Reputation: 15296
Here are some links, which might be useful to you.
Best practice for saving sensitive data in Windows 8
Managing user info (Windows Store apps using C#/VB/C++ and XAML) - MSDN
Using PasswordVault to securely store passwords in WinRT
CryptoWinRT sample (This sample shows how to use the new Cryptography APIs.)
Upvotes: 1