You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On Android, a new `CryptoObject` from `AndroidX.Biometric` is created with a key as a parameter. Then the data is encrypted and presented to the `BiometricPrompt` manager.
@@ -182,7 +182,7 @@ On iOS, the `SecKeyChain` is used to store a string linked to a key. The OS is i
182
182
This method decrypts and gets the data associated to the given key.
On Android, the method retrieves the shared preference encrypted data, then decrypts it with the secret as a parameter by presenting it to the `BiometricPrompt` manager.
@@ -194,7 +194,7 @@ On iOS, the method retrieves the encrypted data from the `SecKeyChain` with the
194
194
This method removes the ecrypted value from the platform secure storage.
195
195
196
196
```cs
197
-
biometryService.Remove("KeyName");
197
+
biometryService.Remove("Key");
198
198
```
199
199
200
200
On Android, the method removes the encrypted data from the shared preferences.
0 commit comments