Sha256: 48b98c54e3e1813d6372295c6c419ecd63a3c50446d4814afaf27c605206464b

Contents?: true

Size: 1.65 KB

Versions: 179

Compression:

Stored size: 1.65 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.

## Running the tests

To run the tests run the command `go test` from within the exercise directory.

If the test suite contains benchmarks, you can run these with the `-bench`
flag:

    go test -bench .

Keep in mind that each reviewer will run benchmarks on a different machine, with
different specs, so the results from these benchmark tests may vary.

## Further information

For more detailed information about the Go track, including how to get help if
you're having trouble, please visit the exercism.io [Go language page](http://exercism.io/languages/go/about).

## 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

179 entries across 179 versions & 1 rubygems

Version Path
trackler-2.2.1.177 tracks/go/exercises/diffie-hellman/README.md
trackler-2.2.1.176 tracks/go/exercises/diffie-hellman/README.md
trackler-2.2.1.175 tracks/go/exercises/diffie-hellman/README.md
trackler-2.2.1.174 tracks/go/exercises/diffie-hellman/README.md
trackler-2.2.1.173 tracks/go/exercises/diffie-hellman/README.md
trackler-2.2.1.172 tracks/go/exercises/diffie-hellman/README.md
trackler-2.2.1.171 tracks/go/exercises/diffie-hellman/README.md
trackler-2.2.1.170 tracks/go/exercises/diffie-hellman/README.md
trackler-2.2.1.169 tracks/go/exercises/diffie-hellman/README.md
trackler-2.2.1.167 tracks/go/exercises/diffie-hellman/README.md
trackler-2.2.1.166 tracks/go/exercises/diffie-hellman/README.md
trackler-2.2.1.165 tracks/go/exercises/diffie-hellman/README.md
trackler-2.2.1.164 tracks/go/exercises/diffie-hellman/README.md
trackler-2.2.1.163 tracks/go/exercises/diffie-hellman/README.md
trackler-2.2.1.162 tracks/go/exercises/diffie-hellman/README.md
trackler-2.2.1.161 tracks/go/exercises/diffie-hellman/README.md
trackler-2.2.1.160 tracks/go/exercises/diffie-hellman/README.md
trackler-2.2.1.159 tracks/go/exercises/diffie-hellman/README.md
trackler-2.2.1.158 tracks/go/exercises/diffie-hellman/README.md
trackler-2.2.1.157 tracks/go/exercises/diffie-hellman/README.md