5. QKDLite for Secure File Transfer¶
QKDLite can be configured to expose a website for users to send files encrypted with QKD quantum secret keys over the internet. The key highlight is that the quantum secret keys are established securely over the QKD network and never transmitted over the internet. The workflow is generally as follows:
The sender uploads a file to QKDLite for Secure File Transfer website.
The file is encrypted with a (one-time use) QKD quantum encryption key in the QKDLite node.
The sender downloads the encrypted file from the website.
The sender emails the encrypted file over the internet to the receiver.
The receiver uploads the encrypted file to QKDLite for Secure File Transfer website.
The file is decrypted with a (one-time use) QKD quantum decryption key in the QKDLite node.
The receiver downloads the decrypted file from the website.
This section is a guide to setting up and enabling the QKDLite for Secure File Transfer website on the QKDLite node.
5.1. Enable QKDLite for Secure File Transfer Web Server¶
In this section, we will configure QKDLite for Secure File Transfer to start automatically in the background when QKDLite node is rebooted.
Configuration steps:
Start Express.js app
cd ~/node_file_transfer/src node app.js &
5.2. Verify QKDLite for Secure File Transfer Web Server¶
Once the web server has been configured to start, you can verify it is indeed running with the following steps.
Check the status of the service. Ensure that the service is active (running).
Check that QKDLite for Secure File Transfer responds to a HTTP request.
curl http://localhost:3000
You should see the following HTTP response.
<!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" type="text/css" href="style.css"> </head> <body> <!-- header --> <header> <img id="logo" src="pQCee_logo.png" alt="pqcee logo"> <h1>QKDLite for Secure File Transfer</h1> </header> <!-- About QKDLite --> ... </body> </html>
(Optional) If required, you can stop the web server by entering
fg
followed byCtrl + C
.
5.3. Enable HTTPS with Caddy¶
One approach to enable HTTPS for the web service to be accessible over the internet is to use Caddy with Lets Encrypt certificates.
Configuration steps:
Install Caddy on the QKDLite node.
sudo apt install -y debian-keyring debian-archive-keyring apt-transport-https curl curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/gpg.key' \ | sudo gpg --dearmor -o /usr/share/keyrings/caddy-stable-archive-keyring.gpg curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/debian.deb.txt' \ | sudo tee /etc/apt/sources.list.d/caddy-stable.list sudo apt update sudo apt install caddy
Replace the
Caddyfile
in/etc/caddy/
directory with the following file contents to forward traffic from port 443 to port 3000. As the file belongs to root user, you may need to usesudo vim Caddyfile
to edit it.# Global options for pQCee QKDLite node { # Disable HTTP-to-HTTPS redirects, not listening on port 80 auto_https disable_redirects } # Site options for pQCee Web Service: QKDLite for Secure File Transfer localhost:443, qkdlite.pqcee.com:443 { # Security: remove "Server:Caddy" field from HTTP response header -Server # Forward traffic to localhost port 3000 reverse_proxy localhost:3000 { # Backend transport communication transport http { # Security: disable HTTP compression compression off } } # TLS protocol options tls { # Use only TLSv1.3 protocols tls1.3 tls1.3 # Use x25519 to facilitate quantum-transition curves x25519 } }
In the above example, caddy will redirect traffic to
localhost
and domain nameqkdlite.pqcee.com
. For your deployment, please update your domain name accordingly.Ensure updated file content is formatted to the required Caddyfile style.
cd /etc/caddy/ sudo caddy fmt --overwrite
Reload the caddy service (without shutting down caddy) to reflect the updates to the Caddyfile configuration.
sudo systemctl reload caddy
5.4. Verify Caddy is running¶
Check the status of the caddy service.
systemctl status caddy
Check that port 443 responds to a HTTP request.
curl -k https://localhost:443
You should see the same HTTP response as displayed by port 3000 earlier.
In your web browser, you will be able to browse the domain name specified in the
Caddyfile
. For example, https://qkdlite.pqcee.com.(Optional) If required, you can stop the service.
sudo systemctl stop caddy