Begin incorporating stdbool usage when json encoding

Reviewed-by: Neil Horman <nhorman@openssl.org>
Reviewed-by: Kurt Roeckx <kurt@roeckx.be>
(Merged from https://github.com/openssl/openssl/pull/27812)
This commit is contained in:
Alexis Goodfellow
2025-06-11 23:31:31 -04:00
committed by Neil Horman
parent 49885aebe7
commit 52dba1c098
6 changed files with 23 additions and 12 deletions

View File

@@ -31,6 +31,12 @@ OpenSSL 3.6
### Changes between 3.5 and 3.6 [xx XXX xxxx]
* Introduces use of `<stdbool.h>` when handling JSON encoding in
the OpenSSL codebase, replacing the previous use of `int` for
these boolean values.
*Alexis Goodfellow*
* An ANSI-C toolchain is no longer sufficient for building OpenSSL. The code
should build on compilers supporting C-99 features.