Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Use System Passcode For Authentication

I cannot find an API that will allow me to tap into the password/pin/pattern the user has set up on an Android device for authentication in my app.

There is a Fingerprint Authentication API that I can use to ask Android to authenticate a user, but there is no passcode API to tap into the password/pin/pattern instead of fingerprint.

Is there a way to ask Android to authenticate in my app based upon the password/pin/pattern the user already has set up?

like image 933
D. Wall Avatar asked Aug 16 '17 16:08

D. Wall


Video Answer


1 Answers

If you are asking "how can I ask the system to re-authenticate the user?", on Android 5.0+, something like this should work:

if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.LOLLIPOP) {
    KeyguardManager km = (KeyguardManager) getSystemService(KEYGUARD_SERVICE);

    if (km.isKeyguardSecure()) {
        Intent authIntent = km.createConfirmDeviceCredentialIntent(getString(R.string.dialog_title_auth), getString(R.string.dialog_msg_auth));
        startActivityForResult(authIntent, INTENT_AUTHENTICATE);
    }
}

You can see that code in use (with slight modifications) in the andOTP project.

If you are asking "how can I get the user's password/pin/pattern for my own use?", that is not possible.

Use this to see if the user successfully authenticated:

// call back when password is correct  
@Override  
protected void onActivityResult(int requestCode, int resultCode, Intent data) {  
    if (requestCode == INTENT_AUTHENTICATE) {  
        if (resultCode == RESULT_OK) {  
            //do something you want when pass the security  
        }  
    }  
}
like image 57
CommonsWare Avatar answered Sep 21 '22 19:09

CommonsWare