ncrypt: Add NCryptVerifySignature stub.
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@gmail.com> Signed-off-by: Hans Leidekker <hans@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
88e027b523
commit
12cb5d2efe
|
@ -367,3 +367,11 @@ SECURITY_STATUS WINAPI NCryptSetProperty(NCRYPT_HANDLE handle, const WCHAR *name
|
|||
|
||||
return set_object_property(object, name, input, insize);
|
||||
}
|
||||
|
||||
SECURITY_STATUS WINAPI NCryptVerifySignature(NCRYPT_KEY_HANDLE handle, void *padding, BYTE *hash, DWORD hash_size,
|
||||
BYTE *signature, DWORD signature_size, DWORD flags)
|
||||
{
|
||||
FIXME("(%#Ix, %p, %p, %lu, %p, %lu, %#lx): stub\n", handle, padding, hash, hash_size, signature,
|
||||
signature_size, flags);
|
||||
return ERROR_SUCCESS;
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue