npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

will-dh

v1.0.1

Published

Diffie-Hellman Utilities

Downloads

27

Readme

will-dh

Diffie-Hellman Utilities

Installation

npm install will-dh

DH

DH class implement for handle diffie-hellman algorithm

Usage

import { DH } from "will-dh";

async function testDH() {
    let alice = new DH();
    await alice.init();

    let bob = new DH();
    await bob.init();
    bob.computePublicKey();

    //using the same prime & generator 
    alice.prime = bob.prime;
    alice.generator = bob.generator;
    //exchange public key
    alice.otherPublicKey = bob.publicKey;
    alice.compute();
    console.log("alice",alice);

    //exchange public key
    bob.otherPublicKey = alice.publicKey;
    bob.computeSharedKey();
    console.log("bob",bob);

    let amsg = "hello bob";

    let encamsg = alice.encrypt(amsg);
    console.log("alice: msg =",amsg);
    console.log("alice.encrypt: msg =",encamsg);
    console.log("alice.decrypt: msg =",alice.decrypt(encamsg));

    let decamsg = bob.decrypt(encamsg);
    console.log("bob.decrypt: alice msg =",decamsg);

    let bmsg = "Hi alice";
    let encbmsg = bob.encrypt(bmsg);
    console.log("bob: msg =",bmsg);
    console.log("bob.encrypt: msg =",encbmsg);
    console.log("bob.decrypt: msg =",bob.decrypt(encbmsg));

    let decbmsg = alice.decrypt(encbmsg);
    console.log("alice.decrypt: bob msg =",decbmsg);

}

DH attributes

//prime number of BigInterger
prime: '94458672269377221277610474615446873905476334768963771230807244630173242881841',
//generator for cyclic groups
generator: '1531',
//this is private key
privateKey: '26582905923107066001337478380460780759086336660259788163257456672805955270421',
//this is public key for exchanged
publicKey: '12625180956055143834488162446739091054997655188134515970201628248799161883148',
//this is shared key
sharedKey: '24836578469540121857308390695759879176440969040909857766543092812754760939849',
//and other public key exchanged
otherPublicKey: '7628171798251456620733591161511116487866959607998138493347188246187154049907'