Changeset 84239 in vbox for trunk/src/VBox/Runtime/common/crypto
- Timestamp:
- May 10, 2020 12:54:41 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/crypto/pkcs7-sanity.cpp
r82968 r84239 72 72 "%s: SignedData.DigestAlgorithms[%i] is not known: %s", 73 73 pszErrorTag, i, pSignedData->DigestAlgorithms.papItems[i]->Algorithm.szObjId); 74 if (pSignedData->DigestAlgorithms.papItems[i]->Parameters.enmType != RTASN1TYPE_NULL) 74 if ( pSignedData->DigestAlgorithms.papItems[i]->Parameters.enmType != RTASN1TYPE_NULL 75 && pSignedData->DigestAlgorithms.papItems[i]->Parameters.enmType != RTASN1TYPE_NOT_PRESENT) 75 76 return RTErrInfoSetF(pErrInfo, VERR_CR_PKCS7_DIGEST_PARAMS_NOT_IMPL, 76 77 "%s: SignedData.DigestAlgorithms[%i] has parameters: tag=%u",
Note:
See TracChangeset
for help on using the changeset viewer.