Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get fingerprint image from android scanner in my application for biometric encryption approach [duplicate]

Android 6 fingerprint API prevent applications from getting a copy of the FingerPrint as mentioned bellow:

 The Android 6.0 fingerprint APIs do not provide any access to the 
 fingerprint material to apps.

However, my application requirements are:

1) Scan FingerPrint and get copy of it in my application. (to be used in generating encryption key.)

2) FingerPrint image should not be stored.

How can I reach my goal? any suggested fingerpring scanners/sdk ?

Thanks

like image 830
Haya aziz Avatar asked Oct 31 '22 13:10

Haya aziz


1 Answers

Android M or Samsung or iPhone APIs only allow to verify current user against user of device.

There's some fingerprint scanners compatible with Android Platform and with SDK for Android. These SDKs allow to get fingerprint image or template. Scanners are plugged on USB port so you can't charge tablet and use fingerprint scanner simultaneous. For instance:

  • http://www.dermalog.com/en/products_solutions/fingerprintscanner/
  • http://www.futronic-tech.com/product_fs80h.html
  • http://www.crossmatch.com/authentication-hardware/

There's also some devices with integrated fingerprint scanner and with SDK to get fingerprint image or template.

like image 86
LaurentY Avatar answered Nov 15 '22 05:11

LaurentY