Changeset 95595 in vbox for trunk/src/VBox/Runtime/common/crypto
- Timestamp:
- Jul 12, 2022 2:20:48 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/crypto/pkcs7-sign.cpp
r93115 r95595 88 88 RTDECL(int) RTCrPkcs7SimpleSignSignedData(uint32_t fFlags, PCRTCRX509CERTIFICATE pSigner, RTCRKEY hPrivateKey, 89 89 void const *pvData, size_t cbData, RTDIGESTTYPE enmDigestType, 90 RTCRSTORE hAdditionalCerts, void *pvResult, size_t *pcbResult, PRTERRINFO pErrInfo) 90 RTCRSTORE hAdditionalCerts, PCRTCRPKCS7ATTRIBUTES pAdditionalAuthenticatedAttribs, 91 void *pvResult, size_t *pcbResult, PRTERRINFO pErrInfo) 91 92 { 92 93 size_t const cbResultBuf = *pcbResult; … … 145 146 if (pCms != NULL) 146 147 { 148 RT_NOREF(pAdditionalAuthenticatedAttribs); /** @todo */ 147 149 if (CMS_add1_signer(pCms, pOsslSigner, pEvpPrivateKey, pEvpMd, fOsslSign) != NULL) 148 150 { … … 203 205 return rc; 204 206 #else 205 RT_NOREF(fFlags, pSigner, hPrivateKey, pvData, cbData, enmDigestType, hAdditionalCerts, pvResult, pErrInfo, cbResultBuf); 207 RT_NOREF(fFlags, pSigner, hPrivateKey, pvData, cbData, enmDigestType, hAdditionalCerts, pAdditionalAuthenticatedAttribs, 208 pvResult, pErrInfo, cbResultBuf); 206 209 *pcbResult = 0; 207 210 return VERR_NOT_IMPLEMENTED;
Note:
See TracChangeset
for help on using the changeset viewer.