Currently we are validating passwords by calling await KeyringController.submitPassword(credentials.password) which is a heavy operation and is dramatically slowing down the UI. I see that base KeyringController has a verifyPassword method that is not exposed by this wrapper. We could expose this method so we can check passwords without running a full update.
Currently we are validating passwords by calling
await KeyringController.submitPassword(credentials.password)
which is a heavy operation and is dramatically slowing down the UI. I see that base KeyringController has a verifyPassword method that is not exposed by this wrapper. We could expose this method so we can check passwords without running a full update.