Lines Matching defs:pIndData

41 RTDECL(int) RTCrSpcIndirectDataContent_CheckSanityEx(PCRTCRSPCINDIRECTDATACONTENT pIndData,
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->DigestInfo.Digest.Asn1Core.cb, cbDigest,
86 pIndData->DigestInfo.DigestAlgorithm.Algorithm.szObjId);
93 if ( pIndData->Data.enmType != RTCRSPCAAOVTYPE_PE_IMAGE_DATA
94 || RTAsn1ObjId_CompareWithString(&pIndData->Data.Type, RTCRSPCPEIMAGEDATA_OID) != 0)
97 pIndData->Data.Type.szObjId, RTCRSPCPEIMAGEDATA_OID, pIndData->Data.enmType);
98 if ( pIndData->Data.uValue.pPeImage
99 || !RTCrSpcPeImageData_IsPresent(pIndData->Data.uValue.pPeImage) )
103 if ( pIndData->Data.uValue.pPeImage->T0.File.enmChoice == RTCRSPCLINKCHOICE_MONIKER
104 && RTCrSpcSerializedObject_IsPresent(pIndData->Data.uValue.pPeImage->T0.File.u.pMoniker) )
106 PCRTCRSPCSERIALIZEDOBJECT pObj = pIndData->Data.uValue.pPeImage->T0.File.u.pMoniker;
145 else if ( pIndData->Data.uValue.pPeImage->T0.File.enmChoice == RTCRSPCLINKCHOICE_FILE
146 && RTCrSpcString_IsPresent(&pIndData->Data.uValue.pPeImage->T0.File.u.pT2->File) )
150 else if ( pIndData->Data.uValue.pPeImage->T0.File.enmChoice == RTCRSPCLINKCHOICE_URL
151 && RTAsn1String_IsPresent(pIndData->Data.uValue.pPeImage->T0.File.u.pUrl) )