Changeset 100442 in vbox for trunk/src/VBox/Runtime/common/ldr
- Timestamp:
- Jul 8, 2023 11:10:51 AM (22 months ago)
- svn:sync-xref-src-repo-rev:
- 158185
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/ldr/ldrPE.cpp
r99669 r100442 2940 2940 { 2941 2941 PCRTCRX509ALGORITHMIDENTIFIER pDigestAlgorithm = &pInfo->pIndData->DigestInfo.DigestAlgorithm; 2942 pInfo->enmDigest = RTCrX509AlgorithmIdentifier_QueryDigestType(pDigestAlgorithm); 2942 pInfo->enmDigest = RTCrX509AlgorithmIdentifier_GetDigestType(pDigestAlgorithm, 2943 true /*fPureDigestsOnly*/); 2943 2944 AssertReturn(pInfo->enmDigest != RTDIGESTTYPE_INVALID, VERR_INTERNAL_ERROR_4); /* Checked above! */ 2944 2945 } … … 3011 3012 { 3012 3013 PCRTCRX509ALGORITHMIDENTIFIER pDigestAlgorithm = &pInfo->pIndData->DigestInfo.DigestAlgorithm; 3013 pInfo->enmDigest = RTCrX509AlgorithmIdentifier_ QueryDigestType(pDigestAlgorithm);3014 pInfo->enmDigest = RTCrX509AlgorithmIdentifier_GetDigestType(pDigestAlgorithm, true /*fPureDigestsOnly*/); 3014 3015 AssertReturn(pInfo->enmDigest != RTDIGESTTYPE_INVALID, VERR_INTERNAL_ERROR_4); /* Checked above! */ 3015 3016
Note:
See TracChangeset
for help on using the changeset viewer.