ncrypt: Add NCryptIsAlgSupported stub.
Signed-off-by: Joseph Kogut <joseph.kogut@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
0ea8128a88
commit
1f75b08127
|
@ -125,6 +125,13 @@ SECURITY_STATUS WINAPI NCryptImportKey(NCRYPT_PROV_HANDLE provider, NCRYPT_KEY_H
|
|||
return NTE_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
SECURITY_STATUS WINAPI NCryptIsAlgSupported(NCRYPT_PROV_HANDLE provider, const WCHAR *algid,
|
||||
DWORD flags)
|
||||
{
|
||||
FIXME("(0x%lx, %s, 0x%08x): stub\n", provider, wine_dbgstr_w(algid), flags);
|
||||
return NTE_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
SECURITY_STATUS WINAPI NCryptOpenKey(NCRYPT_PROV_HANDLE provider, NCRYPT_KEY_HANDLE *key,
|
||||
const WCHAR *name, DWORD keyspec, DWORD flags)
|
||||
{
|
||||
|
|
|
@ -77,7 +77,7 @@
|
|||
@ stdcall NCryptGetProperty(ptr wstr ptr long ptr long)
|
||||
@ stub NCryptGetProtectionDescriptorInfo
|
||||
@ stdcall NCryptImportKey(long long wstr ptr ptr ptr long long)
|
||||
@ stub NCryptIsAlgSupported
|
||||
@ stub NCryptIsAlgSupported(long wstr long)
|
||||
@ stub NCryptIsKeyHandle
|
||||
@ stub NCryptKeyDerivation
|
||||
@ stub NCryptNotifyChangeKey
|
||||
|
|
Loading…
Reference in New Issue