Changeset 52542 in vbox for trunk/src/VBox/Runtime/common/crypto
- Timestamp:
- Aug 31, 2014 9:56:35 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 95797
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/crypto/pkcs7-verify.cpp
r52540 r52542 345 345 return VINF_SUCCESS; 346 346 } 347 347 *phDigest = NIL_RTCRDIGEST; /* Make gcc happy. */ 348 348 return RTErrInfoSetF(pErrInfo, VERR_CR_PKCS7_DIGEST_ALGO_NOT_FOUND_IN_LIST, 349 349 "SignerInfo.DigestAlgorithm %s not found.", … … 643 643 for (i = 0; i < pSignedData->SignerInfos.cItems; i++) 644 644 { 645 PCRTCRPKCS7SIGNERINFO pSignerInfo 646 RTCRDIGEST hThisDigest = NIL_RTCRDIGEST;645 PCRTCRPKCS7SIGNERINFO pSignerInfo = &pSignedData->SignerInfos.paItems[i]; 646 RTCRDIGEST hThisDigest; 647 647 rc = rtCrPkcs7VerifyFindDigest(&hThisDigest, pSignedData, pSignerInfo, ahDigests, pErrInfo); 648 648 if (RT_FAILURE(rc))
Note:
See TracChangeset
for help on using the changeset viewer.