From 48407719cd17d008539579a75967db6ef38b462c Mon Sep 17 00:00:00 2001 From: Yakun Xu Date: Tue, 17 Jun 2025 20:06:48 +0800 Subject: [PATCH] [crypto] avoid directly include config/crypto.h (#11603) This commit avoids directly including `config/crypto.h` which breaks configuration in project headers. --- src/core/crypto/crypto_platform.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/core/crypto/crypto_platform.cpp b/src/core/crypto/crypto_platform.cpp index edde102c3..a8ac86cba 100644 --- a/src/core/crypto/crypto_platform.cpp +++ b/src/core/crypto/crypto_platform.cpp @@ -52,7 +52,6 @@ #include "common/code_utils.hpp" #include "common/debug.hpp" #include "common/new.hpp" -#include "config/crypto.h" #include "crypto/ecdsa.hpp" #include "crypto/hmac_sha256.hpp" #include "crypto/storage.hpp"