From e52d6f56c21e9a45a7c13dc1efe6be266c8f7dda Mon Sep 17 00:00:00 2001 From: MayaTheShy Date: Sun, 16 Nov 2025 19:48:14 -0500 Subject: [PATCH] Add missing OpenSSL header for NID_sha256 in RSAKeypair.cpp --- src/RSAKeypair.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/RSAKeypair.cpp b/src/RSAKeypair.cpp index e51d344..6a600df 100644 --- a/src/RSAKeypair.cpp +++ b/src/RSAKeypair.cpp @@ -8,6 +8,7 @@ #include #include #include +#include // For NID_sha256 RSAKeypair::RSAKeypair() {}