JSPM

react-native-secure-authentication

1.0.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 67
  • Score
    100M100P100Q61888F
  • License ISC

React Native local authentication with touch id or passcode

Package Exports

  • react-native-secure-authentication
  • react-native-secure-authentication/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-native-secure-authentication) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

react-native-secure-authentication

As of now react-native-local-auth is not maintained and not working properly. So I forked the project and created this library which support authenticate users with Touch ID, with optional fallback to passcode (if TouchID is unavailable or not enrolled). Most of the code and documentation is originally from react-native-local-auth.

Why use this library

  1. Maintained Library
  2. Support autolinking
  3. Support Typescript

This project also contained typescript definitions.

Documentation

UI

If TouchID is supported and enrolled (in this gif, 1st touch fails, 2nd succeeds)

Touch ID

If TouchID is not supported or not enrolled, you can fallback to device passcode

fallback to passcode

Install

yarn add react-native-secure-authentication

Linking the Library (Auto Linking)

Everything is Autolinked in android. For IOS run npx pod-install.

Manual Linking IOS using Pods

Add following line in Podfile

pod 'SecureAuthentication', :path => "../node_modules/react-native-secure-authentication/"
npx react-native-link react-native-secure-authentication

Manual Linking Android

  1. Open up android/app/src/main/java/[...]/MainActivity.java
  • Add import dj.secure.authentication.SecureAuthenticationPackage; to the imports at the top of the file
  • Add new SecureAuthenticationPackage() to the list returned by the getPackages() method
  1. Append the following lines to android/settings.gradle:

    include ':react-native-secure-authentication'
    project(':react-native-secure-authentication').projectDir = new File(rootProject.projectDir,   '../node_modules/react-native-secure-authentication/android')
  2. Insert the following lines inside the dependencies block in android/app/build.gradle:

      implement project(':react-native-secure-authentication')

Usage

import SecureAuthentication, { AuthenticationErrors } from 'react-native-secure-authentication';

const MyComponent : FC () => {
    const _pressHandler = useCallback(() => {
          SecureAuthentication.authenticate({
              reason: 'this is a secure area, please authenticate yourself',
              fallbackToPasscode: true,    // fallback to passcode on cancel
              suppressEnterPassword: true // disallow Enter Password fallback
            })
            .then((success) => {
              alert('Authenticated Successfully')
            })
            .catch((error:AuthenticationErrors) => {
              alert('Authentication Failed', error.message)
            })
        },[])

        return (
          <View>
            ...
            <TouchableHighlight onPress={_pressHandler}>
              <Text>
                Authenticate with Touch ID / Passcode
              </Text>
            </TouchableHighlight>
          </View>
        )
    } 

hasTouchID()

check if Touch ID is supported. Returns a Promise object.

Errors

There are various reasons why authenticating with Touch ID or device passcode may fail. Whenever authentication fails, SecureAuthentication.authenticate will return an error code representing the reason.

Below is a list of error codes that can be returned:

Code Description
LAErrorAuthenticationFailed Authentication was not successful because the user failed to provide valid credentials.
LAErrorUserCancel Authentication was canceled by the user—for example, the user tapped Cancel in the dialog.
LAErrorUserFallback Authentication was canceled because the user tapped the fallback button (Enter Password).
LAErrorSystemCancel Authentication was canceled by system—for example, if another application came to foreground while the authentication dialog was up.
LAErrorPasscodeNotSet Authentication could not start because the passcode is not set on the device.
LAErrorTouchIDNotAvailable Authentication could not start because Touch ID is not available on the device
LAErrorTouchIDNotEnrolled Authentication could not start because Touch ID has no enrolled fingers.
RCTTouchIDUnknownError Could not authenticate for an unknown reason.
RCTTouchIDNotSupported Device does not support Touch ID.

More information on errors can be found in Apple's Documentation.

License

ISC. react-native-local-auth license also included.

ISC. react-native-touch-id license also included.