Searched defs:pIndData (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Runtime/common/crypto/
H A Dspc-sanity.cpp41 RTDECL(int) RTCrSpcIndirectDataContent_CheckSanityEx(PCRTCRSPCINDIRECTDATACONTENT pIndData, argument
58 if (RTCrX509AlgorithmIdentifier_Compare(&pIndData->DigestInfo.DigestAlgorithm, /** @todo not entirely sure about this check... */
62 pIndData->DigestInfo.DigestAlgorithm.Algorithm.szObjId,
65 if (RTCrX509AlgorithmIdentifier_Compare(&pIndData->DigestInfo.DigestAlgorithm,
69 pIndData->DigestInfo.DigestAlgorithm.Algorithm.szObjId,
74 if (RTCrX509AlgorithmIdentifier_QueryDigestType(&pIndData->DigestInfo.DigestAlgorithm) == RTDIGESTTYPE_INVALID)
77 pIndData->DigestInfo.DigestAlgorithm.Algorithm.szObjId);
80 uint32_t cbDigest = RTCrX509AlgorithmIdentifier_QueryDigestSize(&pIndData->DigestInfo.DigestAlgorithm);
81 if ( pIndData->DigestInfo.Digest.Asn1Core.cb != cbDigest
85 pIndData
[all...]
/vbox/src/VBox/Runtime/common/ldr/
H A DldrPE.cpp221 PRTCRSPCINDIRECTDATACONTENT pIndData; member in struct:RTLDRPESIGNATURE
2387 pSignature->pIndData = pSignature->pSignedData->ContentInfo.u.pIndirectDataContent;
2388 Assert(pSignature->pIndData);
2400 rc = RTCrSpcIndirectDataContent_CheckSanityEx(pSignature->pIndData,
2406 PCRTCRX509ALGORITHMIDENTIFIER pDigestAlgorithm = &pSignature->pIndData->DigestInfo.DigestAlgorithm;
2627 AssertPtrReturn(pSignature->pIndData, VERR_INTERNAL_ERROR_5);
2628 AssertReturn(RTASN1CORE_IS_PRESENT(&pSignature->pIndData->DigestInfo.Digest.Asn1Core), VERR_INTERNAL_ERROR_5);
2629 AssertPtrReturn(pSignature->pIndData->DigestInfo.Digest.Asn1Core.uData.pv, VERR_INTERNAL_ERROR_5);
2632 AssertReturn(pSignature->pIndData->DigestInfo.Digest.Asn1Core.cb == cbHash, VERR_INTERNAL_ERROR_5);
2661 if (!memcmp(&pSignature->HashRes, pSignature->pIndData
[all...]

Completed in 50 milliseconds