зеркало из https://github.com/mozilla/gecko-dev.git
bug 1571548 - support "current user" registry locations for enterprise certificates on Windows r=kjacobs,mhowell
Differential Revision: https://phabricator.services.mozilla.com/D45720 --HG-- extra : moz-landing-system : lando
This commit is contained in:
Родитель
fdfb9d4446
Коммит
d0234b3ced
|
@ -135,19 +135,26 @@ class ScopedCertStore final {
|
|||
// CERT_SYSTEM_STORE_LOCAL_MACHINE
|
||||
// (for HKLM\SOFTWARE\Microsoft\SystemCertificates)
|
||||
// CERT_SYSTEM_STORE_LOCAL_MACHINE_GROUP_POLICY
|
||||
// (for
|
||||
// HKLM\SOFTWARE\Policies\Microsoft\SystemCertificates\Root\Certificates)
|
||||
// (for HKLM\SOFTWARE\Policy\Microsoft\SystemCertificates)
|
||||
// CERT_SYSTEM_STORE_LOCAL_MACHINE_ENTERPRISE
|
||||
// (for HKLM\SOFTWARE\Microsoft\EnterpriseCertificates\Root\Certificates)
|
||||
// (for HKLM\SOFTWARE\Microsoft\EnterpriseCertificates)
|
||||
// CERT_SYSTEM_STORE_CURRENT_USER
|
||||
// (for HKCU\SOFTWARE\Microsoft\SystemCertificates)
|
||||
// CERT_SYSTEM_STORE_CURRENT_USER_GROUP_POLICY
|
||||
// (for HKCU\SOFTWARE\Policy\Microsoft\SystemCertificates)
|
||||
static void GatherEnterpriseCertsForLocation(DWORD locationFlag,
|
||||
Vector<EnterpriseCert>& certs) {
|
||||
MOZ_ASSERT(locationFlag == CERT_SYSTEM_STORE_LOCAL_MACHINE ||
|
||||
locationFlag == CERT_SYSTEM_STORE_LOCAL_MACHINE_GROUP_POLICY ||
|
||||
locationFlag == CERT_SYSTEM_STORE_LOCAL_MACHINE_ENTERPRISE,
|
||||
locationFlag == CERT_SYSTEM_STORE_LOCAL_MACHINE_ENTERPRISE ||
|
||||
locationFlag == CERT_SYSTEM_STORE_CURRENT_USER ||
|
||||
locationFlag == CERT_SYSTEM_STORE_CURRENT_USER_GROUP_POLICY,
|
||||
"unexpected locationFlag for GatherEnterpriseRootsForLocation");
|
||||
if (!(locationFlag == CERT_SYSTEM_STORE_LOCAL_MACHINE ||
|
||||
locationFlag == CERT_SYSTEM_STORE_LOCAL_MACHINE_GROUP_POLICY ||
|
||||
locationFlag == CERT_SYSTEM_STORE_LOCAL_MACHINE_ENTERPRISE)) {
|
||||
locationFlag == CERT_SYSTEM_STORE_LOCAL_MACHINE_ENTERPRISE ||
|
||||
locationFlag == CERT_SYSTEM_STORE_CURRENT_USER ||
|
||||
locationFlag == CERT_SYSTEM_STORE_CURRENT_USER_GROUP_POLICY)) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -202,6 +209,9 @@ static void GatherEnterpriseCertsWindows(Vector<EnterpriseCert>& certs) {
|
|||
certs);
|
||||
GatherEnterpriseCertsForLocation(CERT_SYSTEM_STORE_LOCAL_MACHINE_ENTERPRISE,
|
||||
certs);
|
||||
GatherEnterpriseCertsForLocation(CERT_SYSTEM_STORE_CURRENT_USER, certs);
|
||||
GatherEnterpriseCertsForLocation(CERT_SYSTEM_STORE_CURRENT_USER_GROUP_POLICY,
|
||||
certs);
|
||||
}
|
||||
#endif // XP_WIN
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче