Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates key-exchange/diffie-hellman-key-exchange.md #47

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion key-exchange/diffie-hellman-key-exchange.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

[**Diffie–Hellman Key Exchange**](https://en.wikipedia.org/wiki/Diffie–Hellman_key_exchange) \(DHKE\) is a cryptographic method to **securely exchange cryptographic keys** \(key agreement protocol\) over a public \(insecure\) channel in a way that overheard communication does not reveal the keys. The exchanged keys are used later for encrypted communication \(e.g. using a symmetric cipher like AES\).

**DHKE** was one of the first **public-key protocols**, which allows two parties to exchange data securely, so that is someone sniffs the communication between the parties, the information exchanged can be revealed.
**DHKE** was one of the first **public-key protocols**, which allows two parties to exchange data securely, so that if someone sniffs the communication between the parties, the information exchanged can not be revealed.

The Diffie–Hellman \(DH\) method is **anonymous key agreement scheme**: it allows two parties that have no prior knowledge of each other to jointly establish a **shared secret key over an insecure channel**.

Expand Down