Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
1f75b081
Commit
1f75b081
authored
Oct 04, 2019
by
Joseph Kogut
Committed by
Alexandre Julliard
Oct 07, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ncrypt: Add NCryptIsAlgSupported stub.
Signed-off-by:
Joseph Kogut
<
joseph.kogut@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
0ea8128a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
main.c
dlls/ncrypt/main.c
+7
-0
ncrypt.spec
dlls/ncrypt/ncrypt.spec
+1
-1
No files found.
dlls/ncrypt/main.c
View file @
1f75b081
...
...
@@ -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
)
{
...
...
dlls/ncrypt/ncrypt.spec
View file @
1f75b081
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment