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

noise-curve-tiny-secp

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

noise-curve-tiny-secp

JS `secp256k1` elliptic curve operations for use with [`noise-handshake`](https://github.com/chm-diederichs/noise-handshake)

  • 2.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

noise-curve-secp256k1

Js secp256k1 elliptic curve module for noise-handshake

Usage

import { secp256k1 } from 'noise-curve-secp256k1';
import Noise from 'noise-handshake';

const handshake = new Noise(pattern, initiator, staticKeyPair, {
  curve: secp256k1,
});

API

constants

DHLEN = 32 PKLEN = 64 SKLEN = 32 ALG = 'secp256k1'

generateKeyPair([privKey])

Generate a new keypair, optionally pass in a preexisting privKey. Return value is of the form:

{
  publicKey,
  secretKey
}
generateSeedKeyPair(seed)

Generate a new keypair from a seed. Return value is of the form:

{
  publicKey,
  secretKey
}
dh(pk, lsk)

Perform DH between pk and lsk and return the result.

Keywords

FAQs

Package last updated on 17 Sep 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