diff options
| author | Dimitri Staessens <dimitri@ouroboros.rocks> | 2026-07-02 00:57:58 +0200 |
|---|---|---|
| committer | Sander Vrijders <sander@ouroboros.rocks> | 2026-07-08 11:02:12 +0200 |
| commit | 2f9fdfa5ae2749f10d9ebc805e388ab9962d9faa (patch) | |
| tree | 5af214bab5b25068455d30ee61516e3c04c2effd /src/irmd/oap/io.c | |
| parent | c59a6d54d6361298018edb021d2da818a6b5f09a (diff) | |
| download | ouroboros-2f9fdfa5ae2749f10d9ebc805e388ab9962d9faa.tar.gz ouroboros-2f9fdfa5ae2749f10d9ebc805e388ab9962d9faa.zip | |
build: Fix OpenSSL version check for PQC
ML-KEM, ML-DSA and SLH-DSA all landed in OpenSSL 3.5.0, not 3.4.0.
ML-KEM+ML-DSA and SLH-DSA can be disabled by DISABLE_ML / DISABLE_SLH.
Signed-off-by: Dimitri Staessens <dimitri@ouroboros.rocks>
Signed-off-by: Sander Vrijders <sander@ouroboros.rocks>
Diffstat (limited to 'src/irmd/oap/io.c')
| -rw-r--r-- | src/irmd/oap/io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/irmd/oap/io.c b/src/irmd/oap/io.c index b5daa432..845723fa 100644 --- a/src/irmd/oap/io.c +++ b/src/irmd/oap/io.c @@ -133,7 +133,7 @@ int load_sec_config(const char * name, log_info("Key exchange not configured for %s.", name); return 0; } -#ifndef HAVE_OPENSSL_ML_KEM +#ifndef HAVE_ML if (IS_KEM_ALGORITHM(cfg->x.str)) { log_err("PQC not available, can't use %s for %s.", cfg->x.str, name); |
