Socket
Socket
Sign inDemoInstall

diffie-hellman

Package Overview
Dependencies
5
Maintainers
5
Versions
21
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    diffie-hellman

pure js diffie-hellman


Version published
Weekly downloads
6.9M
decreased by-18.21%
Maintainers
5
Install size
167 kB
Created
Weekly downloads
 

Package description

What is diffie-hellman?

The diffie-hellman npm package is a utility for performing Diffie-Hellman key exchange, a method of securely exchanging cryptographic keys over a public channel. This package is particularly useful for creating secure communication channels between two parties without the need to exchange or reveal private keys directly.

What are diffie-hellman's main functionalities?

Generate Diffie-Hellman Keys

This code sample demonstrates how to generate Diffie-Hellman keys using the crypto module in Node.js, which includes the diffie-hellman package functionality. Alice and Bob each generate their keys independently.

const crypto = require('crypto');
const alice = crypto.createDiffieHellman(2048);
const aliceKeys = alice.generateKeys();
const bob = crypto.createDiffieHellman(alice.getPrime(), alice.getGenerator());
bob.generateKeys();

Compute Secret

This code snippet shows how Alice and Bob compute a shared secret using their respective private keys and the other party's public key. The resulting secrets (aliceSecret and bobSecret) should be the same and can be used to encrypt further communication.

const aliceSecret = alice.computeSecret(bob.getPublicKey(), null, 'hex');
const bobSecret = bob.computeSecret(alice.getPublicKey(), null, 'hex');

Other packages similar to diffie-hellman

Readme

Source

diffie hellman Build Status

pure js diffie-hellman, same api as node, most hard parts thanks to bn.js by @indutny. In node just returns an object with crypto.createDiffieHellman and crypto.getDiffieHellman in the browser returns a shim. To require the pure JavaScript one in node require('diffie-hellman/browser');;

Keywords

FAQs

Last updated on 11 Apr 2018

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc