Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

capacitor-plugin-nitgen-fingerprint

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

capacitor-plugin-nitgen-fingerprint

Capacitor plugin for Nitgen fingerprint devices.

  • 0.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3
decreased by-72.73%
Maintainers
1
Weekly downloads
 
Created
Source

capacitor-plugin-nitgen-fingerprint

Capacitor plugin for Nitgen fingerprint devices.

Install

npm install capacitor-plugin-nitgen-fingerprint
npx cap sync

API

  • init(...)
  • connect()
  • disconnect()
  • capture(...)
  • match(...)
  • addListener('onConnected', ...)
  • addListener('onDisconnected', ...)
  • Interfaces
  • Type Aliases
  • Enums

init(...)

init(options: InitOptions & CaptureOptions) => Promise<void>

Init the plugin with options

ParamType
optionsInitOptions & CaptureOptions

Since: 1.0.0


connect()

connect() => Promise<void>

Connect to fingerprint device

Since: 1.0.0


disconnect()

disconnect() => Promise<void>

Disconnect from fingerprint device

Since: 1.0.0


capture(...)

capture(options?: CaptureOptions | undefined) => Promise<CaptureResult>

Capture a fingerprint

ParamType
optionsCaptureOptions

Returns: Promise<CaptureResult>

Since: 1.0.0


match(...)

match(options: MatchOptions & CaptureOptions) => Promise<MatchResult>

Capture a fingerprint and match with a given text FIR

ParamType
optionsMatchOptions & CaptureOptions

Returns: Promise<MatchResult>

Since: 1.0.0


addListener('onConnected', ...)

addListener(eventName: 'onConnected', listenerFunc: OnConnectedListener) => Promise<PluginListenerHandle> & PluginListenerHandle

Listen for connected event

ParamType
eventName'onConnected'
listenerFuncOnConnectedListener

Returns: Promise<PluginListenerHandle> & PluginListenerHandle

Since: 1.0.0


addListener('onDisconnected', ...)

addListener(eventName: 'onDisconnected', listenerFunc: () => void) => Promise<PluginListenerHandle> & PluginListenerHandle

Listen for disconnected event

ParamType
eventName'onDisconnected'
listenerFunc() => void

Returns: Promise<PluginListenerHandle> & PluginListenerHandle

Since: 1.0.0


Interfaces

InitOptions
PropTypeDescriptionDefaultSince
serialstringSerial code1.0.0
securitySecurityLevelSecurity levelNORMAL1.0.0
CaptureOptions
PropTypeDescriptionDefaultSince
timeoutnumberCapture timeout in milliseconds100001.0.0
imageFormatImageFormatFingerprint image formatPNG1.0.0
imageQualitynumberFingerprint image quality (0-100) Only applied for JPEG501.0.0
CaptureResult
PropTypeDescriptionSince
textFIRstringCaptured text FIR1.0.0
imagestringbase64 encoded fingerprint image1.0.0
MatchResult
PropTypeDescriptionSince
isMatchbooleanIf captured fingerprint matched text FIR1.0.0
textFIRstringCaptured text FIR1.0.0
imagestringbase64 encoded fingerprint image1.0.0
MatchOptions
PropTypeDescriptionSince
textFIRstringA stored text FIR to match with captured fingerprint1.0.0
PluginListenerHandle
PropType
remove() => Promise<void>
OnConnectedListenerEvent
PropTypeDescriptionSince
openedDeviceIDnumberDevice ID1.0.0

Type Aliases

ImageFormat

'PNG' | 'JPEG'

OnConnectedListener

(event: OnConnectedListenerEvent): void

Enums

SecurityLevel
MembersValue
LOWEST1
LOWER2
LOW3
BELOW_NORMAL4
NORMAL5
ABOVE_NORMAL6
HIGH7
HIGHER8
HIGHEST9

Keywords

FAQs

Package last updated on 07 Aug 2021

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

  • 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