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

View File

@ -14,6 +14,7 @@
#include "platform/platform.h"
#include "platform/vfs.h"
#include "platform/system.h"
#include "platform/openssl.h"
HRESULT platform_hook_init(
const struct platform_config *cfg,
@ -94,5 +95,11 @@ HRESULT platform_hook_init(
return hr;
}
hr = openssl_hook_init(&cfg->openssl);
if (FAILED(hr)) {
return hr;
}
return S_OK;
}