Back to Uno

Credentials storage

doc/articles/features/PasswordVault.md

6.6-release-branch-cut3.7 KB
Original Source

Credentials storage

[!TIP] This article covers Uno-specific information for Windows.Security.Credentials.PasswordVault API. For a full description of the feature and instructions on using it, see PasswordVault Class.

  • The PasswordVault is a credentials manager that is persisted using a secured storage.
  • PasswordCredential is used to manipulate passwords in the vault.

Supported features

FeatureWindowsAndroidiOSWeb (WASM) Linux (Skia)Win 7 (Skia)Tizen
PasswordVault
PasswordCredentialPartialPartialPartial

PasswordVault

The PasswordVault is designed to be a safe place to store the user's credentials and tokens. It's backed by the hardware encryption mechanism of each platform, which provides a high level of security. However, the PasswordVault does not offer any memory security feature.

Below see the implementation information for each platform:

Android

The implementation uses the AndroidKeyStore which was introduced with API 18 (4.3). The KeyStore is used to generate a symmetric key which is then used to encrypt and decrypt a file persisted in the application directory. The key is managed by the KeyStore itself, which usually uses the hardware component to persist it. The key is not even accessible to the application.

For more information, see KeyStore.

iOS

The PasswordVault is directly stored in the iOS KeyChain which is the recommended way to store secrets on iOS devices. It's backed by hardware components that ensure that the data is almost impossible to retrieve if not granted.

For more information, see Storing Keys in the Keychain.

WebAssembly

There is no way to persist a secured data in a Web browser. Even if we generate a key to encrypt it, there is no safe place to store this key except by relying on server components, which broke the offline support (and Progressive Web App). So currently we preferred to not implement the PasswordVault. It will throw a NotSupportedException when you try to create a new instance.


PasswordCredential

This class is implemented, however, it never hides the password like the WinUI does. This means that the RetrievePassword method does nothing, but we recommend still using it in order to ensure cross-platform compatibility.

The Properties property is not implemented.

Sample

Storing a credential

csharp
var vault = new Windows.Security.Credentials.PasswordVault();
vault.Add(new Windows.Security.Credentials.PasswordCredential(
    "My App", username, password));

Retrieving a credential

csharp
var vault = new Windows.Security.Credentials.PasswordVault();
var credential = vault.Retrieve("My App", userName);
credential.RetrievePassword();
var password = credential.Password;