Socket
Book a DemoInstallSign in
Socket

layers-capacitor-biometric-auth

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

layers-capacitor-biometric-auth

Complete

0.0.7
unpublished
latest
Source
npmnpm
Version published
Maintainers
1
Created
Source

Capacitor Biometric Auth

NPM Downloads Build Status

Installation

  • npm i capacitor-biometric-auth
  • yarn add capacitor-biometric-auth

Usage

import { Plugins } from "@capacitor/core";

const { BiometricAuth } = Plugins;

const available = await BiometricAuth.isAvailable()

if (available.has) {
  const authResult = await BiometricAuth.verify({...})
  if (authResult.verified) {
    // success authentication
  } else {
    // fail authentication
  }
} else {
  // biometric not available
}

Methods

verify(options)

Open biometric popup

optionvaluesdecription
reasonany stringPopup label
const result = await BiometricAuth.verify({reason: "Message ..."})

result

{
  verified: true // true if biometric auth was succes or false otherwise,
  status: {} // an object with errors matching biometric auth fails (on if verified === false)
}

status

errordescription
10The user failed to provide valid credentials
11Authentication was cancelled by application
12The context is invalid
13Not interactive
14Passcode is not set on the device
15Authentication was cancelled by the system
16The user did cancel
17The user chose to use the fallback

isAvailable()

Checks if biometric is enabled

const result = await BiometricAuth.isAvailable()

result

{
  has: true, // true if has biometric auth enabled, false otherwise
  status: {...} // an object with errors
}

status

errordescription
1Biometric not available
2Authentication could not continue because the user has been locked out of biometric authentication, due to failing authentication too many times.
3Authentication could not start because the user has not enrolled in biometric authentication.

Keywords

capacitor

FAQs

Package last updated on 18 Mar 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.