NoneAuthenticator
A device authenticator implementation that requires no user authentication.
This authenticator provides the most convenient but least secure authentication method. Keys are accessible without any user verification, making it suitable for scenarios where convenience is prioritized over security, such as development environments or applications with minimal security requirements.
The authenticator manages cryptographic keys through the Android KeyStore but does not require biometric authentication, PIN, or any other user verification to access them.
Properties
Functions
Link copied to clipboard
open suspend override fun authenticate(context: Context): Result<Pair<PrivateKey, BiometricPrompt.CryptoObject?>>
Authenticates and retrieves the private key without requiring user verification.
Link copied to clipboard
Deletes all cryptographic keys associated with this authenticator.