1.2.2 • Published 11 days ago

@near-js/biometric-ed25519 v1.2.2

Weekly downloads
-
License
ISC
Repository
-
Last release
11 days ago

NEAR Web 3 Authentication

@near-js/biometric-ed25519 package contains interfaces to assist the implementation of biometric driven web3 authentication.

Installation and Usage

The easiest way to use NEAR Web 3 Authentication is to install the biometric-ed25519 package from the NPM registry.

# Using Yarn

yarn add @near-js/biometric-ed25519 

  

# Using NPM.

npm install @near-js/biometric-ed25519 

Then in your dApp:

import { createKey, getKeys } from  "@near-js/biometric-ed25519";

// To register with userName
const key = await createKey(userName);


// To retrieve keys with userName
const keys = await getKeys(userName);

As the nature of Elliptic Curve crypto, getKeys return with two possible public key pairs. In order to select the correct public key pair out of two pairs, it is essential to implement a logic to preserve the public key pair created from createKey and retrieve them after calling getKeys and find the right one among the two.

Use Case

  1. Check if given user name exist against RPC endpoint.
  2. User creates an authentication to browser using biometric finger print with desire user name. (by calling createKey)
  3. Use public key from step 2 to create a near account with given user name.
  4. When user come back to authenticate, use getKeys to retrieve two possible public key pairs.
  5. Create near connection with user name
  6. Retrieve list of access keys and check if one of public key pairs exist in the list.
  7. If exist one is found, it should be used to make the authentication.

License

This repository is distributed under the terms of both the MIT license and the Apache License (Version 2.0). See LICENSE-MIT and LICENSE-APACHE for details.

1.2.2

11 days ago

1.2.1

18 days ago

1.2.0

25 days ago

1.1.2

2 months ago

1.1.1

2 months ago

1.1.0

4 months ago

1.0.1

5 months ago

1.0.0

5 months ago

0.0.11

1 year ago

0.1.0

12 months ago

0.3.0

11 months ago

0.2.0

11 months ago

0.0.10

1 year ago

0.0.9

1 year ago

0.0.8

1 year ago

0.0.7

1 year ago

0.0.6

1 year ago

0.0.5

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago