Home
last modified time | relevance | path

Searched refs:hStore (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Modules/
D_ssl.c3850 HCERTSTORE hStore = NULL; in PySSL_enum_certificates() local
3863 hStore = CertOpenStore(CERT_STORE_PROV_SYSTEM_A, 0, (HCRYPTPROV)NULL, in PySSL_enum_certificates()
3866 if (hStore == NULL) { in PySSL_enum_certificates()
3871 while (pCertCtx = CertEnumCertificatesInStore(hStore, pCertCtx)) { in PySSL_enum_certificates()
3918 if (!CertCloseStore(hStore, 0)) { in PySSL_enum_certificates()
3940 HCERTSTORE hStore = NULL; in PySSL_enum_crls() local
3953 hStore = CertOpenStore(CERT_STORE_PROV_SYSTEM_A, 0, (HCRYPTPROV)NULL, in PySSL_enum_crls()
3956 if (hStore == NULL) { in PySSL_enum_crls()
3961 while (pCrlCtx = CertEnumCRLsInStore(hStore, pCrlCtx)) { in PySSL_enum_crls()
3997 if (!CertCloseStore(hStore, 0)) { in PySSL_enum_crls()
/external/curl/lib/vtls/
Dopenssl.c2834 HCERTSTORE hStore = CertOpenSystemStore((HCRYPTPROV_LEGACY)NULL, in ossl_connect_step1() local
2837 if(hStore) { in ossl_connect_step1()
2860 pContext = CertEnumCertificatesInStore(hStore, pContext); in ossl_connect_step1()
2960 CertCloseStore(hStore, 0); in ossl_connect_step1()