New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

cordova-plugin-fingerprint-aio

Package Overview
Dependencies
Maintainers
1
Versions
68
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cordova-plugin-fingerprint-aio - npm Package Compare versions

Comparing version 0.1.5 to 0.2.0

tests/plugin.xml

4

package.json
{
"name": "cordova-plugin-fingerprint-aio",
"version": "0.1.5",
"version": "0.2.0",
"description": "Cordova plugin to use fingerprint authentication on Android and iOS",

@@ -34,4 +34,4 @@ "cordova": {

"devDependencies": {
"cordova-paramedic": "*"
"jasmine": "*"
}
}
# Cordova Plugin Fingerprint All-In-One
## **A**ndroid and **IO**s
[![npm version](https://badge.fury.io/js/cordova-plugin-fingerprint-aio.svg)](https://badge.fury.io/js/cordova-plugin-fingerprint-aio)
[![GitHub version](https://badge.fury.io/gh/niklasmerz%2Fcordova-plugin-fingerprint-aio.svg)](https://badge.fury.io/gh/niklasmerz%2Fcordova-plugin-fingerprint-aio)
[![CircleCI](https://circleci.com/gh/NiklasMerz/cordova-plugin-fingerprint-aio.svg?style=shield)](https://circleci.com/gh/NiklasMerz/cordova-plugin-fingerprint-aio)

@@ -10,2 +12,11 @@ This plugin is my attempt to provide a single interface for accessing fingerprint hardware on both Android 6+ and iOS.

## Disclaimer
This is just an simpler implementation of the original plugins. At the moment the API could change every day and the plugin build could crash or have secutity issues. If you use fingerprint authentication in production use the plugins below.
## Thanks to the authors of the original fingerprint plugins:
https://github.com/mjwheatley/cordova-plugin-android-fingerprint-auth
https://github.com/EddyVerbruggen/cordova-plugin-touch-id
## Work in Progress

@@ -20,10 +31,4 @@ Use with caution at the moment. Still under development..

## Thanks to the authors of the original fingerprint plugins:
https://github.com/mjwheatley/cordova-plugin-android-fingerprint-auth
https://github.com/EddyVerbruggen/cordova-plugin-touch-id
## How to use
For now refer to my demo app: https://github.com/NiklasMerz/fingerprint-aio-demo

@@ -24,37 +24,3 @@ function Fingerprint() {

//TODO Android
Fingerprint.prototype.didFingerprintDatabaseChange = function (successCallback, errorCallback) {
cordova.exec(
successCallback,
errorCallback,
"Fingerprint",
"didFingerprintDatabaseChange",
[]
);
};
//TODO Android
Fingerprint.prototype.verifyFingerprintWithCustomPasswordFallback = function (message, successCallback, errorCallback) {
cordova.exec(
successCallback,
errorCallback,
"Fingerprint",
"verifyFingerprintWithCustomPasswordFallback",
[message]
);
};
//TODO Android
Fingerprint.prototype.verifyFingerprintWithCustomPasswordFallbackAndEnterPasswordLabel = function (message, enterPasswordLabel, successCallback, errorCallback) {
cordova.exec(
successCallback,
errorCallback,
"Fingerprint",
"verifyFingerprintWithCustomPasswordFallbackAndEnterPasswordLabel",
[message, enterPasswordLabel]
);
};
Fingerprint = new Fingerprint();
module.exports = Fingerprint;

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc