nicowernli
nicowernli

Reputation: 3348

Secure place to save access tokens?

I'm developing a client as a UWP. I can handle the oauth login without problems but I'm not really sure where should i save the oauth access_token for the users. Is the ApplicationData.LocalSettings a secure place to store this type of information?

Upvotes: 8

Views: 5769

Answers (1)

Rob Caplan - MSFT
Rob Caplan - MSFT

Reputation: 21909

The Windows Runtime provides the PasswordVault class to securely store credentials.

https://msdn.microsoft.com/en-us/library/windows/apps/windows.security.credentials.passwordvault.aspx

Upvotes: 7

Related Questions