Sha256: e0d7b289e1141c30413f54ac3bcab8f86b29286b570b18ed6a1e0bca64b901e4

Contents?: true

Size: 1.53 KB

Versions: 127

Compression:

Stored size: 1.53 KB

Contents

# Diffie Hellman

Diffie-Hellman key exchange.

Alice and Bob use Diffie-Hellman key exchange to share secrets.  They
start with prime numbers, pick private keys, generate and share public
keys, and then generate a shared secret key.

## Step 0

The test program supplies prime numbers p and g.

## Step 1

Alice picks a private key, a, greater than 1 and less than p.  Bob does
the same to pick a private key b.

## Step 2

Alice calculates a public key A.

    A = g**a mod p

Using the same p and g, Bob similarly calculates a public key B from his
private key b.

## Step 3

Alice and Bob exchange public keys.  Alice calculates secret key s.

    s = B**a mod p

Bob calculates

    s = A**b mod p

The calculations produce the same result!  Alice and Bob now share
secret s.

## Setup

Go through the setup instructions for ECMAScript to
install the necessary dependencies:

http://exercism.io/languages/ecmascript

## Requirements

Install assignment dependencies:

```bash
$ npm install
```

## Making the test suite pass

Execute the tests with:

```bash
$ npm test
```

In the test suites all tests but the first have been skipped.

Once you get a test passing, you can enable the next one by
changing `xtest` to `test`.


## Source

Wikipedia, 1024 bit key from www.cryptopp.com/wiki. [http://en.wikipedia.org/wiki/Diffie%E2%80%93Hellman_key_exchange](http://en.wikipedia.org/wiki/Diffie%E2%80%93Hellman_key_exchange)

## Submitting Incomplete Solutions
It's possible to submit an incomplete solution so you can see how others have completed the exercise.

Version data entries

127 entries across 127 versions & 1 rubygems

Version Path
trackler-2.2.1.180 tracks/ecmascript/exercises/diffie-hellman/README.md
trackler-2.2.1.179 tracks/ecmascript/exercises/diffie-hellman/README.md
trackler-2.2.1.178 tracks/ecmascript/exercises/diffie-hellman/README.md
trackler-2.2.1.177 tracks/ecmascript/exercises/diffie-hellman/README.md
trackler-2.2.1.176 tracks/ecmascript/exercises/diffie-hellman/README.md
trackler-2.2.1.175 tracks/ecmascript/exercises/diffie-hellman/README.md
trackler-2.2.1.174 tracks/ecmascript/exercises/diffie-hellman/README.md
trackler-2.2.1.173 tracks/ecmascript/exercises/diffie-hellman/README.md
trackler-2.2.1.172 tracks/ecmascript/exercises/diffie-hellman/README.md
trackler-2.2.1.171 tracks/ecmascript/exercises/diffie-hellman/README.md
trackler-2.2.1.170 tracks/ecmascript/exercises/diffie-hellman/README.md
trackler-2.2.1.169 tracks/ecmascript/exercises/diffie-hellman/README.md
trackler-2.2.1.167 tracks/ecmascript/exercises/diffie-hellman/README.md
trackler-2.2.1.166 tracks/ecmascript/exercises/diffie-hellman/README.md
trackler-2.2.1.165 tracks/ecmascript/exercises/diffie-hellman/README.md
trackler-2.2.1.164 tracks/ecmascript/exercises/diffie-hellman/README.md
trackler-2.2.1.163 tracks/ecmascript/exercises/diffie-hellman/README.md
trackler-2.2.1.162 tracks/ecmascript/exercises/diffie-hellman/README.md
trackler-2.2.1.161 tracks/ecmascript/exercises/diffie-hellman/README.md
trackler-2.2.1.160 tracks/ecmascript/exercises/diffie-hellman/README.md