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
5fff29cd
Commit
5fff29cd
authored
Jul 16, 2008
by
Juan Lang
Committed by
Alexandre Julliard
Jul 17, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32: Reorganize root store creation code.
parent
014b96ef
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
17 deletions
+26
-17
rootstore.c
dlls/crypt32/rootstore.c
+26
-17
No files found.
dlls/crypt32/rootstore.c
View file @
5fff29cd
...
...
@@ -676,20 +676,36 @@ static void add_ms_root_certs(HCERTSTORE to)
WARN
(
"adding root cert %d failed: %08x
\n
"
,
i
,
GetLastError
());
}
/* Reads certificates from the list of known locations
. Stops when any
* location contains any certificates, to prevent spending unnecessary time
/* Reads certificates from the list of known locations
into store. Stops when
*
any
location contains any certificates, to prevent spending unnecessary time
* adding redundant certificates, e.g. when both a certificate bundle and
* individual certificates exist in the same directory.
*/
static
PWINECRYPT_CERTSTORE
CRYPT_RootOpenStoreFromKnownLocations
(
void
)
static
void
read_trusted_roots_from_known_locations
(
HCERTSTORE
store
)
{
HCERTSTORE
root
=
NULL
;
HCERTSTORE
from
=
CertOpenStore
(
CERT_STORE_PROV_MEMORY
,
X509_ASN_ENCODING
,
0
,
CERT_STORE_CREATE_NEW_FLAG
,
NULL
);
HCERTSTORE
to
=
CertOpenStore
(
CERT_STORE_PROV_MEMORY
,
if
(
from
)
{
DWORD
i
;
BOOL
ret
=
FALSE
;
for
(
i
=
0
;
!
ret
&&
i
<
sizeof
(
CRYPT_knownLocations
)
/
sizeof
(
CRYPT_knownLocations
[
0
]);
i
++
)
ret
=
import_certs_from_path
(
CRYPT_knownLocations
[
i
],
from
,
TRUE
);
check_and_store_certs
(
from
,
store
);
}
}
static
HCERTSTORE
create_root_store
(
void
)
{
HCERTSTORE
root
=
NULL
;
HCERTSTORE
memStore
=
CertOpenStore
(
CERT_STORE_PROV_MEMORY
,
X509_ASN_ENCODING
,
0
,
CERT_STORE_CREATE_NEW_FLAG
,
NULL
);
if
(
from
&&
to
)
if
(
memStore
)
{
CERT_STORE_PROV_INFO
provInfo
=
{
sizeof
(
CERT_STORE_PROV_INFO
),
...
...
@@ -699,18 +715,11 @@ static PWINECRYPT_CERTSTORE CRYPT_RootOpenStoreFromKnownLocations(void)
0
,
NULL
};
DWORD
i
;
BOOL
ret
=
FALSE
;
for
(
i
=
0
;
!
ret
&&
i
<
sizeof
(
CRYPT_knownLocations
)
/
sizeof
(
CRYPT_knownLocations
[
0
]);
i
++
)
ret
=
import_certs_from_path
(
CRYPT_knownLocations
[
i
],
from
,
TRUE
);
check_and_store_certs
(
from
,
to
);
add_ms_root_certs
(
to
);
root
=
CRYPT_ProvCreateStore
(
0
,
to
,
&
provInfo
);
read_trusted_roots_from_known_locations
(
memStore
);
add_ms_root_certs
(
memStore
);
root
=
CRYPT_ProvCreateStore
(
0
,
memStore
,
&
provInfo
);
}
CertCloseStore
(
from
,
0
);
TRACE
(
"returning %p
\n
"
,
root
);
return
root
;
}
...
...
@@ -740,7 +749,7 @@ PWINECRYPT_CERTSTORE CRYPT_RootOpenStore(HCRYPTPROV hCryptProv, DWORD dwFlags)
}
if
(
!
CRYPT_rootStore
)
{
HCERTSTORE
root
=
CRYPT_RootOpenStoreFromKnownLocations
();
HCERTSTORE
root
=
create_root_store
();
InterlockedCompareExchangePointer
((
PVOID
*
)
&
CRYPT_rootStore
,
root
,
NULL
);
...
...
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