The OpenQKDNetwork project aims to provide a reference implementation of a 4-layer Quantum Key Distribution (QKD) network solution. Two sample applications are also provided to show case how an application can fetch and make use of the keys generated by a QKD network.
A very flexible layered approach has been adopted adhering to SOLID principles.
Microservice based architecture approach has been taken for software design and and implementation. One benefit of it is to have flexibility in production deployment.
Complied and tested successfully on Ubuntu 16.04 and Linux Mint 18.3 with Java 8. Changes will be needed for working in other environments (OS, Java version, etc.)
- Key Management System (KMS)
- Quantum Network Layer (QNL)
- Quantum Link Layer (QLL)
The fourth layer is the User (or Host) Layer, which belongs to the client of this system, and thus is beyond the scope of this project. QKD devices belong to the QLL, and may need a vendor specific glue layer of code in QLL to make it work with the other layers, before any international standard (e.g. ETSI, ITU-T) on the interface is widely adopted.
The KMS layer provides an application interface for fetching keys for symmetric cryptography. The details of how the key is used belong to the applications at the User layer.
KMS layer comprises the following microservices:
- Configuration service
- Registration Service
- Authorization Service
- KMS Service
- KMS API Gateway Service
- KMS QNL Service
QNL is the core compoent to extend the QKD technology from point-to-point to network level. It is the middle layer sandwiched between KMS layer and QLL (Quantum Link Layer). QNL provides key blocks to KMS after fetching it from QLL. Thus, it keeps the KMS layer QKD-technology-agnostic.
QNL currently consists of a single microservice:
- Key Routing Service
Key Routing Service contains a routing modual and key relaying modual, to react to the QKD network topology dynamics automatically and in a timely fashion. It not only pushes key blocks to KMS QNL service for KMS service, but also responds to pull requests for key blocks directly from KMS service.
Ideally, QLL consists of working QKD devices. A QLL simulator is provided in this project for situations where real QKD devices based links are unavailable, e.g., a planned satellite based QKD link between two nodes that are geographically far away.
Install following before proceeding. Make sure the executables are in system path.
- Java SDK 8 or later - http://www.oracle.com/technetwork/java/javase/downloads/index.html
- Maven - https://maven.apache.org/ or apt-get, if on Ubuntu
- screen - apt-get, if on Ubuntu
- git - apt-get, if on Ubuntu
On a Linux(Ubuntu) system apt-get can be used to install the programs.
- Curl
- jq
As this is a multi-layer distributed system, a few configuration files are used to facilitate the deployment for different nodes (or sites). They need to be carefully checked before running/testing the system.
Sample applications provided (qTox and tls-demo) require kms.conf to be present under the $HOME/.qkd directory.
This file can be manually created by puting following entries:
http://localhost:9992/uaa/oauth/token
http://localhost:8095/api/newkey
http://localhost:8095/api/getkey
C
Depending on where the KMS node is deployed, localhost
can be replaced by the IP address of
the host running the KMS layer.
The last line represents the KMS site id, which should be updated with the
correct site id. Above is just an example.
config-repo directory under $HOME/
contains all the configuration property
files required by all the microservices.
All the files reside under /qkd-net/kms/config-repo from where
they are copied to $HOME/config-repo
and checked in a local git repository.
This file is located under /qkd-net/kms/kms-service/src/main/resources/.
Explanation of site specific configuration properties used by KMS service:
//Number of keys per block
kms.keys.blocksize=1024
//Size of a key in bytes
kms.keys.bytesize=32
//Top level location for locating key blocks
kms.keys.dir=${HOME}/.qkd/kms/pools/
//IP address of the host where key routing service is running
qnl.ip=localhost
//Port on which key routing service is listening for key block requests
qnl.port=9292
This file is copied from /qkd-net/kms/kms-qnl-service/src/main/resources/ to $HOME/.qkd/kms/qnl from where it is used by KMS QNL service
Expalantion of configuration properties used by KMS QNL service:
//Port on which KMS QNL service is listening
port: 9393
//Size of a key in bytes
keyByteSz: 32
//Number of keys in a block. Key routing service provides KMS keys in blocks of size
keyBlockSz: 1024
//Location where KMS QNL service puts the pushed key blocks from key-routing service
poolLoc: kms/pools
This file is copied from /qkd-net/qnl/conf/ to
$HOME/.qkd/qnl
.
Topology information is contained in route.json
.
This information is populated manually for adjacent (neighboring) nodes, while the non-adjacent nodes will be discovered by the routing module. Adjacent nodes section contains the name of the node as key and it's IP address as the value.
Example route.json
file for a QNL Node "B":
{
"adjacent": {
"A": "192.168.1.101",
"C": "192.168.1.103"
},
"nonAdjacent": {
}
}
This file is copied from /qkd-net/qnl/conf/ to $HOME/.qkd/qnl. It contains various configuration parameters for the key routing service running as a network layer.
Brief explanation of various properties is given with the following example file:
//Base location for finding other paths and configuration files.
base: .qkd/qnl
//Route configuration file name.
routeConfigLoc: routes.json
//Location where QLL puts the key blocks for QNL to carve out key blocks for KMS.
qnlSiteKeyLoc: qll/keys
//Each site has an identifier uniquely identifying that site.
siteId: A
//Port on which key routing service is listening for key block requests.
port: 9292
//Size of a key in bytes.
keyBytesSz: 32
//Number of keys in a block. Key routing service provides KMS keys in blocks of size.
keyBlockSz: 1024
//Key routing service expects QLL to provide keys in blocks of qllBlockSz.
qllBlockSz: 4096
//IP address of the host running KMS QNL service.
kmsIP: localhost
//Port on which KMS QNL service is listening.
kmsPort: 9393
//One Time Key configuration.
OTPConfig:
//Same as above
keyBlockSz: 1024
//Location of the OTP key block.
keyLoc: otp/keys
For building the services,
cd <top level director>/qkd-net/kms
./scripts/build
For running the services
cd <top level director>/qkd-net/kms
./scripts/run
Open a browser, check http://localhost:8761/
Since OAuth is enabled, first access token is fetched:
curl -X POST -H"authorization:Basic aHRtbDU6cGFzc3dvcmQ=" -F"password=bot" -F"client_secret=password" -F"client=html5" -F"username=pwebb" -F"grant_type=password" -F"scope=openid" http://localhost:9992/uaa/oauth/token | jq
Sample output:
{
"access_token": "291a94d5-d624-4269-a2bb-07db62130bb3",
"token_type": "bearer",
"refresh_token": "99d4cdd9-641e-4290-ac4b-865b1d7068a6",
"expires_in": 43017,
"scope": "openid"
}
Once the access token is available, different endpoints can be accessed.
Assuming we have 2 sites setup with siteid as A and B repsectively. Some application from site A initiates a connection to an application on site B. Pre-shared key fetching can be simulated using the two calls below.
There are two REST API endpoints:
- New Key
Application at site B makes a newkey call.
Request
Method : POST URL path : /api/newkey URL params: siteid=[alhpanumeric] e.g. siteid=A
Response Format in JSON
{
index: Index of he key
hexKey: Key in hexadecimal format
blockId: Id of the block containing the key
}
e.g. request-response:
curl 'http://localhost:8095/api/newkey?siteid=A' -H"Authorization: Bearer 291a94d5-d624-4269-a2bb-07db62130bb3" | jq
{
"index": 28,
"hexKey": "a2e1ff3429ff841f5d469893b9c28cbcb586d55c8ecf98c83c704824e889fc43"
"blockId": "133ad3f8de6cc9da"
}
- Get Key
Application on site A makes the getkey call by using part of the response from the newkey call above.
NOTE: Since the sites are different hence OAuth tokens will be different, which means a new OAuth token like above is fetched first by the application on site A.
Request
Method : POST
URL path : /api/getkey
URL params: siteid=[alhpanumeric] e.g. siteid=B
blockid=
index=[Integer]
Response Format in JSON
{
index: Index of he key
hexKey: Key in hexadecimal format
blockId: Id of the block containing the key
}
e.g. request-response:
curl 'http://localhost:8095/api/getkey?siteid=B&index=1&blockid=' -H"Authorization: Bearer abcdef12-d624-4269-a2bb-07db62130bb3" | jq
{
"index": 1,
"hexKey": "4544a432fb045f4940e1e2fe005470e1a35d85ede55f78927ca80f46a0a4b045"
"blocId": "8a94dc22e761de8c5501addc05"
}
The Open QKD Network project is led by Professors Michele Mosca and Norbert Lutkenhaus at Institute for Quantum Computing (IQC) of the University of Waterloo.
Main contributors to this master branch so far include:
- Shravan Mishra (University of Waterloo)
- Kaiduan Xie (University of Waterloo)
- Dr. Xinhua Ling (University of Waterloo, evolutionQ Inc.)