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
427b3fbd
Commit
427b3fbd
authored
Aug 14, 2008
by
Juan Lang
Committed by
Alexandre Julliard
Aug 20, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32: Allow messages to be opened when compiled with…
crypt32: Allow messages to be opened when compiled with CMSG_SIGNER_ENCODE_INFO_HAS_CMS_FIELDS if CMS fields aren't actually used.
parent
9b953c5f
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
5 deletions
+14
-5
msg.c
dlls/crypt32/msg.c
+13
-5
msg.c
dlls/crypt32/tests/msg.c
+1
-0
No files found.
dlls/crypt32/msg.c
View file @
427b3fbd
...
...
@@ -632,11 +632,6 @@ static BOOL CRYPT_IsValidSigner(CMSG_SIGNER_ENCODE_INFO_WITH_CMS *signer)
SetLastError
(
E_INVALIDARG
);
return
FALSE
;
}
if
(
signer
->
cbSize
==
sizeof
(
CMSG_SIGNER_ENCODE_INFO_WITH_CMS
))
{
FIXME
(
"CMSG_SIGNER_ENCODE_INFO with CMS fields unsupported
\n
"
);
return
FALSE
;
}
if
(
!
signer
->
pCertInfo
->
SerialNumber
.
cbData
)
{
SetLastError
(
E_INVALIDARG
);
...
...
@@ -657,6 +652,19 @@ static BOOL CRYPT_IsValidSigner(CMSG_SIGNER_ENCODE_INFO_WITH_CMS *signer)
SetLastError
(
CRYPT_E_UNKNOWN_ALGO
);
return
FALSE
;
}
if
(
signer
->
cbSize
==
sizeof
(
CMSG_SIGNER_ENCODE_INFO_WITH_CMS
))
{
if
(
signer
->
SignerId
.
dwIdChoice
)
{
FIXME
(
"CMSG_SIGNER_ENCODE_INFO with CMS fields unsupported
\n
"
);
return
FALSE
;
}
if
(
signer
->
HashEncryptionAlgorithm
.
pszObjId
)
{
FIXME
(
"CMSG_SIGNER_ENCODE_INFO with CMS fields unsupported
\n
"
);
return
FALSE
;
}
}
return
TRUE
;
}
...
...
dlls/crypt32/tests/msg.c
View file @
427b3fbd
...
...
@@ -23,6 +23,7 @@
#include <windef.h>
#include <winbase.h>
#include <winerror.h>
#define CMSG_SIGNER_ENCODE_INFO_HAS_CMS_FIELDS
#include <wincrypt.h>
#include "wine/test.h"
...
...
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