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
c6b4151b
Commit
c6b4151b
authored
Aug 16, 2017
by
Hans Leidekker
Committed by
Alexandre Julliard
Aug 16, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bcrypt: Add a stub implementation of BCryptSetProperty.
Signed-off-by:
Hans Leidekker
<
hans@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
b677b58b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
2 deletions
+8
-2
bcrypt.spec
dlls/bcrypt/bcrypt.spec
+1
-1
bcrypt_main.c
dlls/bcrypt/bcrypt_main.c
+6
-0
ncrypt.spec
dlls/ncrypt/ncrypt.spec
+1
-1
No files found.
dlls/bcrypt/bcrypt.spec
View file @
c6b4151b
...
...
@@ -46,7 +46,7 @@
@ stub BCryptSecretAgreement
@ stub BCryptSetAuditingInterface
@ stub BCryptSetContextFunctionProperty
@ st
ub BCryptSetProperty
@ st
dcall BCryptSetProperty(ptr wstr ptr long long)
@ stub BCryptSignHash
@ stub BCryptUnregisterConfigChangeNotify
@ stub BCryptUnregisterProvider
...
...
dlls/bcrypt/bcrypt_main.c
View file @
c6b4151b
...
...
@@ -512,6 +512,12 @@ NTSTATUS WINAPI BCryptGetProperty( BCRYPT_HANDLE handle, LPCWSTR prop, UCHAR *bu
}
}
NTSTATUS
WINAPI
BCryptSetProperty
(
BCRYPT_HANDLE
handle
,
const
WCHAR
*
prop
,
UCHAR
*
value
,
ULONG
size
,
ULONG
flags
)
{
FIXME
(
"%p, %s, %p, %u, %08x
\n
"
,
handle
,
debugstr_w
(
prop
),
value
,
size
,
flags
);
return
STATUS_NOT_IMPLEMENTED
;
}
NTSTATUS
WINAPI
BCryptCreateHash
(
BCRYPT_ALG_HANDLE
algorithm
,
BCRYPT_HASH_HANDLE
*
handle
,
UCHAR
*
object
,
ULONG
objectlen
,
UCHAR
*
secret
,
ULONG
secretlen
,
ULONG
flags
)
{
...
...
dlls/ncrypt/ncrypt.spec
View file @
c6b4151b
...
...
@@ -49,7 +49,7 @@
@ stub BCryptSecretAgreement
@ stub BCryptSetAuditingInterface
@ stub BCryptSetContextFunctionProperty
@ st
ub
BCryptSetProperty
@ st
dcall BCryptSetProperty(ptr wstr ptr long long) bcrypt.
BCryptSetProperty
@ stub BCryptSignHash
@ stub BCryptUnregisterConfigChangeNotify
@ stub BCryptUnregisterProvider
...
...
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