Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anjildhamala/ionic-touch
A tiny effort to bring together Apple's TouchID and FaceID, Android's fingerprint Auth to save and retrieve two strings.
https://github.com/anjildhamala/ionic-touch
angular cryptojs faceid fingerprint ionic touchid
Last synced: 10 days ago
JSON representation
A tiny effort to bring together Apple's TouchID and FaceID, Android's fingerprint Auth to save and retrieve two strings.
- Host: GitHub
- URL: https://github.com/anjildhamala/ionic-touch
- Owner: anjildhamala
- Created: 2018-07-09T19:29:03.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-05-14T20:45:24.000Z (over 3 years ago)
- Last Synced: 2025-01-23T10:07:25.455Z (18 days ago)
- Topics: angular, cryptojs, faceid, fingerprint, ionic, touchid
- Language: TypeScript
- Homepage:
- Size: 17.5 MB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
Installation
```
npm install ionic-touch-module
```Additional Installations
Ionic Native & Cordova Plugins
```
Android Fingerprint https://ionicframework.com/docs/native/android-fingerprint-auth/
IOS Touch https://ionicframework.com/docs/native/touch-id/
Secure Storage https://ionicframework.com/docs/native/secure-storage/
```Usage
Add the TouchModule to your App Module's imports as in```
import {TouchModule} from 'ionic-touch-module';@NgModule()
export class AppModule {
imports: [TouchModule]
}
```Inject the TouchDriver in your service or component wherever you want to set up your touch logic.
```
constructor(private touchDriver: TouchDriver){}
```There are only 3 public methods to use from this library.
```
isAvailable(): Promise;
```
It returns a promise that resolves or rejects with a string that describes the availability.```
save(param1, param2): Promise;
```
This method takes two params to encrypt, save, retrieve and decrypt. For my specific purpose, I used it to save username and password. It could store any two params that may or may not have any relationship between each other.```
retrieve(): Promise;
```
It retrieves the saved two strings after an appropriate (TouchID, FaceID or pin) authentication.All the errors that are thrown from the module can be viewed in the source code under src/constants
Quick Test:
In your app.component.ts, inject TouchDriver and then copy paste the following:```
this.touchDriver.isAvailable()
.then(() => this.save('firstname', 'lastname'))
.then(() => this.retrieve())
.then((response) => {
//This will report as such: {user:'firstname', pass: 'lastname'}
console.log(response)
})
.catch((error) => { console.log(error) });
```One Final Piece:
You might need to include
```
"node_modules/ionic-touch-module"
```
in your
```
tsconfig "include"
```
as I wasn't quite sure how to make it typescript compatible.