rslite
rslite

Reputation: 84663

Fingerprint authentication in Android app wrapping a web page

I have a webpage that needs authentication which can be tedious to enter on mobile so I was thinking of creating a wrapper application that could login the user (only one - me) automatically with saved credentials. In order to protect the credentials I want to use the fingerprint API (I use a Samsung S5). However this is new stuff for me so I have few questions about the feasibility:

Upvotes: 1

Views: 3496

Answers (1)

Jiang YD
Jiang YD

Reputation: 3311

Is it possible to automatically log into a web page from an app wrapper?

yes

Could this work with a non-trusted certificate (I have to generate my own)

No in general, if you are meaning HTTPS certificate. but android webview with client certificate may help

Can I encrypt and use the fingerprint to decrypt the credentials so they are secure on the phone?

Yes. in pratice refer to http://android-developers.blogspot.com/2015/10/new-in-android-samples-authenticating.html

Upvotes: 2

Related Questions