Update OpenSSL.h includes to adjust header order and add new components

Reordered several #include directives in OpenSSL.h for consistency and
alphabetical grouping. Added new header includes for byteorder.h,
indicator.h, ml_kem.h, and x509_acert.h to support additional OpenSSL
components. These changes may improve organization and ensure the
availability of newer OpenSSL features.
This commit is contained in:
Marcin Krzyzanowski
2025-10-11 20:22:06 +02:00
parent c990e0d1ac
commit 932d445b1f
+9 -5
View File
@@ -20,30 +20,31 @@
#include <OpenSSL/bnerr.h>
#include <OpenSSL/buffer.h>
#include <OpenSSL/buffererr.h>
#include <OpenSSL/byteorder.h>
#include <OpenSSL/camellia.h>
#include <OpenSSL/cast.h>
#include <OpenSSL/cmac.h>
#include <OpenSSL/cmp.h>
#include <OpenSSL/cmp_util.h>
#include <OpenSSL/cmp.h>
#include <OpenSSL/cmperr.h>
#include <OpenSSL/cms.h>
#include <OpenSSL/cmserr.h>
#include <OpenSSL/comp.h>
#include <OpenSSL/comperr.h>
#include <OpenSSL/conf.h>
#include <OpenSSL/conf_api.h>
#include <OpenSSL/conf.h>
#include <OpenSSL/conferr.h>
#include <OpenSSL/configuration.h>
#include <OpenSSL/conftypes.h>
#include <OpenSSL/core.h>
#include <OpenSSL/core_dispatch.h>
#include <OpenSSL/core_names.h>
#include <OpenSSL/core_object.h>
#include <OpenSSL/core.h>
#include <OpenSSL/crmf.h>
#include <OpenSSL/crmferr.h>
#include <OpenSSL/crypto.h>
#include <OpenSSL/cryptoerr.h>
#include <OpenSSL/cryptoerr_legacy.h>
#include <OpenSSL/cryptoerr.h>
#include <OpenSSL/ct.h>
#include <OpenSSL/cterr.h>
#include <OpenSSL/decoder.h>
@@ -77,6 +78,7 @@
#include <OpenSSL/http.h>
#include <OpenSSL/httperr.h>
#include <OpenSSL/idea.h>
#include <OpenSSL/indicator.h>
#include <OpenSSL/kdf.h>
#include <OpenSSL/kdferr.h>
#include <OpenSSL/lhash.h>
@@ -85,6 +87,7 @@
#include <OpenSSL/md4.h>
#include <OpenSSL/md5.h>
#include <OpenSSL/mdc2.h>
#include <OpenSSL/ml_kem.h>
#include <OpenSSL/modes.h>
#include <OpenSSL/obj_mac.h>
#include <OpenSSL/objects.h>
@@ -137,8 +140,9 @@
#include <OpenSSL/ui.h>
#include <OpenSSL/uierr.h>
#include <OpenSSL/whrlpool.h>
#include <OpenSSL/x509.h>
#include <OpenSSL/x509_acert.h>
#include <OpenSSL/x509_vfy.h>
#include <OpenSSL/x509.h>
#include <OpenSSL/x509err.h>
#include <OpenSSL/x509v3.h>
#include <OpenSSL/x509v3err.h>