Searched defs:hStore (Results 1 - 7 of 7) sorted by relevance

/vbox/src/VBox/Installer/win/Stub/
H A DVBoxStubCertUtil.cpp64 HCERTSTORE hStore = NULL; local
81 hStore = CertOpenStore(CERT_STORE_PROV_SYSTEM_W,
89 return hStore;
/vbox/src/VBox/Runtime/common/crypto/
H A DRTCrStoreCertAddFromFile.cpp72 RTDECL(int) RTCrStoreCertAddFromFile(RTCRSTORE hStore, uint32_t fFlags, const char *pszFilename, PRTERRINFO pErrInfo) argument
82 int rc2 = RTCrStoreCertAddEncoded(hStore, RTCRCERTCTX_F_ENC_X509_DER,
102 int rc2 = RTCrStoreCertAddEncoded(hStore, RTCRCERTCTX_F_ENC_X509_DER, pCurSec->pbData, pCurSec->cbData,
H A Dstore.cpp100 RTDECL(uint32_t) RTCrStoreRetain(RTCRSTORE hStore) argument
102 PRTCRSTOREINT pThis = (PRTCRSTOREINT)hStore;
112 RTDECL(uint32_t) RTCrStoreRelease(RTCRSTORE hStore)
114 if (hStore == NIL_RTCRSTORE)
117 PRTCRSTOREINT pThis = (PRTCRSTOREINT)hStore;
132 RTDECL(PCRTCRCERTCTX) RTCrStoreCertByIssuerAndSerialNo(RTCRSTORE hStore, PCRTCRX509NAME pIssuer, PCRTASN1INTEGER pSerialNo) argument
134 PRTCRSTOREINT pThis = (PRTCRSTOREINT)hStore;
169 RTDECL(int) RTCrStoreCertAddEncoded(RTCRSTORE hStore, uint32_t fFlags, void const *pvSrc, size_t cbSrc, PRTERRINFO pErrInfo) argument
171 PRTCRSTOREINT pThis = (PRTCRSTOREINT)hStore;
197 RTDECL(int) RTCrStoreCertFindAll(RTCRSTORE hStore, PRTCRSTORECERTSEARC argument
212 RTCrStoreCertFindBySubjectOrAltSubjectByRfc5280(RTCRSTORE hStore, PCRTCRX509NAME pSubject, PRTCRSTORECERTSEARCH pSearch) argument
230 RTCrStoreCertSearchNext(RTCRSTORE hStore, PRTCRSTORECERTSEARCH pSearch) argument
274 RTCrStoreCertSearchDestroy(RTCRSTORE hStore, PRTCRSTORECERTSEARCH pSearch) argument
296 RTCrStoreConvertToOpenSslCertStore(RTCRSTORE hStore, uint32_t fFlags, void **ppvOpenSslStore) argument
349 RTCrStoreConvertToOpenSslCertStack(RTCRSTORE hStore, uint32_t fFlags, void **ppvOpenSslStack) argument
[all...]
/vbox/include/iprt/crypto/
H A Dstore.h62 RTDECL(uint32_t) RTCrStoreRetain(RTCRSTORE hStore); variable
63 RTDECL(uint32_t) RTCrStoreRelease(RTCRSTORE hStore); variable
64 RTDECL(PCRTCRCERTCTX) RTCrStoreCertByIssuerAndSerialNo(RTCRSTORE hStore, PCRTCRX509NAME pIssuer, PCRTASN1INTEGER pSerialNo);
65 RTDECL(int) RTCrStoreCertAddEncoded(RTCRSTORE hStore, uint32_t fFlags, void const *pvSrc, size_t cbSrc, PRTERRINFO pErrInfo);
66 RTDECL(int) RTCrStoreCertAddFromFile(RTCRSTORE hStore, uint32_t fFlags, const char *pszFilename, PRTERRINFO pErrInfo);
68 RTDECL(int) RTCrStoreCertFindAll(RTCRSTORE hStore, PRTCRSTORECERTSEARCH pSearch);
69 RTDECL(int) RTCrStoreCertFindBySubjectOrAltSubjectByRfc5280(RTCRSTORE hStore, PCRTCRX509NAME pSubject,
71 RTDECL(PCRTCRCERTCTX) RTCrStoreCertSearchNext(RTCRSTORE hStore, PRTCRSTORECERTSEARCH pSearch);
72 RTDECL(int) RTCrStoreCertSearchDestroy(RTCRSTORE hStore, PRTCRSTORECERTSEARCH pSearch);
74 RTDECL(int) RTCrStoreConvertToOpenSslCertStore(RTCRSTORE hStore, uint32_
[all...]
/vbox/src/VBox/Additions/WINNT/tools/
H A DVBoxCertUtil.cpp242 HCERTSTORE hStore = NULL; local
262 hStore = CertOpenStore(CERT_STORE_PROV_SYSTEM_W,
267 if (hStore == NULL)
273 return hStore;
430 HCERTSTORE hStore = CertOpenStore(CERT_STORE_PROV_SYSTEM_W, local
435 if (hStore)
438 while ((pCertCtx = CertEnumCertificatesInStore(hStore, pCertCtx)) != NULL)
475 CertCloseStore(hStore, CERT_CLOSE_STORE_CHECK_FLAG);
/vbox/src/VBox/Runtime/tools/
H A DRTSignTool.cpp270 RTCRSTORE hStore; member in struct:STSTORESET
537 aSets[cSets].hStore = State.hRootStore;
541 aSets[cSets].hStore = State.hRootStore;
545 aSets[cSets].hStore = State.hRootStore;
549 aSets[cSets].hStore = State.hKernelRootStore;
564 rc = RTCrStoreCertAddEncoded(aSets[i].hStore, RTCRCERTCTX_F_ENC_TAF_DER, aSets[i].paTAs[j].pch,
/vbox/src/VBox/HostDrivers/Support/win/
H A DSUPHardenedVerifyImage-win.cpp1415 static int supHardNtViCertStoreAddArray(RTCRSTORE hStore, PCSUPTAENTRY paCerts, unsigned cCerts, PRTERRINFO pErrInfo) argument
1419 int rc = RTCrStoreCertAddEncoded(hStore, RTCRCERTCTX_F_ENC_TAF_DER, paCerts[i].pch, paCerts[i].cb, pErrInfo);
1968 HCERTSTORE hStore = pfnCertOpenStore(CERT_STORE_PROV_SYSTEM_W, PKCS_7_ASN_ENCODING | X509_ASN_ENCODING, local
1970 if (!hStore)
1971 hStore = pfnCertOpenStore(CERT_STORE_PROV_SYSTEM_W, PKCS_7_ASN_ENCODING | X509_ASN_ENCODING,
1973 if (hStore)
1976 while ((pCurCtx = pfnCertEnumCertificatesInStore(hStore, pCurCtx)) != NULL)
2010 pfnCertCloseStore(hStore, CERT_CLOSE_STORE_CHECK_FLAG);

Completed in 59 milliseconds