Jm6ix wrote:
I might need help understanding this. Face Id is using a password I have inputted before but can’t remember. I can’t find the password the Face ID is using. How come Face ID can see it but I can’t?
Face ID and Touch ID biometrics may not have an associated and accessible password.
An app does not need to use a password to authenticate. Not a password you can use to log in, that is.
Apple Mail commonly uses a version of that can’t-log-in-with-it password design, for instance:
Sign in to apps with your Apple Account using app-specific passwords - Apple Support
There are other ways to authenticate as well, and not using app-specific passwords.
Certificates, for instance:
https://www.networkworld.com/article/748294/infrastructure-management-simply-put-how-does-certificate-based-authentication-work.html
Or tokens:
https://www.okta.com/identity-101/what-is-token-based-authentication/
Or the app can potentially use some third-party authentication service akin to the Sign in with Apple service, or the Microsoft Entra service, and details here can vary:
If they’re still using passwords (and not passkeys, or certificates, or tokens, or whatever), most entities with credible security also won’t store cleartext passwords anywhere. They’ll get rid of it. If they do have some secret value they use for authentication akin to a password, they’ll store the “password” using a cryptographic hash. Not storing the password itself. To compare the secret, they’ll hash the provided candidate input value, and then compare that with the saved (hashed) value. That way, a server breach won’t directly expose users’ passwords, as folks can unfortunately re-use passwords.
Here are details on how apps can use biometrics:
Logging a User into Your App with Face ID or Touch ID | Apple Developer Documentation
Again, these sorts of access questions should be directed to your bank, if the bank doesn’t directly provide this doc somewhere. They might have a password available somewhere. Or some other mens of identification.