Skip to content

Commit

Permalink
Fix KQD typos
Browse files Browse the repository at this point in the history
  • Loading branch information
brunorijsman committed Nov 13, 2019
1 parent 6bac4bf commit f873e30
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -56,7 +56,7 @@ The report consists of multiple parts (if you are already familiar with classica

* Gives an idea of what Quantum Key Distribution (QKD) currently looks like in the real world. It introduces a few companies that already have commercially available quantum key management systems.

* Part 3: [**The ETSI KQD API**](doc/the-etsi-qkd-api.md):
* Part 3: [**The ETSI QKD API**](doc/the-etsi-qkd-api.md):

* Introduces a standard framework and standard [Application Programmers Interface (API) for Quantum Key Distribution (QKD)](https://www.etsi.org/deliver/etsi_gs/QKD/001_099/004/01.01.01_60/gs_qkd004v010101p.pdf) defined by the [European Telecommunications Standards Institute (ETSI)](https://www.etsi.org/).

Expand Down
2 changes: 1 addition & 1 deletion doc/implementing-qkd-in-openssl.md
Expand Up @@ -8,7 +8,7 @@ The work that we did to add [Quantum Key Distribution (QKD)](https://en.wikipedi

The challenge consists of two parts:

1. Add QKD support to OpenSSL by invoking the [ETSI KQD API](https://www.etsi.org/deliver/etsi_gs/QKD/001_099/004/01.01.01_60/gs_QKD004v010101p.pdf). Here OpenSSL becomes a consumer of the QKD API. The hackathon organizers had provided a mock implementation of the QKD API for testing purposes.
1. Add QKD support to OpenSSL by invoking the [ETSI QKD API](https://www.etsi.org/deliver/etsi_gs/QKD/001_099/004/01.01.01_60/gs_QKD004v010101p.pdf). Here OpenSSL becomes a consumer of the QKD API. The hackathon organizers had provided a mock implementation of the QKD API for testing purposes.

2. Implement a specific QKD protocol, namely [Bennett and Brassard 1984 (BB84)](https://en.wikipedia.org/wiki/BB84) , on top of the [SimulaQron](http://www.simulaqron.org/) quantum network simulator. Here the BB84 implementation becomes a provider of the QKD API.

Expand Down
Expand Up @@ -58,7 +58,7 @@ Despite these problems, it appears that post-quantum cryptography will a more fe

If we just introduce quantum key distribution on some point-to-point links (possibly with some repeaters in the middle) the architectural impact on the Internet could be limited. But if we want to move to a full-on quantum Internet where quantum routers create entangled Bell pairs between arbitrary end-points anywhere on the planet, we will have to rip and replace the entire Internet and replace it with new quantum router technology that is still very far away on the horizon.

## Quantum Key Distribution (KQD).
## Quantum Key Distribution (QKD).

The second approach to fixing broken network security is [Quantum Key Distribution (QKD)](https://en.wikipedia.org/wiki/Quantum_key_distribution).

Expand Down
4 changes: 2 additions & 2 deletions qkd_engine_common.h
Expand Up @@ -8,8 +8,8 @@
* See LICENSE for licensing information.
*/

#ifndef ETSI_KQD_COMMON_H
#define ETSI_KQD_COMMON_H
#ifndef ETSI_QKD_COMMON_H
#define ETSI_QKD_COMMON_H

#include "qkd_api.h"
#include <openssl/dh.h>
Expand Down

0 comments on commit f873e30

Please sign in to comment.