Home
last modified time | relevance | path

Searched refs:hProv (Results 1 – 3 of 3) sorted by relevance

/external/libcups/cups/
Dtls-sspi.c420 HCRYPTPROV hProv = (HCRYPTPROV)NULL; in httpLoadCredentials() local
448 …if (!CryptAcquireContextW(&hProv, L"RememberedContainer", MS_DEF_PROV_W, PROV_RSA_FULL, CRYPT_NEWK… in httpLoadCredentials()
452 …if (!CryptAcquireContextW(&hProv, L"RememberedContainer", MS_DEF_PROV_W, PROV_RSA_FULL, CRYPT_MACH… in httpLoadCredentials()
460 …store = CertOpenStore(CERT_STORE_PROV_SYSTEM, X509_ASN_ENCODING|PKCS_7_ASN_ENCODING, hProv, CERT_S… in httpLoadCredentials()
519 if (hProv) in httpLoadCredentials()
520 CryptReleaseContext(hProv, 0); in httpLoadCredentials()
545 HCRYPTPROV hProv = (HCRYPTPROV)NULL; in httpSaveCredentials() local
571 …if (!CryptAcquireContextW(&hProv, L"RememberedContainer", MS_DEF_PROV_W, PROV_RSA_FULL, CRYPT_NEWK… in httpSaveCredentials()
575 …if (!CryptAcquireContextW(&hProv, L"RememberedContainer", MS_DEF_PROV_W, PROV_RSA_FULL, CRYPT_MACH… in httpSaveCredentials()
583 …store = CertOpenStore(CERT_STORE_PROV_SYSTEM, X509_ASN_ENCODING|PKCS_7_ASN_ENCODING, hProv, CERT_S… in httpSaveCredentials()
[all …]
/external/python/cpython2/Python/
Drandom.c21 typedef BOOL (WINAPI *CRYPTGENRANDOM)(HCRYPTPROV hProv, DWORD dwLen,\
/external/curl/lib/vtls/
Dschannel.c2344 HCRYPTPROV hProv = 0; in Curl_schannel_checksum() local
2355 if(!CryptAcquireContext(&hProv, NULL, NULL, provType, in Curl_schannel_checksum()
2360 if(!CryptCreateHash(hProv, algId, 0, 0, &hHash)) in Curl_schannel_checksum()
2383 if(hProv) in Curl_schannel_checksum()
2384 CryptReleaseContext(hProv, 0); in Curl_schannel_checksum()