1

I am making an application for work that has many user devices, and only a few administrator devices.

The application uses fingerprint authentication (and has a feature for pin entry if your finger is cut or otherwise somehow unrecognized). The application is for emergencies, so I need to be able to have administrators be able to authenticate themselves on user devices.

Is there a way to copy an administrator's fingerprint from his/her device and add that to a user's device? In the case of an emergency, the admin may not have their device, but only have access to a user's device.

  • This is almost definitely not possible via standard SDKs, and for good reason. – Raghav Sood May 31 '17 at 03:54
  • Not everything has to be used for bad intentions. The application I am building can and will save lives, so it is imperative that I am able to do this for ease of access. –  May 31 '17 at 04:20

1 Answers1

0

If you're using Android 6.0 fingerprint APIs, I'm afraid to tell you that technically is not possible. For security reasons, the fingerprint remains safely encrypted in the device, thus it's not possible to extract it.

A Google engineer, part of the team responsible for the Nexus 5X and Nexus 6P, replied the following, to an user in Reddit:

Fingerprint features are securely encrypted on the device, and processed in the secure Trustzone protected area of memory. The Android 6.0 fingerprint APIs do not provide any access to the fingerprint material to apps. Fingerprint features never leave the device and are not shared with Google (so for example if you setup a new phone, you need to re-enroll your fingers). If your phone is ever lost or stolen you can easily find, lock, and erase your phone using Android Device Manager.

Accordingly, it's not possible to duplicate fingerprints that you cannot extract from your application.

Rodrigo Ayala
  • 500
  • 5
  • 7
  • 1
    I found [this](https://stackoverflow.com/questions/41632225/android-where-and-how-securely-is-fingerprint-information-stored-in-a-device?rq=1) recently that helped me understand I little bit more about fp. – alvaroga91 Jun 02 '17 at 08:14