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
9a40de08
Commit
9a40de08
authored
Nov 16, 2009
by
Juan Lang
Committed by
Alexandre Julliard
Nov 18, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32: Let caller set error codes when name constraints aren't met.
parent
f8044948
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
9 deletions
+15
-9
chain.c
dlls/crypt32/chain.c
+15
-9
No files found.
dlls/crypt32/chain.c
View file @
9a40de08
...
...
@@ -720,9 +720,8 @@ static BOOL ip_address_matches(const CRYPT_DATA_BLOB *constraint,
return
match
;
}
static
void
CRYPT_FindMatchingNameEntry
(
const
CERT_ALT_NAME_ENTRY
*
constraint
,
const
CERT_ALT_NAME_INFO
*
subjectName
,
DWORD
*
trustErrorStatus
,
DWORD
errorIfFound
,
DWORD
errorIfNotFound
)
static
BOOL
CRYPT_FindMatchingNameEntry
(
const
CERT_ALT_NAME_ENTRY
*
constraint
,
const
CERT_ALT_NAME_INFO
*
subjectName
,
DWORD
*
trustErrorStatus
)
{
DWORD
i
;
BOOL
match
=
FALSE
;
...
...
@@ -759,7 +758,7 @@ static void CRYPT_FindMatchingNameEntry(const CERT_ALT_NAME_ENTRY *constraint,
}
}
}
*
trustErrorStatus
|=
match
?
errorIfFound
:
errorIfNotFound
;
return
match
;
}
static
inline
PCERT_EXTENSION
get_subject_alt_name_ext
(
const
CERT_INFO
*
cert
)
...
...
@@ -793,14 +792,21 @@ static void CRYPT_CheckNameConstraints(
DWORD
i
;
for
(
i
=
0
;
i
<
nameConstraints
->
cExcludedSubtree
;
i
++
)
CRYPT_FindMatchingNameEntry
(
{
if
(
CRYPT_FindMatchingNameEntry
(
&
nameConstraints
->
rgExcludedSubtree
[
i
].
Base
,
subjectName
,
trustErrorStatus
,
CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT
,
0
);
trustErrorStatus
))
*
trustErrorStatus
|=
CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT
;
}
for
(
i
=
0
;
i
<
nameConstraints
->
cPermittedSubtree
;
i
++
)
CRYPT_FindMatchingNameEntry
(
{
if
(
!
CRYPT_FindMatchingNameEntry
(
&
nameConstraints
->
rgPermittedSubtree
[
i
].
Base
,
subjectName
,
trustErrorStatus
,
0
,
CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT
);
trustErrorStatus
))
*
trustErrorStatus
|=
CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT
;
}
LocalFree
(
subjectName
);
}
else
...
...
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