Socket
Socket
Sign inDemoInstall

@arcana/keystore

Package Overview
Dependencies
Maintainers
5
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@arcana/keystore

Base Library to make calls to Arcana DKG network


Version published
Maintainers
5
Created
Source

Introduction

Base Library to make calls to Arcana DKG network.

The network assumes that n/4 of nodes may be malicious, and n/2 + 1 of the nodes are required for key reconstruction. With these assumption, all fetch share calls are checked for consistency while enabling early exit on best case scenario where first n/2 + 1 responses are from honest nodes.

Installation

Using npm/yarn

npm install -S @arcana/keystore
yarn add @arcana/keystore
import { KeyReconstructor } from '@arcana/keystore';
const { KeyReconstructor } = window.arcana.keystore;

Usage

Initialization


const appID = "0x..." // Get this from arcana dashboard

const keystore = new KeyReconstructor({ appID, network: 'testnet' })

Methods

const verifier = "google" // twitter, github, twitch, discord, reddit
const id = "abc@google.com" // See examples how to get user id for each verifier
const idToken = "..."

const publicKey = keystore.getPublicKey({ verifier, id });
const privateKey = keystore.getPrivateKey({ verifier, id, idToken })

FAQs

Package last updated on 18 Nov 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