The following options can be passed to CMake before the build file generation process to customize the way liboqs is built. The syntax for doing so is: cmake .. [ARGS] [-D<OPTION_NAME>=<OPTION_VALUE>]...
, where <OPTON_NAME>
is:
- BUILD_SHARED_LIBS
- CMAKE_BUILD_TYPE
- CMAKE_INSTALL_PREFIX
- OQS_ALGS_ENABLED
- OQS_BUILD_ONLY_LIB
- OQS_ENABLE_KEM_ALG/OQS_ENABLE_SIG_ALG
- OQS_MINIMAL_BUILD
- OQS_DIST_BUILD
- OQS_USE_CPUFEATURE_INSTRUCTIONS
- OQS_USE_OPENSSL
- OQS_OPT_TARGET
- OQS_SPEED_USE_ARM_PMU
- USE_SANITIZER
- OQS_ENABLE_TEST_CONSTANT_TIME
- OQS_STRICT_WARNINGS
- OQS_EMBEDDED_BUILD
Can be set to ON
or OFF
. When ON
, liboqs is built as a shared library.
Default: OFF
.
This means liboqs is built as a static library by default.
Can be set to the following values:
-
Debug
: This turns off all compiler optimizations and produces debugging information. When the compiler is Clang, the USE_SANITIZER option can also be specified to enable a Clang sanitizer. This value only has effect when the compiler is GCC or Clang -
Release
: This compiles code at theO3
optimization level, and sets other compiler flags that reduce the size of the binary.
Default: Release
.
See the CMake documentation.
Note: ALG
in OQS_ENABLE_KEM_ALG/OQS_ENABLE_SIG_ALG
should be replaced with the specific algorithm name as demonstrated below.
This can be set to ON
or OFF
, and is ON
by default. When OFF
, ALG
and its code are excluded from the build process. When ON
, made available are additional options whereby individual variants of ALG
can be excluded from the build process.
For example: if OQS_ENABLE_KEM_BIKE
is set to ON
, the options OQS_ENABLE_KEM_bike_l1
, OQS_ENABLE_KEM_bike_l3
, and OQS_ENABLE_KEM_bike_l5
are made available (and are set to be ON
by default).
For a full list of such options and their default values, consult .CMake/alg_support.cmake.
Default: Unset.
Selects algorithm set enabled. Possible values are "STD" selecting all algorithms standardized by NIST; "NIST_R4" selecting all algorithms evaluated in round 4 of the NIST PQC competition; "All" (or any other value) selecting all algorithms integrated into liboqs. Parameter setting "STD" minimizes library size but may require re-running code generator scripts in projects integrating liboqs
; e.g., oqs-provider and oqs-boringssl.
Default: All
.
Can be ON
or OFF
. When ON
, only liboqs is built, and all the targets: run_tests
, gen_docs
, and prettyprint
are excluded from the build system.
Default: OFF
.
If set, this defines a semicolon deliminated list of algorithms to be contained in a minimal build of liboqs
: Only algorithms explicitly set here are included in a build: For example running cmake -DOQS_MINIMAL_BUILD="KEM_kyber_768;SIG_dilithium_3" ..
will build a minimum-size liboqs
library only containing support for Kyber768 and Dilithium3.
The full list of identifiers that can set are listed here for KEM algorithms and here for Signature algorithms. Default setting is empty, thus including all supported algorithms in the build.
Default: Unset.
Can be ON
or OFF
. When ON
, build liboqs for distribution. When OFF
, build liboqs for use on a single machine.
The library is always built for a particular architecture, either x86-64, ARM32v7, or ARM64v8, depending on the setting of CMAKE_SYSTEM_PROCESSOR. But liboqs contains code that is optimized for micro-architectures as well, e.g. x86-64 with the AVX2 extension.
When built for distribution, the library will run on any CPU of the target architecture. Function calls will be dispatched to micro-architecture optimized routines at run-time using CPU feature detection.
When built for use on a single machine, the library will only include the best available code for the target micro-architecture (see OQS_OPT_TARGET).
Default: ON
.
Note: CPUFEATURE
in OQS_USE_CPUFEATURE_INSTRUCTIONS
should be replaced with the specific CPU feature as noted below.
These can be set to ON
or OFF
and take an effect if liboqs is built for use on a single machine. By default, the CPU features are automatically determined and set to ON
or OFF
based on the CPU features available on the build system. The default values can be overridden by providing CMake build options. The available options on x86-64 are: OQS_USE_ADX_INSTRUCTIONS
, OQS_USE_AES_INSTRUCTIONS
, OQS_USE_AVX_INSTRUCTIONS
, OQS_USE_AVX2_INSTRUCTIONS
, OQS_USE_AVX512_INSTRUCTIONS
, OQS_USE_BMI1_INSTRUCTIONS
, OQS_USE_BMI2_INSTRUCTIONS
, OQS_USE_PCLMULQDQ_INSTRUCTIONS
, OQS_USE_VPCLMULQDQ_INSTRUCTIONS
, OQS_USE_POPCNT_INSTRUCTIONS
, OQS_USE_SSE_INSTRUCTIONS
, OQS_USE_SSE2_INSTRUCTIONS
and OQS_USE_SSE3_INSTRUCTIONS
. The available options on ARM64v8 are OQS_USE_ARM_AES_INSTRUCTIONS
, OQS_USE_ARM_SHA2_INSTRUCTIONS
, OQS_USE_ARM_SHA3_INSTRUCTIONS
and OQS_USE_ARM_NEON_INSTRUCTIONS
.
Default: Options valid on the build machine.
In order to save size and limit the mount of different cryptographic code bases, it is possible to use OpenSSL as a crypto code provider by setting this configuration option.
This can be set to ON
or OFF
. When ON
, the additional options OQS_USE_AES_OPENSSL
, OQS_USE_SHA2_OPENSSL
, and OQS_USE_SHA3_OPENSSL
are made available to control whether liboqs uses OpenSSL's AES, SHA-2, and SHA-3 implementations.
By default,
OQS_USE_AES_OPENSSL
isON
(on x86-64 only ifOQS_DIST_BUILD
andOQS_USE_AES_INSTRUCTIONS
are not set)OQS_USE_SHA2_OPENSSL
isON
OQS_USE_SHA3_OPENSSL
isOFF
.
These default choices have been made in order to optimize the default performance of all algorithms. Changing them implies performance penalties.
When OQS_USE_OPENSSL
is ON
, CMake also scans the filesystem to find the minimum version of OpenSSL required by liboqs (which happens to be 1.1.1). The OPENSSL_ROOT_DIR option can be set to aid CMake in its search.
Default: ON
.
An optimization target. Only has an effect if the compiler is GCC or Clang and OQS_DIST_BUILD=OFF
. Can take any valid input to the -march
(on x86-64) or -mcpu
(on ARM32v7 or ARM64v8) option for CMAKE_C_COMPILER
. Can also be set to one of the following special values.
auto
: Use-march=native
or-mcpu=native
(if the compiler supports it).generic
: Use-march=x86-64
on x86-64, or-mcpu=cortex-a5
on ARM32v7, or-mcpu=cortex-a53
on ARM64v8.
Default: auto
.
Can be ON
or OFF
. When ON
, the benchmarking script will try to use the ARMv8 Performance Monitoring Unit (PMU). This will make cycle counts on ARMv8 platforms significantly more accurate.
In order to use this option, user mode access to the PMU must be enabled via a kernel module. If user mode access is not enabled via kernel module, benchmarking will throw an Illegal Instruction
error. A kernel module that has been found to work on several platforms can be found here for linux. Follow the instructions there (i.e., clone the repository, cd enable_ccr
and make install
) to load the kernel module, after which benchmarking should work. Superuser permissions are required. Linux header files must also be installed on your platform, which may not be present by default.
Note that this option is not known to work on Apple M1 chips.
Default: OFF
.
This has effect when the compiler is Clang and when CMAKE_BUILD_TYPE is Debug
. Then, it can be set to:
Address
: This enables Clang'sAddressSanitizer
Memory
: This enables Clang'sMemorySanitizer
MemoryWithOrigins
: This enables Clang'sMemorySanitizer
with the added functionality of being able to track the origins of uninitialized valuesUndefined
: This enables Clang'sUndefinedBehaviorSanitizer
. TheBLACKLIST_FILE
option can be additionally set to a path to a file listing the entities Clang should ignore.Thread
: This enables Clang'sThreadSanitizer
Leak
: This enables Clang'sLeakSanitizer
Default: Unset.
This is used in conjunction with tests/test_constant_time.py
to use Valgrind to look for instances of secret-dependent control flow. liboqs must also be compiled with CMAKE_BUILD_TYPE set to Debug
.
See the documentation in tests/test_constant_time.py
for more information on usage.
Default: OFF
.
Can be ON
or OFF
. When ON
, all compiler warnings are enabled and treated as errors. This setting is recommended to be enabled prior to submission of a Pull Request as CI runs with this setting active. When OFF
, significantly fewer compiler warnings are enabled such as to avoid undue build errors triggered by (future) compiler warning features/unknown at development time of this library.
Default: OFF
.
Can be ON
or OFF
. When ON
, calls to standard library functions typically not present in a bare-metal embedded environment are excluded from compilation.
At the moment, this is only considered for random number generation, as both getentropy()
and a file based /dev/urandom
are not available on embedded targets (e.g. the Zephyr port).
Attention: When this option is enabled, you have to supply a custom callback for obtaining random numbers using the OQS_randombytes_custom_algorithm()
API before accessing the cryptographic API. Otherwise, all key generation and signing operations will fail.
Default: OFF
.