Home
last modified time | relevance | path

Searched refs:cbCertif (Results 1 – 5 of 5) sorted by relevance

/dports/security/beid/eid-mw-5.0.8/cardcomm/minidriver/src/
H A DKeyContainer.c120 DWORD cbCertif = 0; in CardGetContainerInfo() local
173 dwReturn = BeidReadCert(pCardData, dwCertSpec, &cbCertif, &pbCertif); in CardGetContainerInfo()
196 LogDump (cbCertif, (char *)pbCertif); in CardGetContainerInfo()
198 LogDumpBin ("C:\\SmartCardMinidriverTest\\auth.crt", cbCertif, (char *)pbCertif); in CardGetContainerInfo()
200 LogDumpBin ("C:\\SmartCardMinidriverTest\\nonrep.crt", cbCertif, (char *)pbCertif); in CardGetContainerInfo()
207 cbCertif, in CardGetContainerInfo()
H A DUtil.c31 DWORD BeidGetPubKey(PCARD_DATA pCardData, DWORD cbCertif, PBYTE pbCertif, DWORD *pcbPubKey, PBYTE … in BeidGetPubKey() argument
56 cbCertif); // The length of the encoded data in BeidGetPubKey()
213 DWORD cbCertif; in BeidCreateMSRoots() local
220 dwReturn = BeidReadCert(pCardData, CERT_CA, &cbCertif, &pbCertif); in BeidCreateMSRoots()
228 LogDumpBin("C:\\SmartCardMinidriverTest\\certca.crt", cbCertif, (char *)pbCertif); in BeidCreateMSRoots()
248 cbCertif); // The length of the encoded data in BeidCreateMSRoots()
278 dwReturn = BeidReadCert(pCardData, CERT_ROOTCA, &cbCertif, &pbCertif); in BeidCreateMSRoots()
285 LogDumpBin("C:\\SmartCardMinidriverTest\\certroot.crt", cbCertif, (char *)pbCertif); in BeidCreateMSRoots()
290 cbCertif); // The length of the encoded data in BeidCreateMSRoots()
H A DSmartCard.c1638 DWORD cbCertif; in BeidReadCert() local
1704 cbCertif = (bRead[2] << 8) + bRead[3] + 4; in BeidReadCert()
1709 *pcbCertif = cbCertif; in BeidReadCert()
1710 LogTrace(LOGTYPE_INFO, WHERE, "returning filelength = %d", cbCertif); in BeidReadCert()
1713 cbRead = cbCertif; in BeidReadCert()
1715 *ppbCertif = pCardData->pfnCspAlloc(cbCertif); in BeidReadCert()
1722 dwReturn = BeidReadFile(pCardData, 0, &cbCertif, *ppbCertif); in BeidReadCert()
1724 ( cbCertif != cbRead ) ) in BeidReadCert()
1731 *pcbCertif = cbCertif; in BeidReadCert()
H A DCardAndContProp.c48 DWORD cbCertif = 0; in CardGetContainerProperty() local
116 dwReturn = BeidReadCert(pCardData, dwCertSpec, &cbCertif, &pbCertif); in CardGetContainerProperty()
139 cbCertif, in CardGetContainerProperty()
/dports/security/beid/eid-mw-5.0.8/cardcomm/minidriver/src/inc/
H A Dutil.h23 extern DWORD BeidGetPubKey(PCARD_DATA pCardData, DWORD cbCertif, PBYTE pbCertif, DWORD …