Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/
D_ssl.c3941 PCCRL_CONTEXT pCrlCtx = NULL; in PySSL_enum_crls() local
3961 while (pCrlCtx = CertEnumCRLsInStore(hStore, pCrlCtx)) { in PySSL_enum_crls()
3962 crl = PyBytes_FromStringAndSize((const char*)pCrlCtx->pbCrlEncoded, in PySSL_enum_crls()
3963 pCrlCtx->cbCrlEncoded); in PySSL_enum_crls()
3968 if ((enc = certEncodingType(pCrlCtx->dwCertEncodingType)) == NULL) { in PySSL_enum_crls()
3987 if (pCrlCtx) { in PySSL_enum_crls()
3989 CertFreeCRLContext(pCrlCtx); in PySSL_enum_crls()
/external/python/cpython3/Modules/
D_ssl.c5510 PCCRL_CONTEXT pCrlCtx = NULL; in _ssl_enum_crls_impl() local
5526 while (pCrlCtx = CertEnumCRLsInStore(hStore, pCrlCtx)) { in _ssl_enum_crls_impl()
5527 crl = PyBytes_FromStringAndSize((const char*)pCrlCtx->pbCrlEncoded, in _ssl_enum_crls_impl()
5528 pCrlCtx->cbCrlEncoded); in _ssl_enum_crls_impl()
5533 if ((enc = certEncodingType(pCrlCtx->dwCertEncodingType)) == NULL) { in _ssl_enum_crls_impl()
5552 if (pCrlCtx) { in _ssl_enum_crls_impl()
5554 CertFreeCRLContext(pCrlCtx); in _ssl_enum_crls_impl()