Click here to Skip to main content
Licence CPOL
First Posted 8 Jan 2004
Views 163,199
Downloads 4,577
Bookmarked 47 times

Diffie-Hellman Key Exchange Example

By | 14 Nov 2008 | Article
An example of how an encryption key can be shared by two users using the Diffie-Hellman key exchange approach.

Introduction

It's often required that a message be encrypted between two parties for secure communication. There are plenty of algorithms out there for encryption that are very secure, but their weakness lies in transporting the encryption key. The Diffie-Hellman key exchange protocol allows people to exchange keys in a manner that does not allow an eavesdropper to calculate the key in a fast manner.

This code demonstrates the use of this type of key exchange.

How to Use the Demo Project

To demonstrate the use of the key exchange, run two copies of the demo application. Set one to be the sender and the other to be a receiver.

The sender should generate the public keys, and the sender's interim key. Paste these values into the appropriate text boxes in the receiver application. The receiver should then click to generate his interim key, and copy this key into the "receiver's interim key" textbox on the sender application. Both applications should then be able to generate the same key by clicking "Generate Key".

Using the Source Code

The DiffieHellman class is simple to use and should be integrated in the following manner:

Make an instance of the class - (i.e. CDiffieHellman *DH = new CDiffieHellman;)

The sender application then does the following:

__int64 n = 0;
__int64 g = 0;
__int64 SInterim = 0;
__int64 RInterim = 0;
__int64 key = 0; 

DH->CreateKeys(g,n);
DH->CreateSenderInterKey(SInterim);

//The sender now sends (n, g, and SInterim) to the receiving application
//This can be done unencrypted because they are public keys
//Now we wait until the reciever send us their interim key lets say RInterim

DH->CreateSenderEncryptionKey(key,RInterim);
//The shared encryption key is now the value of 'key'

The receiving application does the following:

__int64 n = 0;
__int64 g = 0;
__int64 SInterim = 0;
__int64 RInterim = 0;
__int64 key = 0;

//Wait for the values of (n,g, and SInterim) to be sent here

DH->CreateRecipientInterKey(RInterim);

//Now send the RInterim key to the sender application

DH->CreateRecipientEncryptionKey(key,SInterim);
//The shared encryption key is now the value of 'key'

Extra Functions

There are some private member functions of the CDiffieHellman class that you may find useful, and please feel free to use them.

  • The GeneratePrime() function generates a large prime number.
  • The MillerRabin and IsItPrime functions can be used in conjunction to test primality.
  • The XtoYmodN is a function to raise x to the power of y in modulus n. Even though it sounds impossible for a computer to work out, say 150 million to the power of 150 million, this can be done in modulus n by using the power chaining method.

Further Help

Should you require any additional help, please do not hesitate to contact me. I would be interested in hearing your comments, suggestions and any questions.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Griffter UK

Software Developer (Senior)

United Kingdom United Kingdom

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Questionhow to run Pinmembermohdamirr6:58 12 Feb '12  
GeneralInformation about Diffie hellman Pinmembersudhakatr21:54 2 Feb '10  
GeneralRe: Information about Diffie hellman PinmemberGriffter UK22:00 2 Feb '10  
Generalerror setting up the demo Pinmemberswati chaudhari17:23 25 Oct '09  
GeneralRe: error setting up the demo PinmemberSnehlata Shaw9:16 17 Nov '09  
GeneralRe: error setting up the demo PinmemberGriffter UK22:54 17 Nov '09  
GeneralLicense of this code PinmemberJonh Wendell3:35 13 Nov '08  
GeneralRe: License of this code PinmemberGriffter UK5:32 13 Nov '08  
QuestionErrors Pinmemberzeeshan5122:14 14 Oct '08  
AnswerRe: Errors PinmemberGriffter UK5:16 13 Nov '08  
Generalminor changes PinmemberMember 312193110:37 8 Oct '08  
GeneralCompile on linux PinmemberFilipe Niero Felisbino8:33 2 Jun '08  
GeneralRe: Compile on linux PinmemberMrLeeGriffiths23:21 2 Jun '08  
QuestionProblem compiling Pinmemberwygno217:58 9 Apr '07  
AnswerRe: Problem compiling PinmemberMrLeeGriffiths22:51 9 Apr '07  
QuestionEnquiry Pinmemberwygno20:46 8 Apr '07  
AnswerRe: Enquiry PinmemberMrLeeGriffiths22:49 9 Apr '07  
GeneralDiffie Hellman Key exchange PinmemberNaeem Qazi9:44 21 Nov '06  
Hello
 
My concept on diffie key exchange is not clear. If any one has diffie hellman code. Please send me simple diffie hellman code. I really need it?
 
Regards
Muhammad Naeem
 
Naeem Qazi

GeneralRe: Diffie Hellman Key exchange PinmemberGarth J Lancaster10:23 21 Nov '06  
GeneralRe: Diffie Hellman Key exchange PinmemberNaeem Qazi23:29 21 Nov '06  
GeneralRe: Diffie Hellman Key exchange PinmemberHashbullet1:09 30 Mar '07  
QuestionDiffie Hellman Key exchange Pinmembergokikrishnan2:45 26 Apr '07  
GeneralGUID problem FIXED PinmemberMrLeeGriffiths6:23 6 Jul '06  
GeneralRe: GUID problem FIXED Pinmemberqaziejaz22:36 8 Oct '07  
GeneralMagetting errors coz of GUID Pinsussvirgo_aquarian15:44 14 Oct '05  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120529.1 | Last Updated 14 Nov 2008
Article Copyright 2004 by Griffter UK
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid