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
5349745a
Commit
5349745a
authored
Aug 08, 2006
by
Juan Lang
Committed by
Alexandre Julliard
Aug 09, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32: Trace key type in CryptFindOIDInfo.
parent
78610e20
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
oid.c
dlls/crypt32/oid.c
+4
-0
No files found.
dlls/crypt32/oid.c
View file @
5349745a
...
...
@@ -1032,6 +1032,7 @@ PCCRYPT_OID_INFO WINAPI CryptFindOIDInfo(DWORD dwKeyType, void *pvKey,
{
struct
OIDInfo
*
info
;
TRACE
(
"CRYPT_OID_INFO_ALGID_KEY: %ld
\n
"
,
*
(
DWORD
*
)
pvKey
);
EnterCriticalSection
(
&
oidInfoCS
);
LIST_FOR_EACH_ENTRY
(
info
,
&
oidInfo
,
struct
OIDInfo
,
entry
)
{
...
...
@@ -1049,6 +1050,7 @@ PCCRYPT_OID_INFO WINAPI CryptFindOIDInfo(DWORD dwKeyType, void *pvKey,
{
struct
OIDInfo
*
info
;
TRACE
(
"CRYPT_OID_INFO_NAME_KEY: %s
\n
"
,
debugstr_w
((
LPWSTR
)
pvKey
));
EnterCriticalSection
(
&
oidInfoCS
);
LIST_FOR_EACH_ENTRY
(
info
,
&
oidInfo
,
struct
OIDInfo
,
entry
)
{
...
...
@@ -1067,6 +1069,7 @@ PCCRYPT_OID_INFO WINAPI CryptFindOIDInfo(DWORD dwKeyType, void *pvKey,
struct
OIDInfo
*
info
;
LPSTR
oid
=
(
LPSTR
)
pvKey
;
TRACE
(
"CRYPT_OID_INFO_OID_KEY: %s
\n
"
,
debugstr_a
(
oid
));
EnterCriticalSection
(
&
oidInfoCS
);
LIST_FOR_EACH_ENTRY
(
info
,
&
oidInfo
,
struct
OIDInfo
,
entry
)
{
...
...
@@ -1084,6 +1087,7 @@ PCCRYPT_OID_INFO WINAPI CryptFindOIDInfo(DWORD dwKeyType, void *pvKey,
{
struct
OIDInfo
*
info
;
TRACE
(
"CRYPT_OID_INFO_SIGN_KEY: %ld
\n
"
,
*
(
DWORD
*
)
pvKey
);
EnterCriticalSection
(
&
oidInfoCS
);
LIST_FOR_EACH_ENTRY
(
info
,
&
oidInfo
,
struct
OIDInfo
,
entry
)
{
...
...
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