ncrypt: Add NCryptIsKeyHandle stub.
Signed-off-by: Vitaly Lipatov <lav@etersoft.ru> Signed-off-by: Hans Leidekker <hans@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
195d0b5308
commit
98c67d8679
|
@ -132,6 +132,12 @@ SECURITY_STATUS WINAPI NCryptIsAlgSupported(NCRYPT_PROV_HANDLE provider, const W
|
|||
return NTE_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
BOOL WINAPI NCryptIsKeyHandle(NCRYPT_KEY_HANDLE hKey)
|
||||
{
|
||||
FIXME("(0x%lx): stub\n", hKey);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
SECURITY_STATUS WINAPI NCryptOpenKey(NCRYPT_PROV_HANDLE provider, NCRYPT_KEY_HANDLE *key,
|
||||
const WCHAR *name, DWORD keyspec, DWORD flags)
|
||||
{
|
||||
|
|
|
@ -78,7 +78,7 @@
|
|||
@ stub NCryptGetProtectionDescriptorInfo
|
||||
@ stdcall NCryptImportKey(long long wstr ptr ptr ptr long long)
|
||||
@ stub NCryptIsAlgSupported(long wstr long)
|
||||
@ stub NCryptIsKeyHandle
|
||||
@ stdcall NCryptIsKeyHandle(long)
|
||||
@ stub NCryptKeyDerivation
|
||||
@ stub NCryptNotifyChangeKey
|
||||
@ stdcall NCryptOpenKey(long ptr wstr long long)
|
||||
|
|
Loading…
Reference in New Issue