This directory contains a Dockerfile that builds httpd (a.k.a the Apache HTTP Server) using OpenSSL(v3) using oqs-provider, which allows httpd to negotiate quantum-safe keys and use quantum-safe authentication in TLS 1.3.
Install Docker and run the following commands in this directory:
docker build --build-arg SIG_ALG=<SIG> --tag oqs-httpd-img .
(<SIG>
can be any of the authentication algorithms listed here). An alternative, simplified build instruction isdocker build -t oqs-httpd-img .
: This will generate the image with a default QSC algorithm (dilithium3 -- see Dockerfile to change this).docker run --detach --rm --name oqs-httpd -p 4433:4433 oqs-httpd-img
This will start a docker container that has httpd listening for TLS 1.3 connections on port 4433.
Complete information how to use the image is available in the separate file USAGE.md.
The Dockerfile provided allows for significant customization of the image built:
Tag of liboqs
release to be used. Default "main".
Tag of oqsprovider
release to be used. Default "main".
This permits changing the build options for the underlying library with the quantum safe algorithms. All possible options are documented here.
By default, the image is built such as to have maximum portability regardless of CPU type and optimizations available, i.e. to run on the widest possible range of cloud machines.
This defines the quantum-safe cryptographic signature algorithm for the internally generated (demonstration) CA and server certificates.
The default value is 'dilithium3' but can be set to any value documented here.
This defines the (quantum-safe) cryptographic KEM algorithms utilized for TLS 1.3 session establishment.
The default value is 'kyber768:p384_kyber768' activating Kyber768 and its hybrid variant for session setup.
This defines the resultant location of the httpd installatiion.
By default this is '/opt/httpd'. It is recommended to not change this. Also, all usage documentation assumes this path.
This defines the apache httpd software version to be build into the image.
The default version set is known to work OK but one could try any value available for download.
Allow setting parameters to make
operation, e.g., '-j nnn' where nnn defines the number of jobs run in parallel during build.
The default is conservative and known not to overload normal machines. If one has a very powerful (many cores, >64GB RAM) machine, passing larger numbers (or only '-j' for maximum parallelism) speeds up building considerably.