]> git.ipfire.org Git - thirdparty/haproxy.git/commit
BUG/MINOR: jws: fix OpenSSL 3.0 version check from > to >=
authorWilly Tarreau <w@1wt.eu>
Wed, 29 Apr 2026 08:02:56 +0000 (10:02 +0200)
committerWilly Tarreau <w@1wt.eu>
Tue, 19 May 2026 13:21:24 +0000 (15:21 +0200)
commit307294b30ac4743536613527adde296e5be9ebc0
treed35c8604726504757544430cd3c0bc01480d310a
parent0284be5456a04e49dd529fdcce0e12108f28a1f0
BUG/MINOR: jws: fix OpenSSL 3.0 version check from > to >=

Three #if directives used > 0x30000000L which excluded OpenSSL 3.0.0
exactly from the modern code path, treating it as pre-3.0. Changed all
three to >= 0x30000000L to match jwe.c and openssl-compat.h conventions.

This affects EC key thumbprint generation, RSA JWK generation, and
JWS algorithm detection for OpenSSL 3.0.0.
src/jws.c