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
a36d8ce6
Commit
a36d8ce6
authored
Aug 20, 2008
by
Juan Lang
Committed by
Alexandre Julliard
Aug 21, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32: Remove an unneeded helper.
parent
aa265b41
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
19 deletions
+2
-19
msg.c
dlls/crypt32/msg.c
+2
-19
No files found.
dlls/crypt32/msg.c
View file @
a36d8ce6
...
...
@@ -1424,23 +1424,6 @@ static HCRYPTMSG CSignedEncodeMsg_Open(DWORD dwFlags,
return
msg
;
}
static
inline
const
char
*
MSG_TYPE_STR
(
DWORD
type
)
{
switch
(
type
)
{
#define _x(x) case (x): return #x
_x
(
CMSG_DATA
);
_x
(
CMSG_SIGNED
);
_x
(
CMSG_ENVELOPED
);
_x
(
CMSG_SIGNED_AND_ENVELOPED
);
_x
(
CMSG_HASHED
);
_x
(
CMSG_ENCRYPTED
);
#undef _x
default:
return
wine_dbg_sprintf
(
"unknown (%d)"
,
type
);
}
}
HCRYPTMSG
WINAPI
CryptMsgOpenToEncode
(
DWORD
dwMsgEncodingType
,
DWORD
dwFlags
,
DWORD
dwMsgType
,
const
void
*
pvMsgEncodeInfo
,
LPSTR
pszInnerContentObjID
,
PCMSG_STREAM_INFO
pStreamInfo
)
...
...
@@ -1470,7 +1453,7 @@ HCRYPTMSG WINAPI CryptMsgOpenToEncode(DWORD dwMsgEncodingType, DWORD dwFlags,
pszInnerContentObjID
,
pStreamInfo
);
break
;
case
CMSG_ENVELOPED
:
FIXME
(
"unimplemented for type
%s
\n
"
,
MSG_TYPE_STR
(
dwMsgType
)
);
FIXME
(
"unimplemented for type
CMSG_ENVELOPED
\n
"
);
break
;
case
CMSG_SIGNED_AND_ENVELOPED
:
case
CMSG_ENCRYPTED
:
...
...
@@ -1720,7 +1703,7 @@ static BOOL CDecodeMsg_DecodeContent(CDecodeMsg *msg, CRYPT_DER_BLOB *blob,
msg
->
type
=
CMSG_HASHED
;
break
;
case
CMSG_ENVELOPED
:
FIXME
(
"unimplemented for type
%s
\n
"
,
MSG_TYPE_STR
(
type
)
);
FIXME
(
"unimplemented for type
CMSG_ENVELOPED
\n
"
);
ret
=
TRUE
;
break
;
case
CMSG_SIGNED
:
...
...
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