Question
One of the main challenges to use a security key algorithm such as RC4 is the key exchange. Very often the key exchange must be
One of the main challenges to use a security key algorithm such as RC4 is the key exchange. Very often the key exchange must be done offline; otherwise you run the risk of the key being eavesdropped by a hacker.
Now implement Diffie-Hellman Key Exchange Algorithm in C++. A user will be asked to enter two prime numbers g and p, in the range 4000 to 10000 (https://primes.utm.edu/lists/small/10000.txt). Then user A enters a number a, and user B enters a number b, both in the range of 40 to 100. Now compute the security keys generated by user A and user B respectively, and verify they are the same. Be aware that if you use the pow() function or something similar, your calculation will most likely go out of bounds. As any good program would do, your program should verify the inputs.
Submit the following:
1. Source code
2. A screen shot showing the keys generated by A and B.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started