[PATCH 6/6] ncrypt: Create NCryptVerifySignature stub.

Santino Mazza mazzasantino1206 at gmail.com
Wed Feb 16 20:16:56 CST 2022


With this change now some applications which uses ncrypt for
signature validation work.
For example, the visual studio installer (using dotnet from winetricks).

Signed-off-by: Santino Mazza <mazzasantino1206 at gmail.com>
---
 dlls/ncrypt/main.c      | 9 +++++++++
 dlls/ncrypt/ncrypt.spec | 2 +-
 2 files changed, 10 insertions(+), 1 deletion(-)

diff --git a/dlls/ncrypt/main.c b/dlls/ncrypt/main.c
index d4761537864..75b8e7685a4 100644
--- a/dlls/ncrypt/main.c
+++ b/dlls/ncrypt/main.c
@@ -368,3 +368,12 @@ SECURITY_STATUS WINAPI NCryptSetProperty(NCRYPT_HANDLE handle, const WCHAR *name
 
     return set_object_property(object, name, input, insize);
 }
+
+SECURITY_STATUS NCryptVerifySignature(NCRYPT_KEY_HANDLE key, VOID *padding_info,
+                                      BYTE *hash_value, DWORD hash_value_size, BYTE *signature,
+                                      DWORD signature_size, DWORD flags)
+{
+    FIXME("(%lx, %lx, %lx, %x, %lx, %x, %x): stub\n", key, padding_info, hash_value, hash_value_size,
+          signature, signature_size, flags);
+    return ERROR_SUCCESS;
+}
diff --git a/dlls/ncrypt/ncrypt.spec b/dlls/ncrypt/ncrypt.spec
index 0e92609790c..bb914616373 100644
--- a/dlls/ncrypt/ncrypt.spec
+++ b/dlls/ncrypt/ncrypt.spec
@@ -101,7 +101,7 @@
 @ stub NCryptUnprotectKey
 @ stub NCryptUnprotectSecret
 @ stub NCryptVerifyClaim
-@ stub NCryptVerifySignature
+@ stdcall NCryptVerifySignature(ptr ptr ptr long ptr long long)
 @ stub SslChangeNotify
 @ stub SslComputeClientAuthHash
 @ stub SslComputeEapKeyBlock
-- 
2.32.0




More information about the wine-devel mailing list