Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
d5f18414
Commit
d5f18414
authored
Apr 29, 2014
by
Alex Henrie
Committed by
Alexandre Julliard
May 01, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bcrypt: Add stub for BCryptOpenAlgorithmProvider.
parent
7c029e02
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
1 deletion
+14
-1
bcrypt.spec
dlls/bcrypt/bcrypt.spec
+1
-1
bcrypt_main.c
dlls/bcrypt/bcrypt_main.c
+13
-0
No files found.
dlls/bcrypt/bcrypt.spec
View file @
d5f18414
...
...
@@ -32,7 +32,7 @@
@ stub BCryptHashData
@ stub BCryptImportKey
@ stub BCryptImportKeyPair
@ st
ub BCryptOpenAlgorithmProvider
@ st
dcall BCryptOpenAlgorithmProvider(ptr wstr wstr long)
@ stub BCryptQueryContextConfiguration
@ stub BCryptQueryContextFunctionConfiguration
@ stub BCryptQueryContextFunctionProperty
...
...
dlls/bcrypt/bcrypt_main.c
View file @
d5f18414
...
...
@@ -91,3 +91,16 @@ NTSTATUS WINAPI BCryptGenRandom(BCRYPT_ALG_HANDLE algorithm, UCHAR *buffer, ULON
FIXME
(
"called with unsupported parameters, returning error
\n
"
);
return
STATUS_NOT_IMPLEMENTED
;
}
NTSTATUS
WINAPI
BCryptOpenAlgorithmProvider
(
BCRYPT_ALG_HANDLE
*
algorithm
,
LPCWSTR
algorithmId
,
LPCWSTR
implementation
,
DWORD
flags
)
{
FIXME
(
"%p, %s, %s, %08x - stub
\n
"
,
algorithm
,
wine_dbgstr_w
(
algorithmId
),
wine_dbgstr_w
(
implementation
),
flags
);
if
(
!
algorithm
)
return
STATUS_INVALID_PARAMETER
;
*
algorithm
=
NULL
;
return
STATUS_NOT_IMPLEMENTED
;
}
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