Skip to content

Commit

Permalink
Merge pull request #9035 from unoplatform/dev/jela/password-vault-doc
Browse files Browse the repository at this point in the history
docs: Fix invalid tabs in password vault documentation
  • Loading branch information
jeromelaban authored Jun 14, 2022
2 parents 6e8688a + 930eac1 commit a5a2962
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion doc/articles/features/PasswordVault.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ There is no way to persist a secured data in a Web browser. Even if we generate
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 UWP does.
This means that the[`RetrievePassword`](https://docs.microsoft.com/en-us/uwp/api/windows.security.credentials.passwordcredential.retrievepassword#Windows_Security_Credentials_PasswordCredential_RetrievePassword) does nothing,
Expand All @@ -71,4 +73,4 @@ var vault = new Windows.Security.Credentials.PasswordVault();
var credential = vault.Retrieve("My App", userName);
credential.RetrievePassword();
var password = loginCredential.Password;
```
```

0 comments on commit a5a2962

Please sign in to comment.