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
574b30b6
Commit
574b30b6
authored
Oct 21, 2014
by
André Hentschel
Committed by
Alexandre Julliard
Oct 22, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bcrypt: Add stub for BCryptGetProperty.
parent
a60fadfa
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
1 deletion
+9
-1
bcrypt.spec
dlls/bcrypt/bcrypt.spec
+1
-1
bcrypt_main.c
dlls/bcrypt/bcrypt_main.c
+7
-0
bcrypt.h
include/bcrypt.h
+1
-0
No files found.
dlls/bcrypt/bcrypt.spec
View file @
574b30b6
...
...
@@ -28,7 +28,7 @@
@ stub BCryptGenerateKeyPair
@ stub BCryptGenerateSymmetricKey
@ stdcall BCryptGetFipsAlgorithmMode(ptr)
@ st
ub BCryptGetProperty
@ st
dcall BCryptGetProperty(ptr wstr ptr long ptr long)
@ stub BCryptHashData
@ stub BCryptImportKey
@ stub BCryptImportKeyPair
...
...
dlls/bcrypt/bcrypt_main.c
View file @
574b30b6
...
...
@@ -108,3 +108,10 @@ NTSTATUS WINAPI BCryptGetFipsAlgorithmMode(BOOLEAN *enabled)
*
enabled
=
FALSE
;
return
STATUS_SUCCESS
;
}
NTSTATUS
WINAPI
BCryptGetProperty
(
BCRYPT_HANDLE
obj
,
LPCWSTR
prop
,
UCHAR
*
buffer
,
ULONG
count
,
ULONG
*
res
,
ULONG
flags
)
{
FIXME
(
"%p, %s, %p, %u, %p, %08x - stub
\n
"
,
obj
,
wine_dbgstr_w
(
prop
),
buffer
,
count
,
res
,
flags
);
return
STATUS_NOT_IMPLEMENTED
;
}
include/bcrypt.h
View file @
574b30b6
...
...
@@ -48,6 +48,7 @@ typedef struct _BCRYPT_ALGORITHM_IDENTIFIER
}
BCRYPT_ALGORITHM_IDENTIFIER
;
typedef
PVOID
BCRYPT_ALG_HANDLE
;
typedef
PVOID
BCRYPT_HANDLE
;
#define BCRYPT_RNG_USE_ENTROPY_IN_BUFFER 0x00000001
#define BCRYPT_USE_SYSTEM_PREFERRED_RNG 0x00000002
...
...
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