common: add OpenSSL Intel SHA ext hook

This commit is contained in:
2025-10-05 11:01:13 +02:00
parent 19c1a8e469
commit 19cd7cb8df
8 changed files with 161 additions and 1 deletions

12
common/platform/openssl.h Normal file
View File

@ -0,0 +1,12 @@
#pragma once
#include <windows.h>
#include <stdbool.h>
struct openssl_config {
bool enable;
bool override;
};
HRESULT openssl_hook_init(const struct openssl_config *cfg);