2 * Copyright 2007 Juan Lang
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 #include "wine/port.h"
23 #define NONAMELESSUNION
29 #include "wine/debug.h"
30 #include "wine/exception.h"
31 #include "crypt32_private.h"
33 WINE_DEFAULT_DEBUG_CHANNEL(crypt);
35 /* Called when a message's ref count reaches zero. Free any message-specific
38 typedef void (*CryptMsgCloseFunc)(HCRYPTMSG msg);
40 typedef BOOL (*CryptMsgGetParamFunc)(HCRYPTMSG hCryptMsg, DWORD dwParamType,
41 DWORD dwIndex, void *pvData, DWORD *pcbData);
43 typedef BOOL (*CryptMsgUpdateFunc)(HCRYPTMSG hCryptMsg, const BYTE *pbData,
44 DWORD cbData, BOOL fFinal);
46 typedef BOOL (*CryptMsgControlFunc)(HCRYPTMSG hCryptMsg, DWORD dwFlags,
47 DWORD dwCtrlType, const void *pvCtrlPara);
49 static BOOL CRYPT_DefaultMsgControl(HCRYPTMSG hCryptMsg, DWORD dwFlags,
50 DWORD dwCtrlType, const void *pvCtrlPara)
52 TRACE("(%p, %08x, %d, %p)\n", hCryptMsg, dwFlags, dwCtrlType, pvCtrlPara);
53 SetLastError(E_INVALIDARG);
57 typedef enum _CryptMsgState {
60 MsgStateDataFinalized,
64 typedef struct _CryptMsgBase
69 CMSG_STREAM_INFO stream_info;
71 CryptMsgCloseFunc close;
72 CryptMsgUpdateFunc update;
73 CryptMsgGetParamFunc get_param;
74 CryptMsgControlFunc control;
77 static inline void CryptMsgBase_Init(CryptMsgBase *msg, DWORD dwFlags,
78 PCMSG_STREAM_INFO pStreamInfo, CryptMsgCloseFunc close,
79 CryptMsgGetParamFunc get_param, CryptMsgUpdateFunc update,
80 CryptMsgControlFunc control)
83 msg->open_flags = dwFlags;
87 msg->stream_info = *pStreamInfo;
91 msg->streamed = FALSE;
92 memset(&msg->stream_info, 0, sizeof(msg->stream_info));
95 msg->get_param = get_param;
97 msg->control = control;
98 msg->state = MsgStateInit;
101 typedef struct _CDataEncodeMsg
104 DWORD bare_content_len;
108 static const BYTE empty_data_content[] = { 0x04,0x00 };
110 static void CDataEncodeMsg_Close(HCRYPTMSG hCryptMsg)
112 CDataEncodeMsg *msg = hCryptMsg;
114 if (msg->bare_content != empty_data_content)
115 LocalFree(msg->bare_content);
118 static BOOL WINAPI CRYPT_EncodeContentLength(DWORD dwCertEncodingType,
119 LPCSTR lpszStructType, const void *pvStructInfo, DWORD dwFlags,
120 PCRYPT_ENCODE_PARA pEncodePara, BYTE *pbEncoded, DWORD *pcbEncoded)
122 DWORD dataLen = *(DWORD *)pvStructInfo;
126 /* Trick: report bytes needed based on total message length, even though
127 * the message isn't available yet. The caller will use the length
128 * reported here to encode its length.
130 CRYPT_EncodeLen(dataLen, NULL, &lenBytes);
132 *pcbEncoded = 1 + lenBytes + dataLen;
135 if ((ret = CRYPT_EncodeEnsureSpace(dwFlags, pEncodePara, pbEncoded,
136 pcbEncoded, 1 + lenBytes)))
138 if (dwFlags & CRYPT_ENCODE_ALLOC_FLAG)
139 pbEncoded = *(BYTE **)pbEncoded;
140 *pbEncoded++ = ASN_OCTETSTRING;
141 CRYPT_EncodeLen(dataLen, pbEncoded,
148 static BOOL CRYPT_EncodeDataContentInfoHeader(const CDataEncodeMsg *msg,
149 CRYPT_DATA_BLOB *header)
153 if (msg->base.streamed && msg->base.stream_info.cbContent == 0xffffffff)
155 static const BYTE headerValue[] = { 0x30,0x80,0x06,0x09,0x2a,0x86,0x48,
156 0x86,0xf7,0x0d,0x01,0x07,0x01,0xa0,0x80,0x24,0x80 };
158 header->pbData = LocalAlloc(0, sizeof(headerValue));
161 header->cbData = sizeof(headerValue);
162 memcpy(header->pbData, headerValue, sizeof(headerValue));
170 struct AsnConstructedItem constructed = { 0,
171 &msg->base.stream_info.cbContent, CRYPT_EncodeContentLength };
172 struct AsnEncodeSequenceItem items[2] = {
173 { szOID_RSA_data, CRYPT_AsnEncodeOid, 0 },
174 { &constructed, CRYPT_AsnEncodeConstructed, 0 },
177 ret = CRYPT_AsnEncodeSequence(X509_ASN_ENCODING, items,
178 sizeof(items) / sizeof(items[0]), CRYPT_ENCODE_ALLOC_FLAG, NULL,
179 (LPBYTE)&header->pbData, &header->cbData);
182 /* Trick: subtract the content length from the reported length,
183 * as the actual content hasn't come yet.
185 header->cbData -= msg->base.stream_info.cbContent;
191 static BOOL CDataEncodeMsg_Update(HCRYPTMSG hCryptMsg, const BYTE *pbData,
192 DWORD cbData, BOOL fFinal)
194 CDataEncodeMsg *msg = hCryptMsg;
197 if (msg->base.state == MsgStateFinalized)
198 SetLastError(CRYPT_E_MSG_ERROR);
199 else if (msg->base.streamed)
203 if (msg->base.state != MsgStateUpdated)
205 CRYPT_DATA_BLOB header;
207 ret = CRYPT_EncodeDataContentInfoHeader(msg, &header);
210 ret = msg->base.stream_info.pfnStreamOutput(
211 msg->base.stream_info.pvArg, header.pbData, header.cbData,
213 LocalFree(header.pbData);
216 /* Curiously, every indefinite-length streamed update appears to
217 * get its own tag and length, regardless of fFinal.
219 if (msg->base.stream_info.cbContent == 0xffffffff)
224 ret = CRYPT_EncodeContentLength(X509_ASN_ENCODING, NULL,
225 &cbData, CRYPT_ENCODE_ALLOC_FLAG, NULL, (BYTE *)&header,
229 ret = msg->base.stream_info.pfnStreamOutput(
230 msg->base.stream_info.pvArg, header, headerLen,
237 ret = msg->base.stream_info.pfnStreamOutput(
238 msg->base.stream_info.pvArg, (BYTE *)pbData, cbData,
240 msg->base.state = MsgStateUpdated;
244 msg->base.state = MsgStateFinalized;
245 if (msg->base.stream_info.cbContent == 0xffffffff)
247 BYTE indefinite_trailer[6] = { 0 };
249 ret = msg->base.stream_info.pfnStreamOutput(
250 msg->base.stream_info.pvArg, (BYTE *)pbData, cbData,
253 ret = msg->base.stream_info.pfnStreamOutput(
254 msg->base.stream_info.pvArg, indefinite_trailer,
255 sizeof(indefinite_trailer), TRUE);
258 ret = msg->base.stream_info.pfnStreamOutput(
259 msg->base.stream_info.pvArg, (BYTE *)pbData, cbData, TRUE);
264 SetLastError(STATUS_ACCESS_VIOLATION);
273 if (msg->base.open_flags & CMSG_DETACHED_FLAG)
274 SetLastError(E_INVALIDARG);
276 SetLastError(CRYPT_E_MSG_ERROR);
280 msg->base.state = MsgStateFinalized;
282 SetLastError(E_INVALIDARG);
285 CRYPT_DATA_BLOB blob = { cbData, (LPBYTE)pbData };
287 /* non-streamed data messages don't allow non-final updates,
288 * don't bother checking whether data already exist, they can't.
290 ret = CryptEncodeObjectEx(X509_ASN_ENCODING, X509_OCTET_STRING,
291 &blob, CRYPT_ENCODE_ALLOC_FLAG, NULL, &msg->bare_content,
292 &msg->bare_content_len);
299 static BOOL CRYPT_CopyParam(void *pvData, DWORD *pcbData, const void *src,
306 else if (*pcbData < len)
309 SetLastError(ERROR_MORE_DATA);
315 memcpy(pvData, src, len);
320 static BOOL CDataEncodeMsg_GetParam(HCRYPTMSG hCryptMsg, DWORD dwParamType,
321 DWORD dwIndex, void *pvData, DWORD *pcbData)
323 CDataEncodeMsg *msg = hCryptMsg;
328 case CMSG_CONTENT_PARAM:
329 if (msg->base.streamed)
330 SetLastError(E_INVALIDARG);
333 CRYPT_CONTENT_INFO info;
334 char rsa_data[] = "1.2.840.113549.1.7.1";
336 info.pszObjId = rsa_data;
337 info.Content.cbData = msg->bare_content_len;
338 info.Content.pbData = msg->bare_content;
339 ret = CryptEncodeObject(X509_ASN_ENCODING, PKCS_CONTENT_INFO, &info,
343 case CMSG_BARE_CONTENT_PARAM:
344 if (msg->base.streamed)
345 SetLastError(E_INVALIDARG);
347 ret = CRYPT_CopyParam(pvData, pcbData, msg->bare_content,
348 msg->bare_content_len);
351 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
356 static HCRYPTMSG CDataEncodeMsg_Open(DWORD dwFlags, const void *pvMsgEncodeInfo,
357 LPSTR pszInnerContentObjID, PCMSG_STREAM_INFO pStreamInfo)
363 SetLastError(E_INVALIDARG);
366 msg = CryptMemAlloc(sizeof(CDataEncodeMsg));
369 CryptMsgBase_Init((CryptMsgBase *)msg, dwFlags, pStreamInfo,
370 CDataEncodeMsg_Close, CDataEncodeMsg_GetParam, CDataEncodeMsg_Update,
371 CRYPT_DefaultMsgControl);
372 msg->bare_content_len = sizeof(empty_data_content);
373 msg->bare_content = (LPBYTE)empty_data_content;
378 typedef struct _CHashEncodeMsg
383 CRYPT_DATA_BLOB data;
386 static void CHashEncodeMsg_Close(HCRYPTMSG hCryptMsg)
388 CHashEncodeMsg *msg = hCryptMsg;
390 CryptMemFree(msg->data.pbData);
391 CryptDestroyHash(msg->hash);
392 if (msg->base.open_flags & CMSG_CRYPT_RELEASE_CONTEXT_FLAG)
393 CryptReleaseContext(msg->prov, 0);
396 static BOOL CRYPT_EncodePKCSDigestedData(CHashEncodeMsg *msg, void *pvData,
401 DWORD size = sizeof(algID);
403 ret = CryptGetHashParam(msg->hash, HP_ALGID, (BYTE *)&algID, &size, 0);
406 CRYPT_DIGESTED_DATA digestedData = { 0 };
407 char oid_rsa_data[] = szOID_RSA_data;
409 digestedData.version = CMSG_HASHED_DATA_PKCS_1_5_VERSION;
410 digestedData.DigestAlgorithm.pszObjId = (LPSTR)CertAlgIdToOID(algID);
411 /* FIXME: what about digestedData.DigestAlgorithm.Parameters? */
412 /* Quirk: OID is only encoded messages if an update has happened */
413 if (msg->base.state != MsgStateInit)
414 digestedData.ContentInfo.pszObjId = oid_rsa_data;
415 if (!(msg->base.open_flags & CMSG_DETACHED_FLAG) && msg->data.cbData)
417 ret = CRYPT_AsnEncodeOctets(0, NULL, &msg->data,
418 CRYPT_ENCODE_ALLOC_FLAG, NULL,
419 (LPBYTE)&digestedData.ContentInfo.Content.pbData,
420 &digestedData.ContentInfo.Content.cbData);
422 if (msg->base.state == MsgStateFinalized)
424 size = sizeof(DWORD);
425 ret = CryptGetHashParam(msg->hash, HP_HASHSIZE,
426 (LPBYTE)&digestedData.hash.cbData, &size, 0);
429 digestedData.hash.pbData = CryptMemAlloc(
430 digestedData.hash.cbData);
431 ret = CryptGetHashParam(msg->hash, HP_HASHVAL,
432 digestedData.hash.pbData, &digestedData.hash.cbData, 0);
436 ret = CRYPT_AsnEncodePKCSDigestedData(&digestedData, pvData,
438 CryptMemFree(digestedData.hash.pbData);
439 LocalFree(digestedData.ContentInfo.Content.pbData);
444 static BOOL CHashEncodeMsg_GetParam(HCRYPTMSG hCryptMsg, DWORD dwParamType,
445 DWORD dwIndex, void *pvData, DWORD *pcbData)
447 CHashEncodeMsg *msg = hCryptMsg;
450 TRACE("(%p, %d, %d, %p, %p)\n", hCryptMsg, dwParamType, dwIndex,
455 case CMSG_BARE_CONTENT_PARAM:
456 if (msg->base.streamed)
457 SetLastError(E_INVALIDARG);
459 ret = CRYPT_EncodePKCSDigestedData(msg, pvData, pcbData);
461 case CMSG_CONTENT_PARAM:
463 CRYPT_CONTENT_INFO info;
465 ret = CryptMsgGetParam(hCryptMsg, CMSG_BARE_CONTENT_PARAM, 0, NULL,
466 &info.Content.cbData);
469 info.Content.pbData = CryptMemAlloc(info.Content.cbData);
470 if (info.Content.pbData)
472 ret = CryptMsgGetParam(hCryptMsg, CMSG_BARE_CONTENT_PARAM, 0,
473 info.Content.pbData, &info.Content.cbData);
476 char oid_rsa_hashed[] = szOID_RSA_hashedData;
478 info.pszObjId = oid_rsa_hashed;
479 ret = CryptEncodeObjectEx(X509_ASN_ENCODING,
480 PKCS_CONTENT_INFO, &info, 0, NULL, pvData, pcbData);
482 CryptMemFree(info.Content.pbData);
489 case CMSG_COMPUTED_HASH_PARAM:
490 ret = CryptGetHashParam(msg->hash, HP_HASHVAL, pvData, pcbData, 0);
492 case CMSG_VERSION_PARAM:
493 if (msg->base.state != MsgStateFinalized)
494 SetLastError(CRYPT_E_MSG_ERROR);
497 DWORD version = CMSG_HASHED_DATA_PKCS_1_5_VERSION;
499 /* Since the data are always encoded as octets, the version is
500 * always 0 (see rfc3852, section 7)
502 ret = CRYPT_CopyParam(pvData, pcbData, &version, sizeof(version));
506 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
511 static BOOL CHashEncodeMsg_Update(HCRYPTMSG hCryptMsg, const BYTE *pbData,
512 DWORD cbData, BOOL fFinal)
514 CHashEncodeMsg *msg = hCryptMsg;
517 TRACE("(%p, %p, %d, %d)\n", hCryptMsg, pbData, cbData, fFinal);
519 if (msg->base.state == MsgStateFinalized)
520 SetLastError(CRYPT_E_MSG_ERROR);
521 else if (msg->base.streamed || (msg->base.open_flags & CMSG_DETACHED_FLAG))
523 /* Doesn't do much, as stream output is never called, and you
524 * can't get the content.
526 ret = CryptHashData(msg->hash, pbData, cbData, 0);
527 msg->base.state = fFinal ? MsgStateFinalized : MsgStateUpdated;
532 SetLastError(CRYPT_E_MSG_ERROR);
535 ret = CryptHashData(msg->hash, pbData, cbData, 0);
538 msg->data.pbData = CryptMemAlloc(cbData);
539 if (msg->data.pbData)
541 memcpy(msg->data.pbData + msg->data.cbData, pbData, cbData);
542 msg->data.cbData += cbData;
547 msg->base.state = MsgStateFinalized;
553 static HCRYPTMSG CHashEncodeMsg_Open(DWORD dwFlags, const void *pvMsgEncodeInfo,
554 LPSTR pszInnerContentObjID, PCMSG_STREAM_INFO pStreamInfo)
557 const CMSG_HASHED_ENCODE_INFO *info = pvMsgEncodeInfo;
561 if (info->cbSize != sizeof(CMSG_HASHED_ENCODE_INFO))
563 SetLastError(E_INVALIDARG);
566 if (!(algID = CertOIDToAlgId(info->HashAlgorithm.pszObjId)))
568 SetLastError(CRYPT_E_UNKNOWN_ALGO);
571 if (info->hCryptProv)
572 prov = info->hCryptProv;
575 prov = CRYPT_GetDefaultProvider();
576 dwFlags &= ~CMSG_CRYPT_RELEASE_CONTEXT_FLAG;
578 msg = CryptMemAlloc(sizeof(CHashEncodeMsg));
581 CryptMsgBase_Init((CryptMsgBase *)msg, dwFlags, pStreamInfo,
582 CHashEncodeMsg_Close, CHashEncodeMsg_GetParam, CHashEncodeMsg_Update,
583 CRYPT_DefaultMsgControl);
585 msg->data.cbData = 0;
586 msg->data.pbData = NULL;
587 if (!CryptCreateHash(prov, algID, 0, 0, &msg->hash))
596 typedef struct _CMSG_SIGNER_ENCODE_INFO_WITH_CMS
599 PCERT_INFO pCertInfo;
600 HCRYPTPROV hCryptProv;
602 CRYPT_ALGORITHM_IDENTIFIER HashAlgorithm;
605 PCRYPT_ATTRIBUTE rgAuthAttr;
607 PCRYPT_ATTRIBUTE rgUnauthAttr;
609 CRYPT_ALGORITHM_IDENTIFIER HashEncryptionAlgorithm;
610 void *pvHashEncryptionAuxInfo;
611 } CMSG_SIGNER_ENCODE_INFO_WITH_CMS, *PCMSG_SIGNER_ENCODE_INFO_WITH_CMS;
613 typedef struct _CMSG_SIGNED_ENCODE_INFO_WITH_CMS
617 PCMSG_SIGNER_ENCODE_INFO_WITH_CMS rgSigners;
619 PCERT_BLOB rgCertEncoded;
621 PCRL_BLOB rgCrlEncoded;
622 DWORD cAttrCertEncoded;
623 PCERT_BLOB rgAttrCertEncoded;
624 } CMSG_SIGNED_ENCODE_INFO_WITH_CMS, *PCMSG_SIGNED_ENCODE_INFO_WITH_CMS;
626 static BOOL CRYPT_IsValidSigner(const CMSG_SIGNER_ENCODE_INFO_WITH_CMS *signer)
628 if (signer->cbSize != sizeof(CMSG_SIGNER_ENCODE_INFO) &&
629 signer->cbSize != sizeof(CMSG_SIGNER_ENCODE_INFO_WITH_CMS))
631 SetLastError(E_INVALIDARG);
634 if (signer->cbSize == sizeof(CMSG_SIGNER_ENCODE_INFO))
636 if (!signer->pCertInfo->SerialNumber.cbData)
638 SetLastError(E_INVALIDARG);
641 if (!signer->pCertInfo->Issuer.cbData)
643 SetLastError(E_INVALIDARG);
647 else if (signer->cbSize == sizeof(CMSG_SIGNER_ENCODE_INFO_WITH_CMS))
649 switch (signer->SignerId.dwIdChoice)
652 if (!signer->pCertInfo->SerialNumber.cbData)
654 SetLastError(E_INVALIDARG);
657 if (!signer->pCertInfo->Issuer.cbData)
659 SetLastError(E_INVALIDARG);
663 case CERT_ID_ISSUER_SERIAL_NUMBER:
664 if (!signer->SignerId.u.IssuerSerialNumber.SerialNumber.cbData)
666 SetLastError(E_INVALIDARG);
669 if (!signer->SignerId.u.IssuerSerialNumber.Issuer.cbData)
671 SetLastError(E_INVALIDARG);
675 case CERT_ID_KEY_IDENTIFIER:
676 if (!signer->SignerId.u.KeyId.cbData)
678 SetLastError(E_INVALIDARG);
683 SetLastError(E_INVALIDARG);
685 if (signer->HashEncryptionAlgorithm.pszObjId)
687 FIXME("CMSG_SIGNER_ENCODE_INFO with CMS fields unsupported\n");
691 if (!signer->hCryptProv)
693 SetLastError(E_INVALIDARG);
696 if (!CertOIDToAlgId(signer->HashAlgorithm.pszObjId))
698 SetLastError(CRYPT_E_UNKNOWN_ALGO);
704 static BOOL CRYPT_ConstructBlob(CRYPT_DATA_BLOB *out, const CRYPT_DATA_BLOB *in)
708 out->cbData = in->cbData;
711 out->pbData = CryptMemAlloc(out->cbData);
713 memcpy(out->pbData, in->pbData, out->cbData);
722 static BOOL CRYPT_ConstructBlobArray(DWORD *outCBlobs,
723 PCRYPT_DATA_BLOB *outPBlobs, DWORD cBlobs, const CRYPT_DATA_BLOB *pBlobs)
730 *outPBlobs = CryptMemAlloc(cBlobs * sizeof(CRYPT_DATA_BLOB));
735 memset(*outPBlobs, 0, cBlobs * sizeof(CRYPT_DATA_BLOB));
736 for (i = 0; ret && i < cBlobs; i++)
737 ret = CRYPT_ConstructBlob(&(*outPBlobs)[i], &pBlobs[i]);
745 static void CRYPT_FreeBlobArray(DWORD cBlobs, PCRYPT_DATA_BLOB blobs)
749 for (i = 0; i < cBlobs; i++)
750 CryptMemFree(blobs[i].pbData);
754 static BOOL CRYPT_ConstructAttribute(CRYPT_ATTRIBUTE *out,
755 const CRYPT_ATTRIBUTE *in)
759 out->pszObjId = CryptMemAlloc(strlen(in->pszObjId) + 1);
762 strcpy(out->pszObjId, in->pszObjId);
763 ret = CRYPT_ConstructBlobArray(&out->cValue, &out->rgValue,
764 in->cValue, in->rgValue);
771 static BOOL CRYPT_ConstructAttributes(CRYPT_ATTRIBUTES *out,
772 const CRYPT_ATTRIBUTES *in)
776 out->cAttr = in->cAttr;
779 out->rgAttr = CryptMemAlloc(out->cAttr * sizeof(CRYPT_ATTRIBUTE));
784 memset(out->rgAttr, 0, out->cAttr * sizeof(CRYPT_ATTRIBUTE));
785 for (i = 0; ret && i < out->cAttr; i++)
786 ret = CRYPT_ConstructAttribute(&out->rgAttr[i], &in->rgAttr[i]);
796 /* Constructs a CMSG_CMS_SIGNER_INFO from a CMSG_SIGNER_ENCODE_INFO_WITH_CMS. */
797 static BOOL CSignerInfo_Construct(CMSG_CMS_SIGNER_INFO *info,
798 const CMSG_SIGNER_ENCODE_INFO_WITH_CMS *in)
802 if (in->cbSize == sizeof(CMSG_SIGNER_ENCODE_INFO))
804 info->dwVersion = CMSG_SIGNER_INFO_V1;
805 ret = CRYPT_ConstructBlob(&info->SignerId.u.IssuerSerialNumber.Issuer,
806 &in->pCertInfo->Issuer);
808 ret = CRYPT_ConstructBlob(
809 &info->SignerId.u.IssuerSerialNumber.SerialNumber,
810 &in->pCertInfo->SerialNumber);
811 info->SignerId.dwIdChoice = CERT_ID_ISSUER_SERIAL_NUMBER;
812 info->HashEncryptionAlgorithm.pszObjId =
813 in->pCertInfo->SubjectPublicKeyInfo.Algorithm.pszObjId;
815 ret = CRYPT_ConstructBlob(&info->HashEncryptionAlgorithm.Parameters,
816 &in->pCertInfo->SubjectPublicKeyInfo.Algorithm.Parameters);
820 const CRYPT_ALGORITHM_IDENTIFIER *pEncrAlg;
822 /* Implicitly in->cbSize == sizeof(CMSG_SIGNER_ENCODE_INFO_WITH_CMS).
823 * See CRYPT_IsValidSigner.
825 if (!in->SignerId.dwIdChoice)
827 info->dwVersion = CMSG_SIGNER_INFO_V1;
828 ret = CRYPT_ConstructBlob(&info->SignerId.u.IssuerSerialNumber.Issuer,
829 &in->pCertInfo->Issuer);
831 ret = CRYPT_ConstructBlob(
832 &info->SignerId.u.IssuerSerialNumber.SerialNumber,
833 &in->pCertInfo->SerialNumber);
834 info->SignerId.dwIdChoice = CERT_ID_ISSUER_SERIAL_NUMBER;
836 else if (in->SignerId.dwIdChoice == CERT_ID_ISSUER_SERIAL_NUMBER)
838 info->dwVersion = CMSG_SIGNER_INFO_V1;
839 info->SignerId.dwIdChoice = CERT_ID_ISSUER_SERIAL_NUMBER;
840 ret = CRYPT_ConstructBlob(&info->SignerId.u.IssuerSerialNumber.Issuer,
841 &in->SignerId.u.IssuerSerialNumber.Issuer);
843 ret = CRYPT_ConstructBlob(
844 &info->SignerId.u.IssuerSerialNumber.SerialNumber,
845 &in->SignerId.u.IssuerSerialNumber.SerialNumber);
849 /* Implicitly dwIdChoice == CERT_ID_KEY_IDENTIFIER */
850 info->dwVersion = CMSG_SIGNER_INFO_V3;
851 info->SignerId.dwIdChoice = CERT_ID_KEY_IDENTIFIER;
852 ret = CRYPT_ConstructBlob(&info->SignerId.u.KeyId,
853 &in->SignerId.u.KeyId);
855 pEncrAlg = in->HashEncryptionAlgorithm.pszObjId ?
856 &in->HashEncryptionAlgorithm :
857 &in->pCertInfo->SubjectPublicKeyInfo.Algorithm;
858 info->HashEncryptionAlgorithm.pszObjId = pEncrAlg->pszObjId;
860 ret = CRYPT_ConstructBlob(&info->HashEncryptionAlgorithm.Parameters,
861 &pEncrAlg->Parameters);
863 /* Assumption: algorithm IDs will point to static strings, not
864 * stack-based ones, so copying the pointer values is safe.
866 info->HashAlgorithm.pszObjId = in->HashAlgorithm.pszObjId;
868 ret = CRYPT_ConstructBlob(&info->HashAlgorithm.Parameters,
869 &in->HashAlgorithm.Parameters);
871 ret = CRYPT_ConstructAttributes(&info->AuthAttrs,
872 (CRYPT_ATTRIBUTES *)&in->cAuthAttr);
874 ret = CRYPT_ConstructAttributes(&info->UnauthAttrs,
875 (CRYPT_ATTRIBUTES *)&in->cUnauthAttr);
879 static void CSignerInfo_Free(CMSG_CMS_SIGNER_INFO *info)
883 if (info->SignerId.dwIdChoice == CERT_ID_ISSUER_SERIAL_NUMBER)
885 CryptMemFree(info->SignerId.u.IssuerSerialNumber.Issuer.pbData);
886 CryptMemFree(info->SignerId.u.IssuerSerialNumber.SerialNumber.pbData);
889 CryptMemFree(info->SignerId.u.KeyId.pbData);
890 CryptMemFree(info->HashAlgorithm.Parameters.pbData);
891 CryptMemFree(info->HashEncryptionAlgorithm.Parameters.pbData);
892 CryptMemFree(info->EncryptedHash.pbData);
893 for (i = 0; i < info->AuthAttrs.cAttr; i++)
895 for (j = 0; j < info->AuthAttrs.rgAttr[i].cValue; j++)
896 CryptMemFree(info->AuthAttrs.rgAttr[i].rgValue[j].pbData);
897 CryptMemFree(info->AuthAttrs.rgAttr[i].rgValue);
898 CryptMemFree(info->AuthAttrs.rgAttr[i].pszObjId);
900 CryptMemFree(info->AuthAttrs.rgAttr);
901 for (i = 0; i < info->UnauthAttrs.cAttr; i++)
903 for (j = 0; j < info->UnauthAttrs.rgAttr[i].cValue; j++)
904 CryptMemFree(info->UnauthAttrs.rgAttr[i].rgValue[j].pbData);
905 CryptMemFree(info->UnauthAttrs.rgAttr[i].rgValue);
906 CryptMemFree(info->UnauthAttrs.rgAttr[i].pszObjId);
908 CryptMemFree(info->UnauthAttrs.rgAttr);
911 typedef struct _CSignerHandles
913 HCRYPTHASH contentHash;
914 HCRYPTHASH authAttrHash;
917 typedef struct _CSignedMsgData
919 CRYPT_SIGNED_INFO *info;
921 CSignerHandles *signerHandles;
924 /* Constructs the signer handles for the signerIndex'th signer of msg_data.
925 * Assumes signerIndex is a valid idnex, and that msg_data's info has already
928 static BOOL CSignedMsgData_ConstructSignerHandles(CSignedMsgData *msg_data,
929 DWORD signerIndex, HCRYPTPROV crypt_prov)
934 algID = CertOIDToAlgId(
935 msg_data->info->rgSignerInfo[signerIndex].HashAlgorithm.pszObjId);
936 ret = CryptCreateHash(crypt_prov, algID, 0, 0,
937 &msg_data->signerHandles->contentHash);
938 if (ret && msg_data->info->rgSignerInfo[signerIndex].AuthAttrs.cAttr > 0)
939 ret = CryptCreateHash(crypt_prov, algID, 0, 0,
940 &msg_data->signerHandles->authAttrHash);
944 /* Allocates a CSignedMsgData's handles. Assumes its info has already been
947 static BOOL CSignedMsgData_AllocateHandles(CSignedMsgData *msg_data)
951 if (msg_data->info->cSignerInfo)
953 msg_data->signerHandles =
954 CryptMemAlloc(msg_data->info->cSignerInfo * sizeof(CSignerHandles));
955 if (msg_data->signerHandles)
957 msg_data->cSignerHandle = msg_data->info->cSignerInfo;
958 memset(msg_data->signerHandles, 0,
959 msg_data->info->cSignerInfo * sizeof(CSignerHandles));
963 msg_data->cSignerHandle = 0;
969 msg_data->cSignerHandle = 0;
970 msg_data->signerHandles = NULL;
975 static void CSignedMsgData_CloseHandles(CSignedMsgData *msg_data)
979 for (i = 0; i < msg_data->cSignerHandle; i++)
981 if (msg_data->signerHandles[i].contentHash)
982 CryptDestroyHash(msg_data->signerHandles[i].contentHash);
983 if (msg_data->signerHandles[i].authAttrHash)
984 CryptDestroyHash(msg_data->signerHandles[i].authAttrHash);
986 CryptMemFree(msg_data->signerHandles);
987 msg_data->signerHandles = NULL;
988 msg_data->cSignerHandle = 0;
991 static BOOL CSignedMsgData_UpdateHash(CSignedMsgData *msg_data,
992 const BYTE *pbData, DWORD cbData)
997 for (i = 0; ret && i < msg_data->cSignerHandle; i++)
998 ret = CryptHashData(msg_data->signerHandles[i].contentHash, pbData,
1003 static BOOL CRYPT_AppendAttribute(CRYPT_ATTRIBUTES *out,
1004 const CRYPT_ATTRIBUTE *in)
1008 out->rgAttr = CryptMemRealloc(out->rgAttr,
1009 (out->cAttr + 1) * sizeof(CRYPT_ATTRIBUTE));
1012 ret = CRYPT_ConstructAttribute(&out->rgAttr[out->cAttr], in);
1019 static BOOL CSignedMsgData_AppendMessageDigestAttribute(
1020 CSignedMsgData *msg_data, DWORD signerIndex)
1024 CRYPT_HASH_BLOB hash = { 0, NULL }, encodedHash = { 0, NULL };
1025 char messageDigest[] = szOID_RSA_messageDigest;
1026 CRYPT_ATTRIBUTE messageDigestAttr = { messageDigest, 1, &encodedHash };
1028 size = sizeof(DWORD);
1029 ret = CryptGetHashParam(
1030 msg_data->signerHandles[signerIndex].contentHash, HP_HASHSIZE,
1031 (LPBYTE)&hash.cbData, &size, 0);
1034 hash.pbData = CryptMemAlloc(hash.cbData);
1035 ret = CryptGetHashParam(
1036 msg_data->signerHandles[signerIndex].contentHash, HP_HASHVAL,
1037 hash.pbData, &hash.cbData, 0);
1040 ret = CRYPT_AsnEncodeOctets(0, NULL, &hash, CRYPT_ENCODE_ALLOC_FLAG,
1041 NULL, (LPBYTE)&encodedHash.pbData, &encodedHash.cbData);
1044 ret = CRYPT_AppendAttribute(
1045 &msg_data->info->rgSignerInfo[signerIndex].AuthAttrs,
1046 &messageDigestAttr);
1047 LocalFree(encodedHash.pbData);
1050 CryptMemFree(hash.pbData);
1060 static BOOL CSignedMsgData_UpdateAuthenticatedAttributes(
1061 CSignedMsgData *msg_data, SignOrVerify flag)
1066 TRACE("(%p)\n", msg_data);
1068 for (i = 0; ret && i < msg_data->info->cSignerInfo; i++)
1070 if (msg_data->info->rgSignerInfo[i].AuthAttrs.cAttr)
1074 BYTE oid_rsa_data_encoded[] = { 0x06,0x09,0x2a,0x86,0x48,0x86,
1075 0xf7,0x0d,0x01,0x07,0x01 };
1076 CRYPT_DATA_BLOB content = { sizeof(oid_rsa_data_encoded),
1077 oid_rsa_data_encoded };
1078 char contentType[] = szOID_RSA_contentType;
1079 CRYPT_ATTRIBUTE contentTypeAttr = { contentType, 1, &content };
1081 /* FIXME: does this depend on inner OID? */
1082 ret = CRYPT_AppendAttribute(
1083 &msg_data->info->rgSignerInfo[i].AuthAttrs, &contentTypeAttr);
1085 ret = CSignedMsgData_AppendMessageDigestAttribute(msg_data,
1090 LPBYTE encodedAttrs;
1093 ret = CryptEncodeObjectEx(X509_ASN_ENCODING, PKCS_ATTRIBUTES,
1094 &msg_data->info->rgSignerInfo[i].AuthAttrs,
1095 CRYPT_ENCODE_ALLOC_FLAG, NULL, &encodedAttrs, &size);
1098 ret = CryptHashData(
1099 msg_data->signerHandles[i].authAttrHash, encodedAttrs,
1101 LocalFree(encodedAttrs);
1106 TRACE("returning %d\n", ret);
1110 static void CRYPT_ReverseBytes(CRYPT_HASH_BLOB *hash)
1115 for (i = 0; i < hash->cbData / 2; i++)
1117 tmp = hash->pbData[hash->cbData - i - 1];
1118 hash->pbData[hash->cbData - i - 1] = hash->pbData[i];
1119 hash->pbData[i] = tmp;
1123 static BOOL CSignedMsgData_Sign(CSignedMsgData *msg_data)
1128 TRACE("(%p)\n", msg_data);
1130 for (i = 0; ret && i < msg_data->info->cSignerInfo; i++)
1134 if (msg_data->info->rgSignerInfo[i].AuthAttrs.cAttr)
1135 hash = msg_data->signerHandles[i].authAttrHash;
1137 hash = msg_data->signerHandles[i].contentHash;
1138 ret = CryptSignHashW(hash, AT_SIGNATURE, NULL, 0, NULL,
1139 &msg_data->info->rgSignerInfo[i].EncryptedHash.cbData);
1142 msg_data->info->rgSignerInfo[i].EncryptedHash.pbData =
1144 msg_data->info->rgSignerInfo[i].EncryptedHash.cbData);
1145 if (msg_data->info->rgSignerInfo[i].EncryptedHash.pbData)
1147 ret = CryptSignHashW(hash, AT_SIGNATURE, NULL, 0,
1148 msg_data->info->rgSignerInfo[i].EncryptedHash.pbData,
1149 &msg_data->info->rgSignerInfo[i].EncryptedHash.cbData);
1152 &msg_data->info->rgSignerInfo[i].EncryptedHash);
1161 static BOOL CSignedMsgData_Update(CSignedMsgData *msg_data,
1162 const BYTE *pbData, DWORD cbData, BOOL fFinal, SignOrVerify flag)
1164 BOOL ret = CSignedMsgData_UpdateHash(msg_data, pbData, cbData);
1168 ret = CSignedMsgData_UpdateAuthenticatedAttributes(msg_data, flag);
1169 if (ret && flag == Sign)
1170 ret = CSignedMsgData_Sign(msg_data);
1175 typedef struct _CSignedEncodeMsg
1179 CRYPT_DATA_BLOB data;
1180 CSignedMsgData msg_data;
1183 static void CSignedEncodeMsg_Close(HCRYPTMSG hCryptMsg)
1185 CSignedEncodeMsg *msg = hCryptMsg;
1188 CryptMemFree(msg->innerOID);
1189 CryptMemFree(msg->data.pbData);
1190 CRYPT_FreeBlobArray(msg->msg_data.info->cCertEncoded,
1191 msg->msg_data.info->rgCertEncoded);
1192 CRYPT_FreeBlobArray(msg->msg_data.info->cCrlEncoded,
1193 msg->msg_data.info->rgCrlEncoded);
1194 for (i = 0; i < msg->msg_data.info->cSignerInfo; i++)
1195 CSignerInfo_Free(&msg->msg_data.info->rgSignerInfo[i]);
1196 CSignedMsgData_CloseHandles(&msg->msg_data);
1197 CryptMemFree(msg->msg_data.info->rgSignerInfo);
1198 CryptMemFree(msg->msg_data.info);
1201 static BOOL CSignedEncodeMsg_GetParam(HCRYPTMSG hCryptMsg, DWORD dwParamType,
1202 DWORD dwIndex, void *pvData, DWORD *pcbData)
1204 CSignedEncodeMsg *msg = hCryptMsg;
1207 switch (dwParamType)
1209 case CMSG_CONTENT_PARAM:
1211 CRYPT_CONTENT_INFO info;
1213 ret = CryptMsgGetParam(hCryptMsg, CMSG_BARE_CONTENT_PARAM, 0, NULL,
1214 &info.Content.cbData);
1217 info.Content.pbData = CryptMemAlloc(info.Content.cbData);
1218 if (info.Content.pbData)
1220 ret = CryptMsgGetParam(hCryptMsg, CMSG_BARE_CONTENT_PARAM, 0,
1221 info.Content.pbData, &info.Content.cbData);
1224 char oid_rsa_signed[] = szOID_RSA_signedData;
1226 info.pszObjId = oid_rsa_signed;
1227 ret = CryptEncodeObjectEx(X509_ASN_ENCODING,
1228 PKCS_CONTENT_INFO, &info, 0, NULL, pvData, pcbData);
1230 CryptMemFree(info.Content.pbData);
1237 case CMSG_BARE_CONTENT_PARAM:
1239 CRYPT_SIGNED_INFO info;
1240 BOOL freeContent = FALSE;
1242 info = *msg->msg_data.info;
1243 if (!msg->innerOID || !strcmp(msg->innerOID, szOID_RSA_data))
1245 char oid_rsa_data[] = szOID_RSA_data;
1247 /* Quirk: OID is only encoded messages if an update has happened */
1248 if (msg->base.state != MsgStateInit)
1249 info.content.pszObjId = oid_rsa_data;
1251 info.content.pszObjId = NULL;
1252 if (msg->data.cbData)
1254 CRYPT_DATA_BLOB blob = { msg->data.cbData, msg->data.pbData };
1256 ret = CryptEncodeObjectEx(X509_ASN_ENCODING, X509_OCTET_STRING,
1257 &blob, CRYPT_ENCODE_ALLOC_FLAG, NULL,
1258 &info.content.Content.pbData, &info.content.Content.cbData);
1263 info.content.Content.cbData = 0;
1264 info.content.Content.pbData = NULL;
1270 info.content.pszObjId = msg->innerOID;
1271 info.content.Content.cbData = msg->data.cbData;
1272 info.content.Content.pbData = msg->data.pbData;
1277 ret = CRYPT_AsnEncodeCMSSignedInfo(&info, pvData, pcbData);
1279 LocalFree(info.content.Content.pbData);
1283 case CMSG_COMPUTED_HASH_PARAM:
1284 if (dwIndex >= msg->msg_data.cSignerHandle)
1285 SetLastError(CRYPT_E_INVALID_INDEX);
1287 ret = CryptGetHashParam(
1288 msg->msg_data.signerHandles[dwIndex].contentHash, HP_HASHVAL,
1289 pvData, pcbData, 0);
1291 case CMSG_ENCODED_SIGNER:
1292 if (dwIndex >= msg->msg_data.info->cSignerInfo)
1293 SetLastError(CRYPT_E_INVALID_INDEX);
1295 ret = CryptEncodeObjectEx(X509_ASN_ENCODING | PKCS_7_ASN_ENCODING,
1296 CMS_SIGNER_INFO, &msg->msg_data.info->rgSignerInfo[dwIndex], 0,
1297 NULL, pvData, pcbData);
1299 case CMSG_VERSION_PARAM:
1300 ret = CRYPT_CopyParam(pvData, pcbData, &msg->msg_data.info->version,
1301 sizeof(msg->msg_data.info->version));
1304 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
1309 static BOOL CSignedEncodeMsg_Update(HCRYPTMSG hCryptMsg, const BYTE *pbData,
1310 DWORD cbData, BOOL fFinal)
1312 CSignedEncodeMsg *msg = hCryptMsg;
1315 if (msg->base.state == MsgStateFinalized)
1316 SetLastError(CRYPT_E_MSG_ERROR);
1317 else if (msg->base.streamed || (msg->base.open_flags & CMSG_DETACHED_FLAG))
1319 ret = CSignedMsgData_Update(&msg->msg_data, pbData, cbData, fFinal,
1321 if (msg->base.streamed)
1322 FIXME("streamed partial stub\n");
1323 msg->base.state = fFinal ? MsgStateFinalized : MsgStateUpdated;
1328 SetLastError(CRYPT_E_MSG_ERROR);
1333 msg->data.pbData = CryptMemAlloc(cbData);
1334 if (msg->data.pbData)
1336 memcpy(msg->data.pbData, pbData, cbData);
1337 msg->data.cbData = cbData;
1344 ret = CSignedMsgData_Update(&msg->msg_data, pbData, cbData,
1346 msg->base.state = MsgStateFinalized;
1352 static HCRYPTMSG CSignedEncodeMsg_Open(DWORD dwFlags,
1353 const void *pvMsgEncodeInfo, LPCSTR pszInnerContentObjID,
1354 PCMSG_STREAM_INFO pStreamInfo)
1356 const CMSG_SIGNED_ENCODE_INFO_WITH_CMS *info = pvMsgEncodeInfo;
1358 CSignedEncodeMsg *msg;
1360 if (info->cbSize != sizeof(CMSG_SIGNED_ENCODE_INFO) &&
1361 info->cbSize != sizeof(CMSG_SIGNED_ENCODE_INFO_WITH_CMS))
1363 SetLastError(E_INVALIDARG);
1366 if (info->cbSize == sizeof(CMSG_SIGNED_ENCODE_INFO_WITH_CMS) &&
1367 info->cAttrCertEncoded)
1369 FIXME("CMSG_SIGNED_ENCODE_INFO with CMS fields unsupported\n");
1372 for (i = 0; i < info->cSigners; i++)
1373 if (!CRYPT_IsValidSigner(&info->rgSigners[i]))
1375 msg = CryptMemAlloc(sizeof(CSignedEncodeMsg));
1380 CryptMsgBase_Init((CryptMsgBase *)msg, dwFlags, pStreamInfo,
1381 CSignedEncodeMsg_Close, CSignedEncodeMsg_GetParam,
1382 CSignedEncodeMsg_Update, CRYPT_DefaultMsgControl);
1383 if (pszInnerContentObjID)
1385 msg->innerOID = CryptMemAlloc(strlen(pszInnerContentObjID) + 1);
1387 strcpy(msg->innerOID, pszInnerContentObjID);
1392 msg->innerOID = NULL;
1393 msg->data.cbData = 0;
1394 msg->data.pbData = NULL;
1396 msg->msg_data.info = CryptMemAlloc(sizeof(CRYPT_SIGNED_INFO));
1398 msg->msg_data.info = NULL;
1399 if (msg->msg_data.info)
1401 memset(msg->msg_data.info, 0, sizeof(CRYPT_SIGNED_INFO));
1402 msg->msg_data.info->version = CMSG_SIGNED_DATA_V1;
1410 msg->msg_data.info->rgSignerInfo =
1411 CryptMemAlloc(info->cSigners * sizeof(CMSG_CMS_SIGNER_INFO));
1412 if (msg->msg_data.info->rgSignerInfo)
1414 msg->msg_data.info->cSignerInfo = info->cSigners;
1415 memset(msg->msg_data.info->rgSignerInfo, 0,
1416 msg->msg_data.info->cSignerInfo *
1417 sizeof(CMSG_CMS_SIGNER_INFO));
1418 ret = CSignedMsgData_AllocateHandles(&msg->msg_data);
1419 for (i = 0; ret && i < msg->msg_data.info->cSignerInfo; i++)
1421 if (info->rgSigners[i].SignerId.dwIdChoice ==
1422 CERT_ID_KEY_IDENTIFIER)
1423 msg->msg_data.info->version = CMSG_SIGNED_DATA_V3;
1424 ret = CSignerInfo_Construct(
1425 &msg->msg_data.info->rgSignerInfo[i],
1426 &info->rgSigners[i]);
1429 ret = CSignedMsgData_ConstructSignerHandles(
1430 &msg->msg_data, i, info->rgSigners[i].hCryptProv);
1431 if (dwFlags & CMSG_CRYPT_RELEASE_CONTEXT_FLAG)
1432 CryptReleaseContext(info->rgSigners[i].hCryptProv,
1442 msg->msg_data.info->cSignerInfo = 0;
1443 msg->msg_data.signerHandles = NULL;
1444 msg->msg_data.cSignerHandle = 0;
1448 ret = CRYPT_ConstructBlobArray(&msg->msg_data.info->cCertEncoded,
1449 &msg->msg_data.info->rgCertEncoded, info->cCertEncoded,
1450 info->rgCertEncoded);
1452 ret = CRYPT_ConstructBlobArray(&msg->msg_data.info->cCrlEncoded,
1453 &msg->msg_data.info->rgCrlEncoded, info->cCrlEncoded,
1454 info->rgCrlEncoded);
1457 CSignedEncodeMsg_Close(msg);
1464 typedef struct _CMSG_ENVELOPED_ENCODE_INFO_WITH_CMS
1467 HCRYPTPROV_LEGACY hCryptProv;
1468 CRYPT_ALGORITHM_IDENTIFIER ContentEncryptionAlgorithm;
1469 void *pvEncryptionAuxInfo;
1471 PCERT_INFO *rgpRecipientCert;
1472 PCMSG_RECIPIENT_ENCODE_INFO rgCmsRecipients;
1474 PCERT_BLOB rgCertEncoded;
1476 PCRL_BLOB rgCrlEncoded;
1477 DWORD cAttrCertEncoded;
1478 PCERT_BLOB rgAttrCertEncoded;
1479 DWORD cUnprotectedAttr;
1480 PCRYPT_ATTRIBUTE rgUnprotectedAttr;
1481 } CMSG_ENVELOPED_ENCODE_INFO_WITH_CMS, *PCMSG_ENVELOPED_ENCODE_INFO_WITH_CMS;
1483 typedef struct _CEnvelopedEncodeMsg
1486 CRYPT_ALGORITHM_IDENTIFIER algo;
1489 DWORD cRecipientInfo;
1490 CMSG_KEY_TRANS_RECIPIENT_INFO *recipientInfo;
1491 CRYPT_DATA_BLOB data;
1492 } CEnvelopedEncodeMsg;
1494 static BOOL CRYPT_ConstructAlgorithmId(CRYPT_ALGORITHM_IDENTIFIER *out,
1495 const CRYPT_ALGORITHM_IDENTIFIER *in)
1497 out->pszObjId = CryptMemAlloc(strlen(in->pszObjId) + 1);
1500 strcpy(out->pszObjId, in->pszObjId);
1501 return CRYPT_ConstructBlob(&out->Parameters, &in->Parameters);
1507 static BOOL CRYPT_ConstructBitBlob(CRYPT_BIT_BLOB *out, const CRYPT_BIT_BLOB *in)
1509 out->cbData = in->cbData;
1510 out->cUnusedBits = in->cUnusedBits;
1513 out->pbData = CryptMemAlloc(out->cbData);
1515 memcpy(out->pbData, in->pbData, out->cbData);
1524 static BOOL CRYPT_GenKey(CMSG_CONTENT_ENCRYPT_INFO *info, ALG_ID algID)
1526 static HCRYPTOIDFUNCSET set = NULL;
1527 PFN_CMSG_GEN_CONTENT_ENCRYPT_KEY genKeyFunc = NULL;
1528 HCRYPTOIDFUNCADDR hFunc;
1532 set = CryptInitOIDFunctionSet(CMSG_OID_GEN_CONTENT_ENCRYPT_KEY_FUNC, 0);
1533 CryptGetOIDFunctionAddress(set, X509_ASN_ENCODING,
1534 info->ContentEncryptionAlgorithm.pszObjId, 0, (void **)&genKeyFunc, &hFunc);
1537 ret = genKeyFunc(info, 0, NULL);
1538 CryptFreeOIDFunctionAddress(hFunc, 0);
1541 ret = CryptGenKey(info->hCryptProv, algID, CRYPT_EXPORTABLE,
1542 &info->hContentEncryptKey);
1546 static BOOL WINAPI CRYPT_ExportKeyTrans(
1547 PCMSG_CONTENT_ENCRYPT_INFO pContentEncryptInfo,
1548 PCMSG_KEY_TRANS_RECIPIENT_ENCODE_INFO pKeyTransEncodeInfo,
1549 PCMSG_KEY_TRANS_ENCRYPT_INFO pKeyTransEncryptInfo,
1550 DWORD dwFlags, void *pvReserved)
1552 CERT_PUBLIC_KEY_INFO keyInfo;
1556 ret = CRYPT_ConstructAlgorithmId(&keyInfo.Algorithm,
1557 &pKeyTransEncodeInfo->KeyEncryptionAlgorithm);
1559 CRYPT_ConstructBitBlob(&keyInfo.PublicKey,
1560 &pKeyTransEncodeInfo->RecipientPublicKey);
1563 ret = CryptImportPublicKeyInfo(pKeyTransEncodeInfo->hCryptProv,
1564 X509_ASN_ENCODING, &keyInfo, &expKey);
1570 ret = CryptExportKey(pContentEncryptInfo->hContentEncryptKey, expKey,
1571 SIMPLEBLOB, 0, NULL, &size);
1572 keyBlob = CryptMemAlloc(size);
1575 ret = CryptExportKey(pContentEncryptInfo->hContentEncryptKey,
1576 expKey, SIMPLEBLOB, 0, keyBlob, &size);
1579 DWORD head = sizeof(BLOBHEADER) + sizeof(ALG_ID);
1581 pKeyTransEncryptInfo->EncryptedKey.pbData =
1582 CryptMemAlloc(size - head);
1583 if (pKeyTransEncryptInfo->EncryptedKey.pbData)
1587 pKeyTransEncryptInfo->EncryptedKey.cbData = size - head;
1588 for (i = size - 1; i >= head; --i, ++k)
1589 pKeyTransEncryptInfo->EncryptedKey.pbData[k] =
1595 CryptMemFree(keyBlob);
1599 CryptDestroyKey(expKey);
1602 CryptMemFree(keyInfo.PublicKey.pbData);
1603 CryptMemFree(keyInfo.Algorithm.pszObjId);
1604 CryptMemFree(keyInfo.Algorithm.Parameters.pbData);
1608 static BOOL CRYPT_ExportEncryptedKey(CMSG_CONTENT_ENCRYPT_INFO *info, DWORD i,
1609 CRYPT_DATA_BLOB *key)
1611 static HCRYPTOIDFUNCSET set = NULL;
1612 PFN_CMSG_EXPORT_KEY_TRANS exportKeyFunc = NULL;
1613 HCRYPTOIDFUNCADDR hFunc = NULL;
1614 CMSG_KEY_TRANS_RECIPIENT_ENCODE_INFO *encodeInfo =
1615 info->rgCmsRecipients[i].u.pKeyTrans;
1616 CMSG_KEY_TRANS_ENCRYPT_INFO encryptInfo;
1619 memset(&encryptInfo, 0, sizeof(encryptInfo));
1620 encryptInfo.cbSize = sizeof(encryptInfo);
1621 encryptInfo.dwRecipientIndex = i;
1622 ret = CRYPT_ConstructAlgorithmId(&encryptInfo.KeyEncryptionAlgorithm,
1623 &encodeInfo->KeyEncryptionAlgorithm);
1626 set = CryptInitOIDFunctionSet(CMSG_OID_EXPORT_KEY_TRANS_FUNC, 0);
1627 CryptGetOIDFunctionAddress(set, X509_ASN_ENCODING,
1628 encryptInfo.KeyEncryptionAlgorithm.pszObjId, 0, (void **)&exportKeyFunc,
1631 exportKeyFunc = CRYPT_ExportKeyTrans;
1634 ret = exportKeyFunc(info, encodeInfo, &encryptInfo, 0, NULL);
1637 key->cbData = encryptInfo.EncryptedKey.cbData;
1638 key->pbData = encryptInfo.EncryptedKey.pbData;
1642 CryptFreeOIDFunctionAddress(hFunc, 0);
1644 CryptMemFree(encryptInfo.KeyEncryptionAlgorithm.pszObjId);
1645 CryptMemFree(encryptInfo.KeyEncryptionAlgorithm.Parameters.pbData);
1649 static LPVOID WINAPI mem_alloc(size_t size)
1651 return HeapAlloc(GetProcessHeap(), 0, size);
1654 static VOID WINAPI mem_free(LPVOID pv)
1656 HeapFree(GetProcessHeap(), 0, pv);
1660 static BOOL CContentEncryptInfo_Construct(CMSG_CONTENT_ENCRYPT_INFO *info,
1661 const CMSG_ENVELOPED_ENCODE_INFO_WITH_CMS *in, HCRYPTPROV prov)
1665 info->cbSize = sizeof(CMSG_CONTENT_ENCRYPT_INFO);
1666 info->hCryptProv = prov;
1667 ret = CRYPT_ConstructAlgorithmId(&info->ContentEncryptionAlgorithm,
1668 &in->ContentEncryptionAlgorithm);
1669 info->pvEncryptionAuxInfo = in->pvEncryptionAuxInfo;
1670 info->cRecipients = in->cRecipients;
1673 info->rgCmsRecipients = CryptMemAlloc(in->cRecipients *
1674 sizeof(CMSG_RECIPIENT_ENCODE_INFO));
1675 if (info->rgCmsRecipients)
1679 for (i = 0; ret && i < in->cRecipients; ++i)
1681 CMSG_KEY_TRANS_RECIPIENT_ENCODE_INFO *encodeInfo;
1682 CERT_INFO *cert = in->rgpRecipientCert[i];
1684 info->rgCmsRecipients[i].dwRecipientChoice =
1685 CMSG_KEY_TRANS_RECIPIENT;
1686 encodeInfo = CryptMemAlloc(sizeof(*encodeInfo));
1687 info->rgCmsRecipients[i].u.pKeyTrans = encodeInfo;
1690 encodeInfo->cbSize = sizeof(*encodeInfo);
1691 ret = CRYPT_ConstructAlgorithmId(
1692 &encodeInfo->KeyEncryptionAlgorithm,
1693 &cert->SubjectPublicKeyInfo.Algorithm);
1694 encodeInfo->pvKeyEncryptionAuxInfo = NULL;
1695 encodeInfo->hCryptProv = prov;
1697 ret = CRYPT_ConstructBitBlob(
1698 &encodeInfo->RecipientPublicKey,
1699 &cert->SubjectPublicKeyInfo.PublicKey);
1701 ret = CRYPT_ConstructBlob(
1702 &encodeInfo->RecipientId.u.IssuerSerialNumber.Issuer,
1705 ret = CRYPT_ConstructBlob(
1706 &encodeInfo->RecipientId.u.IssuerSerialNumber.SerialNumber,
1707 &cert->SerialNumber);
1716 info->pfnAlloc = mem_alloc;
1717 info->pfnFree = mem_free;
1721 static void CContentEncryptInfo_Free(CMSG_CONTENT_ENCRYPT_INFO *info)
1723 CryptMemFree(info->ContentEncryptionAlgorithm.pszObjId);
1724 CryptMemFree(info->ContentEncryptionAlgorithm.Parameters.pbData);
1725 if (info->rgCmsRecipients)
1729 for (i = 0; i < info->cRecipients; ++i)
1731 CMSG_KEY_TRANS_RECIPIENT_ENCODE_INFO *encodeInfo =
1732 info->rgCmsRecipients[i].u.pKeyTrans;
1734 CryptMemFree(encodeInfo->KeyEncryptionAlgorithm.pszObjId);
1735 CryptMemFree(encodeInfo->KeyEncryptionAlgorithm.Parameters.pbData);
1736 CryptMemFree(encodeInfo->RecipientPublicKey.pbData);
1738 encodeInfo->RecipientId.u.IssuerSerialNumber.Issuer.pbData);
1740 encodeInfo->RecipientId.u.IssuerSerialNumber.SerialNumber.pbData);
1741 CryptMemFree(encodeInfo);
1743 CryptMemFree(info->rgCmsRecipients);
1747 static BOOL CRecipientInfo_Construct(CMSG_KEY_TRANS_RECIPIENT_INFO *info,
1748 const CERT_INFO *cert, CRYPT_DATA_BLOB *key)
1752 info->dwVersion = CMSG_KEY_TRANS_PKCS_1_5_VERSION;
1753 info->RecipientId.dwIdChoice = CERT_ID_ISSUER_SERIAL_NUMBER;
1754 ret = CRYPT_ConstructBlob(&info->RecipientId.u.IssuerSerialNumber.Issuer,
1757 ret = CRYPT_ConstructBlob(
1758 &info->RecipientId.u.IssuerSerialNumber.SerialNumber,
1759 &cert->SerialNumber);
1761 ret = CRYPT_ConstructAlgorithmId(&info->KeyEncryptionAlgorithm,
1762 &cert->SubjectPublicKeyInfo.Algorithm);
1763 info->EncryptedKey.cbData = key->cbData;
1764 info->EncryptedKey.pbData = key->pbData;
1768 static void CRecipientInfo_Free(CMSG_KEY_TRANS_RECIPIENT_INFO *info)
1770 CryptMemFree(info->RecipientId.u.IssuerSerialNumber.Issuer.pbData);
1771 CryptMemFree(info->RecipientId.u.IssuerSerialNumber.SerialNumber.pbData);
1772 CryptMemFree(info->KeyEncryptionAlgorithm.pszObjId);
1773 CryptMemFree(info->KeyEncryptionAlgorithm.Parameters.pbData);
1774 CryptMemFree(info->EncryptedKey.pbData);
1777 static void CEnvelopedEncodeMsg_Close(HCRYPTMSG hCryptMsg)
1779 CEnvelopedEncodeMsg *msg = hCryptMsg;
1781 CryptMemFree(msg->algo.pszObjId);
1782 CryptMemFree(msg->algo.Parameters.pbData);
1783 if (msg->base.open_flags & CMSG_CRYPT_RELEASE_CONTEXT_FLAG)
1784 CryptReleaseContext(msg->prov, 0);
1785 CryptDestroyKey(msg->key);
1786 if (msg->recipientInfo)
1790 for (i = 0; i < msg->cRecipientInfo; ++i)
1791 CRecipientInfo_Free(&msg->recipientInfo[i]);
1792 CryptMemFree(msg->recipientInfo);
1794 CryptMemFree(msg->data.pbData);
1797 static BOOL CEnvelopedEncodeMsg_GetParam(HCRYPTMSG hCryptMsg, DWORD dwParamType,
1798 DWORD dwIndex, void *pvData, DWORD *pcbData)
1800 CEnvelopedEncodeMsg *msg = hCryptMsg;
1803 switch (dwParamType)
1805 case CMSG_BARE_CONTENT_PARAM:
1806 if (msg->base.streamed)
1807 SetLastError(E_INVALIDARG);
1810 char oid_rsa_data[] = szOID_RSA_data;
1811 CRYPT_ENVELOPED_DATA envelopedData = {
1812 CMSG_ENVELOPED_DATA_PKCS_1_5_VERSION, msg->cRecipientInfo,
1813 msg->recipientInfo, { oid_rsa_data, msg->algo, msg->data }
1816 ret = CRYPT_AsnEncodePKCSEnvelopedData(&envelopedData, pvData,
1820 case CMSG_CONTENT_PARAM:
1822 CRYPT_CONTENT_INFO info;
1824 ret = CryptMsgGetParam(hCryptMsg, CMSG_BARE_CONTENT_PARAM, 0, NULL,
1825 &info.Content.cbData);
1828 info.Content.pbData = CryptMemAlloc(info.Content.cbData);
1829 if (info.Content.pbData)
1831 ret = CryptMsgGetParam(hCryptMsg, CMSG_BARE_CONTENT_PARAM, 0,
1832 info.Content.pbData, &info.Content.cbData);
1835 char oid_rsa_enveloped[] = szOID_RSA_envelopedData;
1837 info.pszObjId = oid_rsa_enveloped;
1838 ret = CryptEncodeObjectEx(X509_ASN_ENCODING,
1839 PKCS_CONTENT_INFO, &info, 0, NULL, pvData, pcbData);
1841 CryptMemFree(info.Content.pbData);
1849 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
1854 static BOOL CEnvelopedEncodeMsg_Update(HCRYPTMSG hCryptMsg, const BYTE *pbData,
1855 DWORD cbData, BOOL fFinal)
1857 CEnvelopedEncodeMsg *msg = hCryptMsg;
1860 if (msg->base.state == MsgStateFinalized)
1861 SetLastError(CRYPT_E_MSG_ERROR);
1862 else if (msg->base.streamed)
1864 FIXME("streamed stub\n");
1865 msg->base.state = fFinal ? MsgStateFinalized : MsgStateUpdated;
1872 if (msg->base.open_flags & CMSG_DETACHED_FLAG)
1873 SetLastError(E_INVALIDARG);
1875 SetLastError(CRYPT_E_MSG_ERROR);
1881 DWORD dataLen = cbData;
1883 msg->data.cbData = cbData;
1884 msg->data.pbData = CryptMemAlloc(cbData);
1885 if (msg->data.pbData)
1887 memcpy(msg->data.pbData, pbData, cbData);
1888 ret = CryptEncrypt(msg->key, 0, TRUE, 0, msg->data.pbData,
1889 &dataLen, msg->data.cbData);
1890 msg->data.cbData = dataLen;
1891 if (dataLen > cbData)
1893 msg->data.pbData = CryptMemRealloc(msg->data.pbData,
1895 if (msg->data.pbData)
1898 ret = CryptEncrypt(msg->key, 0, TRUE, 0,
1899 msg->data.pbData, &dataLen, msg->data.cbData);
1905 CryptMemFree(msg->data.pbData);
1911 msg->data.cbData = 0;
1912 msg->data.pbData = NULL;
1917 msg->base.state = MsgStateFinalized;
1923 static HCRYPTMSG CEnvelopedEncodeMsg_Open(DWORD dwFlags,
1924 const void *pvMsgEncodeInfo, LPCSTR pszInnerContentObjID,
1925 PCMSG_STREAM_INFO pStreamInfo)
1927 CEnvelopedEncodeMsg *msg;
1928 const CMSG_ENVELOPED_ENCODE_INFO_WITH_CMS *info = pvMsgEncodeInfo;
1932 if (info->cbSize != sizeof(CMSG_ENVELOPED_ENCODE_INFO) &&
1933 info->cbSize != sizeof(CMSG_ENVELOPED_ENCODE_INFO_WITH_CMS))
1935 SetLastError(E_INVALIDARG);
1938 if (info->cbSize == sizeof(CMSG_ENVELOPED_ENCODE_INFO_WITH_CMS))
1939 FIXME("CMS fields unsupported\n");
1940 if (!(algID = CertOIDToAlgId(info->ContentEncryptionAlgorithm.pszObjId)))
1942 SetLastError(CRYPT_E_UNKNOWN_ALGO);
1945 if (info->cRecipients && !info->rgpRecipientCert)
1947 SetLastError(E_INVALIDARG);
1950 if (info->hCryptProv)
1951 prov = info->hCryptProv;
1954 prov = CRYPT_GetDefaultProvider();
1955 dwFlags &= ~CMSG_CRYPT_RELEASE_CONTEXT_FLAG;
1957 msg = CryptMemAlloc(sizeof(CEnvelopedEncodeMsg));
1960 CRYPT_DATA_BLOB encryptedKey = { 0, NULL };
1961 CMSG_CONTENT_ENCRYPT_INFO encryptInfo;
1965 CryptMsgBase_Init((CryptMsgBase *)msg, dwFlags, pStreamInfo,
1966 CEnvelopedEncodeMsg_Close, CEnvelopedEncodeMsg_GetParam,
1967 CEnvelopedEncodeMsg_Update, CRYPT_DefaultMsgControl);
1968 ret = CRYPT_ConstructAlgorithmId(&msg->algo,
1969 &info->ContentEncryptionAlgorithm);
1971 msg->data.cbData = 0;
1972 msg->data.pbData = NULL;
1973 msg->cRecipientInfo = info->cRecipients;
1974 msg->recipientInfo = CryptMemAlloc(info->cRecipients *
1975 sizeof(CMSG_KEY_TRANS_RECIPIENT_INFO));
1976 if (!msg->recipientInfo)
1978 memset(&encryptInfo, 0, sizeof(encryptInfo));
1981 ret = CContentEncryptInfo_Construct(&encryptInfo, info, prov);
1984 ret = CRYPT_GenKey(&encryptInfo, algID);
1986 msg->key = encryptInfo.hContentEncryptKey;
1989 for (i = 0; ret && i < msg->cRecipientInfo; ++i)
1991 ret = CRYPT_ExportEncryptedKey(&encryptInfo, i, &encryptedKey);
1993 ret = CRecipientInfo_Construct(&msg->recipientInfo[i],
1994 info->rgpRecipientCert[i], &encryptedKey);
1996 CContentEncryptInfo_Free(&encryptInfo);
2003 if (!msg && (dwFlags & CMSG_CRYPT_RELEASE_CONTEXT_FLAG))
2004 CryptReleaseContext(prov, 0);
2008 HCRYPTMSG WINAPI CryptMsgOpenToEncode(DWORD dwMsgEncodingType, DWORD dwFlags,
2009 DWORD dwMsgType, const void *pvMsgEncodeInfo, LPSTR pszInnerContentObjID,
2010 PCMSG_STREAM_INFO pStreamInfo)
2012 HCRYPTMSG msg = NULL;
2014 TRACE("(%08x, %08x, %08x, %p, %s, %p)\n", dwMsgEncodingType, dwFlags,
2015 dwMsgType, pvMsgEncodeInfo, debugstr_a(pszInnerContentObjID), pStreamInfo);
2017 if (GET_CMSG_ENCODING_TYPE(dwMsgEncodingType) != PKCS_7_ASN_ENCODING)
2019 SetLastError(E_INVALIDARG);
2025 msg = CDataEncodeMsg_Open(dwFlags, pvMsgEncodeInfo,
2026 pszInnerContentObjID, pStreamInfo);
2029 msg = CHashEncodeMsg_Open(dwFlags, pvMsgEncodeInfo,
2030 pszInnerContentObjID, pStreamInfo);
2033 msg = CSignedEncodeMsg_Open(dwFlags, pvMsgEncodeInfo,
2034 pszInnerContentObjID, pStreamInfo);
2036 case CMSG_ENVELOPED:
2037 msg = CEnvelopedEncodeMsg_Open(dwFlags, pvMsgEncodeInfo,
2038 pszInnerContentObjID, pStreamInfo);
2040 case CMSG_SIGNED_AND_ENVELOPED:
2041 case CMSG_ENCRYPTED:
2042 /* defined but invalid, fall through */
2044 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
2049 typedef struct _CEnvelopedDecodeMsg
2051 CRYPT_ENVELOPED_DATA *data;
2052 HCRYPTPROV crypt_prov;
2053 CRYPT_DATA_BLOB content;
2055 } CEnvelopedDecodeMsg;
2057 typedef struct _CDecodeMsg
2061 HCRYPTPROV crypt_prov;
2064 CSignedMsgData signed_data;
2065 CEnvelopedDecodeMsg enveloped_data;
2067 CRYPT_DATA_BLOB msg_data;
2068 CRYPT_DATA_BLOB detached_data;
2069 PCONTEXT_PROPERTY_LIST properties;
2072 static void CDecodeMsg_Close(HCRYPTMSG hCryptMsg)
2074 CDecodeMsg *msg = hCryptMsg;
2076 if (msg->base.open_flags & CMSG_CRYPT_RELEASE_CONTEXT_FLAG)
2077 CryptReleaseContext(msg->crypt_prov, 0);
2082 CryptDestroyHash(msg->u.hash);
2084 case CMSG_ENVELOPED:
2085 if (msg->u.enveloped_data.crypt_prov)
2086 CryptReleaseContext(msg->u.enveloped_data.crypt_prov, 0);
2087 LocalFree(msg->u.enveloped_data.data);
2088 CryptMemFree(msg->u.enveloped_data.content.pbData);
2091 if (msg->u.signed_data.info)
2093 LocalFree(msg->u.signed_data.info);
2094 CSignedMsgData_CloseHandles(&msg->u.signed_data);
2098 CryptMemFree(msg->msg_data.pbData);
2099 CryptMemFree(msg->detached_data.pbData);
2100 ContextPropertyList_Free(msg->properties);
2103 static BOOL CDecodeMsg_CopyData(CRYPT_DATA_BLOB *blob, const BYTE *pbData,
2111 blob->pbData = CryptMemRealloc(blob->pbData,
2112 blob->cbData + cbData);
2114 blob->pbData = CryptMemAlloc(cbData);
2117 memcpy(blob->pbData + blob->cbData, pbData, cbData);
2118 blob->cbData += cbData;
2126 static BOOL CDecodeMsg_DecodeDataContent(CDecodeMsg *msg, const CRYPT_DER_BLOB *blob)
2129 CRYPT_DATA_BLOB *data;
2132 ret = CryptDecodeObjectEx(X509_ASN_ENCODING, X509_OCTET_STRING,
2133 blob->pbData, blob->cbData, CRYPT_DECODE_ALLOC_FLAG, NULL, &data, &size);
2136 ret = ContextPropertyList_SetProperty(msg->properties,
2137 CMSG_CONTENT_PARAM, data->pbData, data->cbData);
2143 static void CDecodeMsg_SaveAlgorithmID(CDecodeMsg *msg, DWORD param,
2144 const CRYPT_ALGORITHM_IDENTIFIER *id)
2146 static const BYTE nullParams[] = { ASN_NULL, 0 };
2147 CRYPT_ALGORITHM_IDENTIFIER *copy;
2148 DWORD len = sizeof(CRYPT_ALGORITHM_IDENTIFIER);
2150 /* Linearize algorithm id */
2151 len += strlen(id->pszObjId) + 1;
2152 len += id->Parameters.cbData;
2153 copy = CryptMemAlloc(len);
2157 (LPSTR)((BYTE *)copy + sizeof(CRYPT_ALGORITHM_IDENTIFIER));
2158 strcpy(copy->pszObjId, id->pszObjId);
2159 copy->Parameters.pbData = (BYTE *)copy->pszObjId + strlen(id->pszObjId)
2161 /* Trick: omit NULL parameters */
2162 if (id->Parameters.cbData == sizeof(nullParams) &&
2163 !memcmp(id->Parameters.pbData, nullParams, sizeof(nullParams)))
2165 copy->Parameters.cbData = 0;
2166 len -= sizeof(nullParams);
2169 copy->Parameters.cbData = id->Parameters.cbData;
2170 if (copy->Parameters.cbData)
2171 memcpy(copy->Parameters.pbData, id->Parameters.pbData,
2172 id->Parameters.cbData);
2173 ContextPropertyList_SetProperty(msg->properties, param, (BYTE *)copy,
2179 static inline void CRYPT_FixUpAlgorithmID(CRYPT_ALGORITHM_IDENTIFIER *id)
2181 id->pszObjId = (LPSTR)((BYTE *)id + sizeof(CRYPT_ALGORITHM_IDENTIFIER));
2182 id->Parameters.pbData = (BYTE *)id->pszObjId + strlen(id->pszObjId) + 1;
2185 static BOOL CDecodeMsg_DecodeHashedContent(CDecodeMsg *msg,
2186 const CRYPT_DER_BLOB *blob)
2189 CRYPT_DIGESTED_DATA *digestedData;
2192 ret = CRYPT_AsnDecodePKCSDigestedData(blob->pbData, blob->cbData,
2193 CRYPT_DECODE_ALLOC_FLAG, NULL, (CRYPT_DIGESTED_DATA *)&digestedData,
2197 ContextPropertyList_SetProperty(msg->properties, CMSG_VERSION_PARAM,
2198 (const BYTE *)&digestedData->version, sizeof(digestedData->version));
2199 CDecodeMsg_SaveAlgorithmID(msg, CMSG_HASH_ALGORITHM_PARAM,
2200 &digestedData->DigestAlgorithm);
2201 ContextPropertyList_SetProperty(msg->properties,
2202 CMSG_INNER_CONTENT_TYPE_PARAM,
2203 (const BYTE *)digestedData->ContentInfo.pszObjId,
2204 digestedData->ContentInfo.pszObjId ?
2205 strlen(digestedData->ContentInfo.pszObjId) + 1 : 0);
2206 if (!(msg->base.open_flags & CMSG_DETACHED_FLAG))
2208 if (digestedData->ContentInfo.Content.cbData)
2209 CDecodeMsg_DecodeDataContent(msg,
2210 &digestedData->ContentInfo.Content);
2212 ContextPropertyList_SetProperty(msg->properties,
2213 CMSG_CONTENT_PARAM, NULL, 0);
2215 ContextPropertyList_SetProperty(msg->properties, CMSG_HASH_DATA_PARAM,
2216 digestedData->hash.pbData, digestedData->hash.cbData);
2217 LocalFree(digestedData);
2222 static BOOL CDecodeMsg_DecodeEnvelopedContent(CDecodeMsg *msg,
2223 const CRYPT_DER_BLOB *blob)
2226 CRYPT_ENVELOPED_DATA *envelopedData;
2229 ret = CRYPT_AsnDecodePKCSEnvelopedData(blob->pbData, blob->cbData,
2230 CRYPT_DECODE_ALLOC_FLAG, NULL, (CRYPT_ENVELOPED_DATA *)&envelopedData,
2233 msg->u.enveloped_data.data = envelopedData;
2237 static BOOL CDecodeMsg_DecodeSignedContent(CDecodeMsg *msg,
2238 const CRYPT_DER_BLOB *blob)
2241 CRYPT_SIGNED_INFO *signedInfo;
2244 ret = CRYPT_AsnDecodeCMSSignedInfo(blob->pbData, blob->cbData,
2245 CRYPT_DECODE_ALLOC_FLAG, NULL, (CRYPT_SIGNED_INFO *)&signedInfo,
2248 msg->u.signed_data.info = signedInfo;
2252 /* Decodes the content in blob as the type given, and updates the value
2253 * (type, parameters, etc.) of msg based on what blob contains.
2254 * It doesn't just use msg's type, to allow a recursive call from an implicitly
2255 * typed message once the outer content info has been decoded.
2257 static BOOL CDecodeMsg_DecodeContent(CDecodeMsg *msg, const CRYPT_DER_BLOB *blob,
2265 if ((ret = CDecodeMsg_DecodeDataContent(msg, blob)))
2266 msg->type = CMSG_DATA;
2269 if ((ret = CDecodeMsg_DecodeHashedContent(msg, blob)))
2270 msg->type = CMSG_HASHED;
2272 case CMSG_ENVELOPED:
2273 if ((ret = CDecodeMsg_DecodeEnvelopedContent(msg, blob)))
2274 msg->type = CMSG_ENVELOPED;
2277 if ((ret = CDecodeMsg_DecodeSignedContent(msg, blob)))
2278 msg->type = CMSG_SIGNED;
2282 CRYPT_CONTENT_INFO *info;
2285 ret = CryptDecodeObjectEx(X509_ASN_ENCODING, PKCS_CONTENT_INFO,
2286 msg->msg_data.pbData, msg->msg_data.cbData, CRYPT_DECODE_ALLOC_FLAG,
2287 NULL, &info, &size);
2290 if (!strcmp(info->pszObjId, szOID_RSA_data))
2291 ret = CDecodeMsg_DecodeContent(msg, &info->Content, CMSG_DATA);
2292 else if (!strcmp(info->pszObjId, szOID_RSA_digestedData))
2293 ret = CDecodeMsg_DecodeContent(msg, &info->Content,
2295 else if (!strcmp(info->pszObjId, szOID_RSA_envelopedData))
2296 ret = CDecodeMsg_DecodeContent(msg, &info->Content,
2298 else if (!strcmp(info->pszObjId, szOID_RSA_signedData))
2299 ret = CDecodeMsg_DecodeContent(msg, &info->Content,
2303 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
2313 static BOOL CDecodeMsg_FinalizeHashedContent(CDecodeMsg *msg,
2314 CRYPT_DER_BLOB *blob)
2316 CRYPT_ALGORITHM_IDENTIFIER *hashAlgoID = NULL;
2321 CryptMsgGetParam(msg, CMSG_HASH_ALGORITHM_PARAM, 0, NULL, &size);
2322 hashAlgoID = CryptMemAlloc(size);
2323 ret = CryptMsgGetParam(msg, CMSG_HASH_ALGORITHM_PARAM, 0, hashAlgoID,
2326 algID = CertOIDToAlgId(hashAlgoID->pszObjId);
2327 ret = CryptCreateHash(msg->crypt_prov, algID, 0, 0, &msg->u.hash);
2330 CRYPT_DATA_BLOB content;
2332 if (msg->base.open_flags & CMSG_DETACHED_FLAG)
2334 /* Unlike for non-detached messages, the data were never stored as
2335 * the content param, but were saved in msg->detached_data instead.
2337 content.pbData = msg->detached_data.pbData;
2338 content.cbData = msg->detached_data.cbData;
2341 ret = ContextPropertyList_FindProperty(msg->properties,
2342 CMSG_CONTENT_PARAM, &content);
2344 ret = CryptHashData(msg->u.hash, content.pbData, content.cbData, 0);
2346 CryptMemFree(hashAlgoID);
2350 static BOOL CDecodeMsg_FinalizeEnvelopedContent(CDecodeMsg *msg,
2351 CRYPT_DER_BLOB *blob)
2353 CRYPT_DATA_BLOB *content;
2355 if (msg->base.open_flags & CMSG_DETACHED_FLAG)
2356 content = &msg->detached_data;
2359 &msg->u.enveloped_data.data->encryptedContentInfo.encryptedContent;
2361 return CRYPT_ConstructBlob(&msg->u.enveloped_data.content, content);
2364 static BOOL CDecodeMsg_FinalizeSignedContent(CDecodeMsg *msg,
2365 CRYPT_DER_BLOB *blob)
2370 ret = CSignedMsgData_AllocateHandles(&msg->u.signed_data);
2371 for (i = 0; ret && i < msg->u.signed_data.info->cSignerInfo; i++)
2372 ret = CSignedMsgData_ConstructSignerHandles(&msg->u.signed_data, i,
2376 CRYPT_DATA_BLOB *content;
2378 /* Now that we have all the content, update the hash handles with
2379 * it. If the message is a detached message, the content is stored
2380 * in msg->detached_data rather than in the signed message's
2383 if (msg->base.open_flags & CMSG_DETACHED_FLAG)
2384 content = &msg->detached_data;
2386 content = &msg->u.signed_data.info->content.Content;
2387 if (content->cbData)
2389 /* If the message is not detached, have to decode the message's
2390 * content if the type is szOID_RSA_data.
2392 if (!(msg->base.open_flags & CMSG_DETACHED_FLAG) &&
2393 !strcmp(msg->u.signed_data.info->content.pszObjId,
2396 CRYPT_DATA_BLOB *blob;
2398 ret = CryptDecodeObjectEx(X509_ASN_ENCODING,
2399 X509_OCTET_STRING, content->pbData, content->cbData,
2400 CRYPT_DECODE_ALLOC_FLAG, NULL, &blob, &size);
2403 ret = CSignedMsgData_Update(&msg->u.signed_data,
2404 blob->pbData, blob->cbData, TRUE, Verify);
2409 ret = CSignedMsgData_Update(&msg->u.signed_data,
2410 content->pbData, content->cbData, TRUE, Verify);
2416 static BOOL CDecodeMsg_FinalizeContent(CDecodeMsg *msg, CRYPT_DER_BLOB *blob)
2423 ret = CDecodeMsg_FinalizeHashedContent(msg, blob);
2425 case CMSG_ENVELOPED:
2426 ret = CDecodeMsg_FinalizeEnvelopedContent(msg, blob);
2429 ret = CDecodeMsg_FinalizeSignedContent(msg, blob);
2437 static BOOL CDecodeMsg_Update(HCRYPTMSG hCryptMsg, const BYTE *pbData,
2438 DWORD cbData, BOOL fFinal)
2440 CDecodeMsg *msg = hCryptMsg;
2443 TRACE("(%p, %p, %d, %d)\n", hCryptMsg, pbData, cbData, fFinal);
2445 if (msg->base.state == MsgStateFinalized)
2446 SetLastError(CRYPT_E_MSG_ERROR);
2447 else if (msg->base.streamed)
2449 FIXME("(%p, %p, %d, %d): streamed update stub\n", hCryptMsg, pbData,
2451 switch (msg->base.state)
2454 ret = CDecodeMsg_CopyData(&msg->msg_data, pbData, cbData);
2457 if (msg->base.open_flags & CMSG_DETACHED_FLAG)
2458 msg->base.state = MsgStateDataFinalized;
2460 msg->base.state = MsgStateFinalized;
2463 msg->base.state = MsgStateUpdated;
2465 case MsgStateUpdated:
2466 ret = CDecodeMsg_CopyData(&msg->msg_data, pbData, cbData);
2469 if (msg->base.open_flags & CMSG_DETACHED_FLAG)
2470 msg->base.state = MsgStateDataFinalized;
2472 msg->base.state = MsgStateFinalized;
2475 case MsgStateDataFinalized:
2476 ret = CDecodeMsg_CopyData(&msg->detached_data, pbData, cbData);
2478 msg->base.state = MsgStateFinalized;
2481 SetLastError(CRYPT_E_MSG_ERROR);
2488 SetLastError(CRYPT_E_MSG_ERROR);
2491 switch (msg->base.state)
2494 ret = CDecodeMsg_CopyData(&msg->msg_data, pbData, cbData);
2495 if (msg->base.open_flags & CMSG_DETACHED_FLAG)
2496 msg->base.state = MsgStateDataFinalized;
2498 msg->base.state = MsgStateFinalized;
2500 case MsgStateDataFinalized:
2501 ret = CDecodeMsg_CopyData(&msg->detached_data, pbData, cbData);
2502 msg->base.state = MsgStateFinalized;
2505 SetLastError(CRYPT_E_MSG_ERROR);
2509 if (ret && fFinal &&
2510 ((msg->base.open_flags & CMSG_DETACHED_FLAG && msg->base.state ==
2511 MsgStateDataFinalized) ||
2512 (!(msg->base.open_flags & CMSG_DETACHED_FLAG) && msg->base.state ==
2513 MsgStateFinalized)))
2514 ret = CDecodeMsg_DecodeContent(msg, &msg->msg_data, msg->type);
2515 if (ret && msg->base.state == MsgStateFinalized)
2516 ret = CDecodeMsg_FinalizeContent(msg, &msg->msg_data);
2520 static BOOL CDecodeHashMsg_GetParam(CDecodeMsg *msg, DWORD dwParamType,
2521 DWORD dwIndex, void *pvData, DWORD *pcbData)
2525 switch (dwParamType)
2527 case CMSG_TYPE_PARAM:
2528 ret = CRYPT_CopyParam(pvData, pcbData, &msg->type, sizeof(msg->type));
2530 case CMSG_HASH_ALGORITHM_PARAM:
2532 CRYPT_DATA_BLOB blob;
2534 ret = ContextPropertyList_FindProperty(msg->properties, dwParamType,
2538 ret = CRYPT_CopyParam(pvData, pcbData, blob.pbData, blob.cbData);
2540 CRYPT_FixUpAlgorithmID(pvData);
2543 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
2546 case CMSG_COMPUTED_HASH_PARAM:
2547 ret = CryptGetHashParam(msg->u.hash, HP_HASHVAL, pvData, pcbData, 0);
2551 CRYPT_DATA_BLOB blob;
2553 ret = ContextPropertyList_FindProperty(msg->properties, dwParamType,
2556 ret = CRYPT_CopyParam(pvData, pcbData, blob.pbData, blob.cbData);
2558 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
2564 /* nextData is an in/out parameter - on input it's the memory location in
2565 * which a copy of in's data should be made, and on output it's the memory
2566 * location immediately after out's copy of in's data.
2568 static inline void CRYPT_CopyBlob(CRYPT_DATA_BLOB *out,
2569 const CRYPT_DATA_BLOB *in, LPBYTE *nextData)
2571 out->cbData = in->cbData;
2574 out->pbData = *nextData;
2575 memcpy(out->pbData, in->pbData, in->cbData);
2576 *nextData += in->cbData;
2580 static inline void CRYPT_CopyAlgorithmId(CRYPT_ALGORITHM_IDENTIFIER *out,
2581 const CRYPT_ALGORITHM_IDENTIFIER *in, LPBYTE *nextData)
2585 out->pszObjId = (LPSTR)*nextData;
2586 strcpy(out->pszObjId, in->pszObjId);
2587 *nextData += strlen(out->pszObjId) + 1;
2589 CRYPT_CopyBlob(&out->Parameters, &in->Parameters, nextData);
2592 static inline void CRYPT_CopyAttributes(CRYPT_ATTRIBUTES *out,
2593 const CRYPT_ATTRIBUTES *in, LPBYTE *nextData)
2595 out->cAttr = in->cAttr;
2600 *nextData = POINTER_ALIGN_DWORD_PTR(*nextData);
2601 out->rgAttr = (CRYPT_ATTRIBUTE *)*nextData;
2602 *nextData += in->cAttr * sizeof(CRYPT_ATTRIBUTE);
2603 for (i = 0; i < in->cAttr; i++)
2605 if (in->rgAttr[i].pszObjId)
2607 out->rgAttr[i].pszObjId = (LPSTR)*nextData;
2608 strcpy(out->rgAttr[i].pszObjId, in->rgAttr[i].pszObjId);
2609 *nextData += strlen(in->rgAttr[i].pszObjId) + 1;
2611 if (in->rgAttr[i].cValue)
2615 out->rgAttr[i].cValue = in->rgAttr[i].cValue;
2616 *nextData = POINTER_ALIGN_DWORD_PTR(*nextData);
2617 out->rgAttr[i].rgValue = (PCRYPT_DATA_BLOB)*nextData;
2618 *nextData += in->rgAttr[i].cValue * sizeof(CRYPT_DATA_BLOB);
2619 for (j = 0; j < in->rgAttr[i].cValue; j++)
2620 CRYPT_CopyBlob(&out->rgAttr[i].rgValue[j],
2621 &in->rgAttr[i].rgValue[j], nextData);
2627 static DWORD CRYPT_SizeOfAttributes(const CRYPT_ATTRIBUTES *attr)
2629 DWORD size = attr->cAttr * sizeof(CRYPT_ATTRIBUTE), i, j;
2631 for (i = 0; i < attr->cAttr; i++)
2633 if (attr->rgAttr[i].pszObjId)
2634 size += strlen(attr->rgAttr[i].pszObjId) + 1;
2636 size = ALIGN_DWORD_PTR(size);
2637 size += attr->rgAttr[i].cValue * sizeof(CRYPT_DATA_BLOB);
2638 for (j = 0; j < attr->rgAttr[i].cValue; j++)
2639 size += attr->rgAttr[i].rgValue[j].cbData;
2641 /* align pointer again to be conservative */
2642 size = ALIGN_DWORD_PTR(size);
2646 static DWORD CRYPT_SizeOfKeyIdAsIssuerAndSerial(const CRYPT_DATA_BLOB *keyId)
2648 static char oid_key_rdn[] = szOID_KEYID_RDN;
2651 CERT_RDN rdn = { 1, &attr };
2652 CERT_NAME_INFO name = { 1, &rdn };
2654 attr.pszObjId = oid_key_rdn;
2655 attr.dwValueType = CERT_RDN_OCTET_STRING;
2656 attr.Value.cbData = keyId->cbData;
2657 attr.Value.pbData = keyId->pbData;
2658 if (CryptEncodeObject(X509_ASN_ENCODING, X509_NAME, &name, NULL, &size))
2659 size++; /* Only include size of special zero serial number on success */
2663 static BOOL CRYPT_CopyKeyIdAsIssuerAndSerial(CERT_NAME_BLOB *issuer,
2664 CRYPT_INTEGER_BLOB *serialNumber, const CRYPT_DATA_BLOB *keyId, DWORD encodedLen,
2667 static char oid_key_rdn[] = szOID_KEYID_RDN;
2669 CERT_RDN rdn = { 1, &attr };
2670 CERT_NAME_INFO name = { 1, &rdn };
2673 /* Encode special zero serial number */
2674 serialNumber->cbData = 1;
2675 serialNumber->pbData = *nextData;
2679 issuer->pbData = *nextData;
2680 attr.pszObjId = oid_key_rdn;
2681 attr.dwValueType = CERT_RDN_OCTET_STRING;
2682 attr.Value.cbData = keyId->cbData;
2683 attr.Value.pbData = keyId->pbData;
2684 ret = CryptEncodeObject(X509_ASN_ENCODING, X509_NAME, &name, *nextData,
2688 *nextData += encodedLen;
2689 issuer->cbData = encodedLen;
2694 static BOOL CRYPT_CopySignerInfo(void *pvData, DWORD *pcbData,
2695 const CMSG_CMS_SIGNER_INFO *in)
2697 DWORD size = sizeof(CMSG_SIGNER_INFO), rdnSize = 0;
2700 TRACE("(%p, %d, %p)\n", pvData, pvData ? *pcbData : 0, in);
2702 if (in->SignerId.dwIdChoice == CERT_ID_ISSUER_SERIAL_NUMBER)
2704 size += in->SignerId.u.IssuerSerialNumber.Issuer.cbData;
2705 size += in->SignerId.u.IssuerSerialNumber.SerialNumber.cbData;
2709 rdnSize = CRYPT_SizeOfKeyIdAsIssuerAndSerial(&in->SignerId.u.KeyId);
2712 if (in->HashAlgorithm.pszObjId)
2713 size += strlen(in->HashAlgorithm.pszObjId) + 1;
2714 size += in->HashAlgorithm.Parameters.cbData;
2715 if (in->HashEncryptionAlgorithm.pszObjId)
2716 size += strlen(in->HashEncryptionAlgorithm.pszObjId) + 1;
2717 size += in->HashEncryptionAlgorithm.Parameters.cbData;
2718 size += in->EncryptedHash.cbData;
2720 size = ALIGN_DWORD_PTR(size);
2721 size += CRYPT_SizeOfAttributes(&in->AuthAttrs);
2722 size += CRYPT_SizeOfAttributes(&in->UnauthAttrs);
2728 else if (*pcbData < size)
2731 SetLastError(ERROR_MORE_DATA);
2736 LPBYTE nextData = (BYTE *)pvData + sizeof(CMSG_SIGNER_INFO);
2737 CMSG_SIGNER_INFO *out = pvData;
2740 out->dwVersion = in->dwVersion;
2741 if (in->SignerId.dwIdChoice == CERT_ID_ISSUER_SERIAL_NUMBER)
2743 CRYPT_CopyBlob(&out->Issuer,
2744 &in->SignerId.u.IssuerSerialNumber.Issuer, &nextData);
2745 CRYPT_CopyBlob(&out->SerialNumber,
2746 &in->SignerId.u.IssuerSerialNumber.SerialNumber, &nextData);
2749 ret = CRYPT_CopyKeyIdAsIssuerAndSerial(&out->Issuer, &out->SerialNumber,
2750 &in->SignerId.u.KeyId, rdnSize, &nextData);
2753 CRYPT_CopyAlgorithmId(&out->HashAlgorithm, &in->HashAlgorithm,
2755 CRYPT_CopyAlgorithmId(&out->HashEncryptionAlgorithm,
2756 &in->HashEncryptionAlgorithm, &nextData);
2757 CRYPT_CopyBlob(&out->EncryptedHash, &in->EncryptedHash, &nextData);
2758 nextData = POINTER_ALIGN_DWORD_PTR(nextData);
2759 CRYPT_CopyAttributes(&out->AuthAttrs, &in->AuthAttrs, &nextData);
2760 CRYPT_CopyAttributes(&out->UnauthAttrs, &in->UnauthAttrs, &nextData);
2763 TRACE("returning %d\n", ret);
2767 static BOOL CRYPT_CopyCMSSignerInfo(void *pvData, DWORD *pcbData,
2768 const CMSG_CMS_SIGNER_INFO *in)
2770 DWORD size = sizeof(CMSG_CMS_SIGNER_INFO);
2773 TRACE("(%p, %d, %p)\n", pvData, pvData ? *pcbData : 0, in);
2775 if (in->SignerId.dwIdChoice == CERT_ID_ISSUER_SERIAL_NUMBER)
2777 size += in->SignerId.u.IssuerSerialNumber.Issuer.cbData;
2778 size += in->SignerId.u.IssuerSerialNumber.SerialNumber.cbData;
2781 size += in->SignerId.u.KeyId.cbData;
2782 if (in->HashAlgorithm.pszObjId)
2783 size += strlen(in->HashAlgorithm.pszObjId) + 1;
2784 size += in->HashAlgorithm.Parameters.cbData;
2785 if (in->HashEncryptionAlgorithm.pszObjId)
2786 size += strlen(in->HashEncryptionAlgorithm.pszObjId) + 1;
2787 size += in->HashEncryptionAlgorithm.Parameters.cbData;
2788 size += in->EncryptedHash.cbData;
2790 size = ALIGN_DWORD_PTR(size);
2791 size += CRYPT_SizeOfAttributes(&in->AuthAttrs);
2792 size += CRYPT_SizeOfAttributes(&in->UnauthAttrs);
2798 else if (*pcbData < size)
2801 SetLastError(ERROR_MORE_DATA);
2806 LPBYTE nextData = (BYTE *)pvData + sizeof(CMSG_CMS_SIGNER_INFO);
2807 CMSG_CMS_SIGNER_INFO *out = pvData;
2809 out->dwVersion = in->dwVersion;
2810 out->SignerId.dwIdChoice = in->SignerId.dwIdChoice;
2811 if (in->SignerId.dwIdChoice == CERT_ID_ISSUER_SERIAL_NUMBER)
2813 CRYPT_CopyBlob(&out->SignerId.u.IssuerSerialNumber.Issuer,
2814 &in->SignerId.u.IssuerSerialNumber.Issuer, &nextData);
2815 CRYPT_CopyBlob(&out->SignerId.u.IssuerSerialNumber.SerialNumber,
2816 &in->SignerId.u.IssuerSerialNumber.SerialNumber, &nextData);
2819 CRYPT_CopyBlob(&out->SignerId.u.KeyId, &in->SignerId.u.KeyId, &nextData);
2820 CRYPT_CopyAlgorithmId(&out->HashAlgorithm, &in->HashAlgorithm,
2822 CRYPT_CopyAlgorithmId(&out->HashEncryptionAlgorithm,
2823 &in->HashEncryptionAlgorithm, &nextData);
2824 CRYPT_CopyBlob(&out->EncryptedHash, &in->EncryptedHash, &nextData);
2825 nextData = POINTER_ALIGN_DWORD_PTR(nextData);
2826 CRYPT_CopyAttributes(&out->AuthAttrs, &in->AuthAttrs, &nextData);
2827 CRYPT_CopyAttributes(&out->UnauthAttrs, &in->UnauthAttrs, &nextData);
2830 TRACE("returning %d\n", ret);
2834 static BOOL CRYPT_CopySignerCertInfo(void *pvData, DWORD *pcbData,
2835 const CMSG_CMS_SIGNER_INFO *in)
2837 DWORD size = sizeof(CERT_INFO), rdnSize = 0;
2840 TRACE("(%p, %d, %p)\n", pvData, pvData ? *pcbData : 0, in);
2842 if (in->SignerId.dwIdChoice == CERT_ID_ISSUER_SERIAL_NUMBER)
2844 size += in->SignerId.u.IssuerSerialNumber.Issuer.cbData;
2845 size += in->SignerId.u.IssuerSerialNumber.SerialNumber.cbData;
2849 rdnSize = CRYPT_SizeOfKeyIdAsIssuerAndSerial(&in->SignerId.u.KeyId);
2857 else if (*pcbData < size)
2860 SetLastError(ERROR_MORE_DATA);
2865 LPBYTE nextData = (BYTE *)pvData + sizeof(CERT_INFO);
2866 CERT_INFO *out = pvData;
2868 memset(out, 0, sizeof(CERT_INFO));
2869 if (in->SignerId.dwIdChoice == CERT_ID_ISSUER_SERIAL_NUMBER)
2871 CRYPT_CopyBlob(&out->Issuer,
2872 &in->SignerId.u.IssuerSerialNumber.Issuer, &nextData);
2873 CRYPT_CopyBlob(&out->SerialNumber,
2874 &in->SignerId.u.IssuerSerialNumber.SerialNumber, &nextData);
2878 ret = CRYPT_CopyKeyIdAsIssuerAndSerial(&out->Issuer, &out->SerialNumber,
2879 &in->SignerId.u.KeyId, rdnSize, &nextData);
2881 TRACE("returning %d\n", ret);
2885 static BOOL CRYPT_CopyRecipientInfo(void *pvData, DWORD *pcbData,
2886 const CERT_ISSUER_SERIAL_NUMBER *in)
2888 DWORD size = sizeof(CERT_INFO);
2891 TRACE("(%p, %d, %p)\n", pvData, pvData ? *pcbData : 0, in);
2893 size += in->SerialNumber.cbData;
2894 size += in->Issuer.cbData;
2900 else if (*pcbData < size)
2903 SetLastError(ERROR_MORE_DATA);
2908 LPBYTE nextData = (BYTE *)pvData + sizeof(CERT_INFO);
2909 CERT_INFO *out = pvData;
2911 CRYPT_CopyBlob(&out->SerialNumber, &in->SerialNumber, &nextData);
2912 CRYPT_CopyBlob(&out->Issuer, &in->Issuer, &nextData);
2915 TRACE("returning %d\n", ret);
2919 static BOOL CDecodeEnvelopedMsg_GetParam(CDecodeMsg *msg, DWORD dwParamType,
2920 DWORD dwIndex, void *pvData, DWORD *pcbData)
2924 switch (dwParamType)
2926 case CMSG_TYPE_PARAM:
2927 ret = CRYPT_CopyParam(pvData, pcbData, &msg->type, sizeof(msg->type));
2929 case CMSG_CONTENT_PARAM:
2930 if (msg->u.enveloped_data.data)
2931 ret = CRYPT_CopyParam(pvData, pcbData,
2932 msg->u.enveloped_data.content.pbData,
2933 msg->u.enveloped_data.content.cbData);
2935 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
2937 case CMSG_RECIPIENT_COUNT_PARAM:
2938 if (msg->u.enveloped_data.data)
2939 ret = CRYPT_CopyParam(pvData, pcbData,
2940 &msg->u.enveloped_data.data->cRecipientInfo, sizeof(DWORD));
2942 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
2944 case CMSG_RECIPIENT_INFO_PARAM:
2945 if (msg->u.enveloped_data.data)
2947 if (dwIndex < msg->u.enveloped_data.data->cRecipientInfo)
2949 PCMSG_KEY_TRANS_RECIPIENT_INFO recipientInfo =
2950 &msg->u.enveloped_data.data->rgRecipientInfo[dwIndex];
2952 ret = CRYPT_CopyRecipientInfo(pvData, pcbData,
2953 &recipientInfo->RecipientId.u.IssuerSerialNumber);
2956 SetLastError(CRYPT_E_INVALID_INDEX);
2959 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
2962 FIXME("unimplemented for %d\n", dwParamType);
2963 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
2968 static BOOL CDecodeSignedMsg_GetParam(CDecodeMsg *msg, DWORD dwParamType,
2969 DWORD dwIndex, void *pvData, DWORD *pcbData)
2973 switch (dwParamType)
2975 case CMSG_TYPE_PARAM:
2976 ret = CRYPT_CopyParam(pvData, pcbData, &msg->type, sizeof(msg->type));
2978 case CMSG_CONTENT_PARAM:
2979 if (msg->u.signed_data.info)
2981 if (!strcmp(msg->u.signed_data.info->content.pszObjId,
2984 CRYPT_DATA_BLOB *blob;
2987 ret = CryptDecodeObjectEx(X509_ASN_ENCODING, X509_OCTET_STRING,
2988 msg->u.signed_data.info->content.Content.pbData,
2989 msg->u.signed_data.info->content.Content.cbData,
2990 CRYPT_DECODE_ALLOC_FLAG, NULL, &blob, &size);
2993 ret = CRYPT_CopyParam(pvData, pcbData, blob->pbData,
2999 ret = CRYPT_CopyParam(pvData, pcbData,
3000 msg->u.signed_data.info->content.Content.pbData,
3001 msg->u.signed_data.info->content.Content.cbData);
3004 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
3006 case CMSG_INNER_CONTENT_TYPE_PARAM:
3007 if (msg->u.signed_data.info)
3008 ret = CRYPT_CopyParam(pvData, pcbData,
3009 msg->u.signed_data.info->content.pszObjId,
3010 strlen(msg->u.signed_data.info->content.pszObjId) + 1);
3012 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
3014 case CMSG_SIGNER_COUNT_PARAM:
3015 if (msg->u.signed_data.info)
3016 ret = CRYPT_CopyParam(pvData, pcbData,
3017 &msg->u.signed_data.info->cSignerInfo, sizeof(DWORD));
3019 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
3021 case CMSG_SIGNER_INFO_PARAM:
3022 if (msg->u.signed_data.info)
3024 if (dwIndex >= msg->u.signed_data.info->cSignerInfo)
3025 SetLastError(CRYPT_E_INVALID_INDEX);
3027 ret = CRYPT_CopySignerInfo(pvData, pcbData,
3028 &msg->u.signed_data.info->rgSignerInfo[dwIndex]);
3031 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
3033 case CMSG_SIGNER_CERT_INFO_PARAM:
3034 if (msg->u.signed_data.info)
3036 if (dwIndex >= msg->u.signed_data.info->cSignerInfo)
3037 SetLastError(CRYPT_E_INVALID_INDEX);
3039 ret = CRYPT_CopySignerCertInfo(pvData, pcbData,
3040 &msg->u.signed_data.info->rgSignerInfo[dwIndex]);
3043 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
3045 case CMSG_CERT_COUNT_PARAM:
3046 if (msg->u.signed_data.info)
3047 ret = CRYPT_CopyParam(pvData, pcbData,
3048 &msg->u.signed_data.info->cCertEncoded, sizeof(DWORD));
3050 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
3052 case CMSG_CERT_PARAM:
3053 if (msg->u.signed_data.info)
3055 if (dwIndex >= msg->u.signed_data.info->cCertEncoded)
3056 SetLastError(CRYPT_E_INVALID_INDEX);
3058 ret = CRYPT_CopyParam(pvData, pcbData,
3059 msg->u.signed_data.info->rgCertEncoded[dwIndex].pbData,
3060 msg->u.signed_data.info->rgCertEncoded[dwIndex].cbData);
3063 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
3065 case CMSG_CRL_COUNT_PARAM:
3066 if (msg->u.signed_data.info)
3067 ret = CRYPT_CopyParam(pvData, pcbData,
3068 &msg->u.signed_data.info->cCrlEncoded, sizeof(DWORD));
3070 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
3072 case CMSG_CRL_PARAM:
3073 if (msg->u.signed_data.info)
3075 if (dwIndex >= msg->u.signed_data.info->cCrlEncoded)
3076 SetLastError(CRYPT_E_INVALID_INDEX);
3078 ret = CRYPT_CopyParam(pvData, pcbData,
3079 msg->u.signed_data.info->rgCrlEncoded[dwIndex].pbData,
3080 msg->u.signed_data.info->rgCrlEncoded[dwIndex].cbData);
3083 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
3085 case CMSG_COMPUTED_HASH_PARAM:
3086 if (msg->u.signed_data.info)
3088 if (dwIndex >= msg->u.signed_data.cSignerHandle)
3089 SetLastError(CRYPT_E_INVALID_INDEX);
3091 ret = CryptGetHashParam(
3092 msg->u.signed_data.signerHandles[dwIndex].contentHash,
3093 HP_HASHVAL, pvData, pcbData, 0);
3096 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
3098 case CMSG_ENCODED_SIGNER:
3099 if (msg->u.signed_data.info)
3101 if (dwIndex >= msg->u.signed_data.info->cSignerInfo)
3102 SetLastError(CRYPT_E_INVALID_INDEX);
3104 ret = CryptEncodeObjectEx(
3105 X509_ASN_ENCODING | PKCS_7_ASN_ENCODING, CMS_SIGNER_INFO,
3106 &msg->u.signed_data.info->rgSignerInfo[dwIndex], 0, NULL,
3110 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
3112 case CMSG_ATTR_CERT_COUNT_PARAM:
3113 if (msg->u.signed_data.info)
3115 DWORD attrCertCount = 0;
3117 ret = CRYPT_CopyParam(pvData, pcbData,
3118 &attrCertCount, sizeof(DWORD));
3121 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
3123 case CMSG_ATTR_CERT_PARAM:
3124 if (msg->u.signed_data.info)
3125 SetLastError(CRYPT_E_INVALID_INDEX);
3127 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
3129 case CMSG_CMS_SIGNER_INFO_PARAM:
3130 if (msg->u.signed_data.info)
3132 if (dwIndex >= msg->u.signed_data.info->cSignerInfo)
3133 SetLastError(CRYPT_E_INVALID_INDEX);
3135 ret = CRYPT_CopyCMSSignerInfo(pvData, pcbData,
3136 &msg->u.signed_data.info->rgSignerInfo[dwIndex]);
3139 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
3142 FIXME("unimplemented for %d\n", dwParamType);
3143 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
3148 static BOOL CDecodeMsg_GetParam(HCRYPTMSG hCryptMsg, DWORD dwParamType,
3149 DWORD dwIndex, void *pvData, DWORD *pcbData)
3151 CDecodeMsg *msg = hCryptMsg;
3157 ret = CDecodeHashMsg_GetParam(msg, dwParamType, dwIndex, pvData,
3160 case CMSG_ENVELOPED:
3161 ret = CDecodeEnvelopedMsg_GetParam(msg, dwParamType, dwIndex, pvData,
3165 ret = CDecodeSignedMsg_GetParam(msg, dwParamType, dwIndex, pvData,
3169 switch (dwParamType)
3171 case CMSG_TYPE_PARAM:
3172 ret = CRYPT_CopyParam(pvData, pcbData, &msg->type,
3177 CRYPT_DATA_BLOB blob;
3179 ret = ContextPropertyList_FindProperty(msg->properties, dwParamType,
3182 ret = CRYPT_CopyParam(pvData, pcbData, blob.pbData,
3185 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
3192 static BOOL CDecodeHashMsg_VerifyHash(CDecodeMsg *msg)
3195 CRYPT_DATA_BLOB hashBlob;
3197 ret = ContextPropertyList_FindProperty(msg->properties,
3198 CMSG_HASH_DATA_PARAM, &hashBlob);
3201 DWORD computedHashSize = 0;
3203 ret = CDecodeHashMsg_GetParam(msg, CMSG_COMPUTED_HASH_PARAM, 0, NULL,
3205 if (hashBlob.cbData == computedHashSize)
3207 LPBYTE computedHash = CryptMemAlloc(computedHashSize);
3211 ret = CDecodeHashMsg_GetParam(msg, CMSG_COMPUTED_HASH_PARAM, 0,
3212 computedHash, &computedHashSize);
3215 if (memcmp(hashBlob.pbData, computedHash, hashBlob.cbData))
3217 SetLastError(CRYPT_E_HASH_VALUE);
3221 CryptMemFree(computedHash);
3225 SetLastError(ERROR_OUTOFMEMORY);
3231 SetLastError(CRYPT_E_HASH_VALUE);
3238 static BOOL CDecodeSignedMsg_VerifySignatureWithKey(CDecodeMsg *msg,
3239 HCRYPTPROV prov, DWORD signerIndex, PCERT_PUBLIC_KEY_INFO keyInfo)
3245 prov = msg->crypt_prov;
3246 ret = CryptImportPublicKeyInfo(prov, X509_ASN_ENCODING, keyInfo, &key);
3250 CRYPT_HASH_BLOB reversedHash;
3252 if (msg->u.signed_data.info->rgSignerInfo[signerIndex].AuthAttrs.cAttr)
3253 hash = msg->u.signed_data.signerHandles[signerIndex].authAttrHash;
3255 hash = msg->u.signed_data.signerHandles[signerIndex].contentHash;
3256 ret = CRYPT_ConstructBlob(&reversedHash,
3257 &msg->u.signed_data.info->rgSignerInfo[signerIndex].EncryptedHash);
3260 CRYPT_ReverseBytes(&reversedHash);
3261 ret = CryptVerifySignatureW(hash, reversedHash.pbData,
3262 reversedHash.cbData, key, NULL, 0);
3263 CryptMemFree(reversedHash.pbData);
3265 CryptDestroyKey(key);
3270 static BOOL CDecodeSignedMsg_VerifySignature(CDecodeMsg *msg, PCERT_INFO info)
3275 if (!msg->u.signed_data.signerHandles)
3277 SetLastError(NTE_BAD_SIGNATURE);
3280 for (i = 0; !ret && i < msg->u.signed_data.info->cSignerInfo; i++)
3282 PCMSG_CMS_SIGNER_INFO signerInfo =
3283 &msg->u.signed_data.info->rgSignerInfo[i];
3285 if (signerInfo->SignerId.dwIdChoice == CERT_ID_ISSUER_SERIAL_NUMBER)
3287 ret = CertCompareCertificateName(X509_ASN_ENCODING,
3288 &signerInfo->SignerId.u.IssuerSerialNumber.Issuer,
3292 ret = CertCompareIntegerBlob(
3293 &signerInfo->SignerId.u.IssuerSerialNumber.SerialNumber,
3294 &info->SerialNumber);
3301 FIXME("signer %d: unimplemented for key id\n", i);
3305 ret = CDecodeSignedMsg_VerifySignatureWithKey(msg, 0, i,
3306 &info->SubjectPublicKeyInfo);
3308 SetLastError(CRYPT_E_SIGNER_NOT_FOUND);
3313 static BOOL CDecodeSignedMsg_VerifySignatureEx(CDecodeMsg *msg,
3314 PCMSG_CTRL_VERIFY_SIGNATURE_EX_PARA para)
3318 if (para->cbSize != sizeof(CMSG_CTRL_VERIFY_SIGNATURE_EX_PARA))
3319 SetLastError(ERROR_INVALID_PARAMETER);
3320 else if (para->dwSignerIndex >= msg->u.signed_data.info->cSignerInfo)
3321 SetLastError(CRYPT_E_SIGNER_NOT_FOUND);
3322 else if (!msg->u.signed_data.signerHandles)
3323 SetLastError(NTE_BAD_SIGNATURE);
3326 switch (para->dwSignerType)
3328 case CMSG_VERIFY_SIGNER_PUBKEY:
3329 ret = CDecodeSignedMsg_VerifySignatureWithKey(msg,
3330 para->hCryptProv, para->dwSignerIndex, para->pvSigner);
3332 case CMSG_VERIFY_SIGNER_CERT:
3334 PCCERT_CONTEXT cert = para->pvSigner;
3336 ret = CDecodeSignedMsg_VerifySignatureWithKey(msg, para->hCryptProv,
3337 para->dwSignerIndex, &cert->pCertInfo->SubjectPublicKeyInfo);
3341 FIXME("unimplemented for signer type %d\n", para->dwSignerType);
3342 SetLastError(CRYPT_E_SIGNER_NOT_FOUND);
3348 static BOOL WINAPI CRYPT_ImportKeyTrans(
3349 PCRYPT_ALGORITHM_IDENTIFIER pContentEncryptionAlgorithm,
3350 PCMSG_CTRL_KEY_TRANS_DECRYPT_PARA pKeyTransDecryptPara, DWORD dwFlags,
3351 void *pvReserved, HCRYPTKEY *phContentEncryptKey)
3356 ret = CryptGetUserKey(pKeyTransDecryptPara->hCryptProv,
3357 pKeyTransDecryptPara->dwKeySpec ? pKeyTransDecryptPara->dwKeySpec :
3358 AT_KEYEXCHANGE, &key);
3361 CMSG_KEY_TRANS_RECIPIENT_INFO *info =
3362 &pKeyTransDecryptPara->pKeyTrans[pKeyTransDecryptPara->dwRecipientIndex];
3363 CRYPT_DATA_BLOB *encryptedKey = &info->EncryptedKey;
3364 DWORD size = encryptedKey->cbData + sizeof(BLOBHEADER) + sizeof(ALG_ID);
3365 BYTE *keyBlob = CryptMemAlloc(size);
3369 DWORD i, k = size - 1;
3370 BLOBHEADER *blobHeader = (BLOBHEADER *)keyBlob;
3371 ALG_ID *algID = (ALG_ID *)(keyBlob + sizeof(BLOBHEADER));
3373 blobHeader->bType = SIMPLEBLOB;
3374 blobHeader->bVersion = CUR_BLOB_VERSION;
3375 blobHeader->reserved = 0;
3376 blobHeader->aiKeyAlg = CertOIDToAlgId(
3377 pContentEncryptionAlgorithm->pszObjId);
3378 *algID = CertOIDToAlgId(info->KeyEncryptionAlgorithm.pszObjId);
3379 for (i = 0; i < encryptedKey->cbData; ++i, --k)
3380 keyBlob[k] = encryptedKey->pbData[i];
3382 ret = CryptImportKey(pKeyTransDecryptPara->hCryptProv, keyBlob,
3383 size, key, 0, phContentEncryptKey);
3384 CryptMemFree(keyBlob);
3388 CryptDestroyKey(key);
3393 static BOOL CRYPT_ImportEncryptedKey(PCRYPT_ALGORITHM_IDENTIFIER contEncrAlg,
3394 PCMSG_CTRL_DECRYPT_PARA para, PCMSG_KEY_TRANS_RECIPIENT_INFO info,
3397 static HCRYPTOIDFUNCSET set = NULL;
3398 PFN_CMSG_IMPORT_KEY_TRANS importKeyFunc = NULL;
3399 HCRYPTOIDFUNCADDR hFunc = NULL;
3400 CMSG_CTRL_KEY_TRANS_DECRYPT_PARA decryptPara;
3403 memset(&decryptPara, 0, sizeof(decryptPara));
3404 decryptPara.cbSize = sizeof(decryptPara);
3405 decryptPara.hCryptProv = para->hCryptProv;
3406 decryptPara.dwKeySpec = para->dwKeySpec;
3407 decryptPara.pKeyTrans = info;
3408 decryptPara.dwRecipientIndex = para->dwRecipientIndex;
3411 set = CryptInitOIDFunctionSet(CMSG_OID_IMPORT_KEY_TRANS_FUNC, 0);
3412 CryptGetOIDFunctionAddress(set, X509_ASN_ENCODING, contEncrAlg->pszObjId, 0,
3413 (void **)&importKeyFunc, &hFunc);
3415 importKeyFunc = CRYPT_ImportKeyTrans;
3416 ret = importKeyFunc(contEncrAlg, &decryptPara, 0, NULL, key);
3418 CryptFreeOIDFunctionAddress(hFunc, 0);
3422 static BOOL CDecodeEnvelopedMsg_CrtlDecrypt(CDecodeMsg *msg,
3423 PCMSG_CTRL_DECRYPT_PARA para)
3426 CEnvelopedDecodeMsg *enveloped_data = &msg->u.enveloped_data;
3427 CRYPT_ENVELOPED_DATA *data = enveloped_data->data;
3429 if (para->cbSize != sizeof(CMSG_CTRL_DECRYPT_PARA))
3430 SetLastError(E_INVALIDARG);
3432 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
3433 else if (para->dwRecipientIndex >= data->cRecipientInfo)
3434 SetLastError(CRYPT_E_INVALID_INDEX);
3435 else if (enveloped_data->decrypted)
3436 SetLastError(CRYPT_E_ALREADY_DECRYPTED);
3437 else if (!para->hCryptProv)
3438 SetLastError(ERROR_INVALID_PARAMETER);
3439 else if (enveloped_data->content.cbData)
3443 ret = CRYPT_ImportEncryptedKey(
3444 &data->encryptedContentInfo.contentEncryptionAlgorithm, para,
3445 data->rgRecipientInfo, &key);
3448 ret = CryptDecrypt(key, 0, TRUE, 0, enveloped_data->content.pbData,
3449 &enveloped_data->content.cbData);
3450 CryptDestroyKey(key);
3456 enveloped_data->decrypted = TRUE;
3460 static BOOL CDecodeMsg_Control(HCRYPTMSG hCryptMsg, DWORD dwFlags,
3461 DWORD dwCtrlType, const void *pvCtrlPara)
3463 CDecodeMsg *msg = hCryptMsg;
3468 case CMSG_CTRL_VERIFY_SIGNATURE:
3472 ret = CDecodeSignedMsg_VerifySignature(msg, (PCERT_INFO)pvCtrlPara);
3475 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
3478 case CMSG_CTRL_DECRYPT:
3481 case CMSG_ENVELOPED:
3482 ret = CDecodeEnvelopedMsg_CrtlDecrypt(msg,
3483 (PCMSG_CTRL_DECRYPT_PARA)pvCtrlPara);
3484 if (ret && (dwFlags & CMSG_CRYPT_RELEASE_CONTEXT_FLAG))
3485 msg->u.enveloped_data.crypt_prov =
3486 ((PCMSG_CTRL_DECRYPT_PARA)pvCtrlPara)->hCryptProv;
3489 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
3492 case CMSG_CTRL_VERIFY_HASH:
3496 ret = CDecodeHashMsg_VerifyHash(msg);
3499 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
3502 case CMSG_CTRL_VERIFY_SIGNATURE_EX:
3506 ret = CDecodeSignedMsg_VerifySignatureEx(msg,
3507 (PCMSG_CTRL_VERIFY_SIGNATURE_EX_PARA)pvCtrlPara);
3510 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
3514 SetLastError(CRYPT_E_CONTROL_TYPE);
3519 HCRYPTMSG WINAPI CryptMsgOpenToDecode(DWORD dwMsgEncodingType, DWORD dwFlags,
3520 DWORD dwMsgType, HCRYPTPROV_LEGACY hCryptProv, PCERT_INFO pRecipientInfo,
3521 PCMSG_STREAM_INFO pStreamInfo)
3525 TRACE("(%08x, %08x, %08x, %08lx, %p, %p)\n", dwMsgEncodingType,
3526 dwFlags, dwMsgType, hCryptProv, pRecipientInfo, pStreamInfo);
3528 if (GET_CMSG_ENCODING_TYPE(dwMsgEncodingType) != PKCS_7_ASN_ENCODING)
3530 SetLastError(E_INVALIDARG);
3533 msg = CryptMemAlloc(sizeof(CDecodeMsg));
3536 CryptMsgBase_Init((CryptMsgBase *)msg, dwFlags, pStreamInfo,
3537 CDecodeMsg_Close, CDecodeMsg_GetParam, CDecodeMsg_Update,
3538 CDecodeMsg_Control);
3539 msg->type = dwMsgType;
3541 msg->crypt_prov = hCryptProv;
3544 msg->crypt_prov = CRYPT_GetDefaultProvider();
3545 msg->base.open_flags &= ~CMSG_CRYPT_RELEASE_CONTEXT_FLAG;
3547 memset(&msg->u, 0, sizeof(msg->u));
3548 msg->msg_data.cbData = 0;
3549 msg->msg_data.pbData = NULL;
3550 msg->detached_data.cbData = 0;
3551 msg->detached_data.pbData = NULL;
3552 msg->properties = ContextPropertyList_Create();
3557 HCRYPTMSG WINAPI CryptMsgDuplicate(HCRYPTMSG hCryptMsg)
3559 TRACE("(%p)\n", hCryptMsg);
3563 CryptMsgBase *msg = hCryptMsg;
3565 InterlockedIncrement(&msg->ref);
3570 BOOL WINAPI CryptMsgClose(HCRYPTMSG hCryptMsg)
3572 TRACE("(%p)\n", hCryptMsg);
3576 CryptMsgBase *msg = hCryptMsg;
3578 if (InterlockedDecrement(&msg->ref) == 0)
3580 TRACE("freeing %p\n", msg);
3589 BOOL WINAPI CryptMsgUpdate(HCRYPTMSG hCryptMsg, const BYTE *pbData,
3590 DWORD cbData, BOOL fFinal)
3592 CryptMsgBase *msg = hCryptMsg;
3594 TRACE("(%p, %p, %d, %d)\n", hCryptMsg, pbData, cbData, fFinal);
3596 return msg->update(hCryptMsg, pbData, cbData, fFinal);
3599 BOOL WINAPI CryptMsgGetParam(HCRYPTMSG hCryptMsg, DWORD dwParamType,
3600 DWORD dwIndex, void *pvData, DWORD *pcbData)
3602 CryptMsgBase *msg = hCryptMsg;
3604 TRACE("(%p, %d, %d, %p, %p)\n", hCryptMsg, dwParamType, dwIndex,
3606 return msg->get_param(hCryptMsg, dwParamType, dwIndex, pvData, pcbData);
3609 BOOL WINAPI CryptMsgControl(HCRYPTMSG hCryptMsg, DWORD dwFlags,
3610 DWORD dwCtrlType, const void *pvCtrlPara)
3612 CryptMsgBase *msg = hCryptMsg;
3614 TRACE("(%p, %08x, %d, %p)\n", hCryptMsg, dwFlags, dwCtrlType,
3616 return msg->control(hCryptMsg, dwFlags, dwCtrlType, pvCtrlPara);
3619 static CERT_INFO *CRYPT_GetSignerCertInfoFromMsg(HCRYPTMSG msg,
3620 DWORD dwSignerIndex)
3622 CERT_INFO *certInfo = NULL;
3625 if (CryptMsgGetParam(msg, CMSG_SIGNER_CERT_INFO_PARAM, dwSignerIndex, NULL,
3628 certInfo = CryptMemAlloc(size);
3631 if (!CryptMsgGetParam(msg, CMSG_SIGNER_CERT_INFO_PARAM,
3632 dwSignerIndex, certInfo, &size))
3634 CryptMemFree(certInfo);
3642 BOOL WINAPI CryptMsgGetAndVerifySigner(HCRYPTMSG hCryptMsg, DWORD cSignerStore,
3643 HCERTSTORE *rghSignerStore, DWORD dwFlags, PCCERT_CONTEXT *ppSigner,
3644 DWORD *pdwSignerIndex)
3647 DWORD i, signerIndex = 0;
3648 PCCERT_CONTEXT signerCert = NULL;
3651 TRACE("(%p, %d, %p, %08x, %p, %p)\n", hCryptMsg, cSignerStore,
3652 rghSignerStore, dwFlags, ppSigner, pdwSignerIndex);
3654 /* Clear output parameters */
3657 if (pdwSignerIndex && !(dwFlags & CMSG_USE_SIGNER_INDEX_FLAG))
3658 *pdwSignerIndex = 0;
3660 /* Create store to search for signer certificates */
3661 store = CertOpenStore(CERT_STORE_PROV_COLLECTION, 0, 0,
3662 CERT_STORE_CREATE_NEW_FLAG, NULL);
3663 if (!(dwFlags & CMSG_TRUSTED_SIGNER_FLAG))
3665 HCERTSTORE msgStore = CertOpenStore(CERT_STORE_PROV_MSG, 0, 0, 0,
3668 CertAddStoreToCollection(store, msgStore, 0, 0);
3669 CertCloseStore(msgStore, 0);
3671 for (i = 0; i < cSignerStore; i++)
3672 CertAddStoreToCollection(store, rghSignerStore[i], 0, 0);
3674 /* Find signer cert */
3675 if (dwFlags & CMSG_USE_SIGNER_INDEX_FLAG)
3677 CERT_INFO *signer = CRYPT_GetSignerCertInfoFromMsg(hCryptMsg,
3682 signerIndex = *pdwSignerIndex;
3683 signerCert = CertFindCertificateInStore(store, X509_ASN_ENCODING,
3684 0, CERT_FIND_SUBJECT_CERT, signer, NULL);
3685 CryptMemFree(signer);
3690 DWORD count, size = sizeof(count);
3692 if (CryptMsgGetParam(hCryptMsg, CMSG_SIGNER_COUNT_PARAM, 0, &count,
3695 for (i = 0; !signerCert && i < count; i++)
3697 CERT_INFO *signer = CRYPT_GetSignerCertInfoFromMsg(hCryptMsg,
3702 signerCert = CertFindCertificateInStore(store,
3703 X509_ASN_ENCODING, 0, CERT_FIND_SUBJECT_CERT, signer,
3707 CryptMemFree(signer);
3712 SetLastError(CRYPT_E_NO_TRUSTED_SIGNER);
3716 if (!(dwFlags & CMSG_SIGNER_ONLY_FLAG))
3717 ret = CryptMsgControl(hCryptMsg, 0, CMSG_CTRL_VERIFY_SIGNATURE,
3718 signerCert->pCertInfo);
3724 *ppSigner = CertDuplicateCertificateContext(signerCert);
3726 *pdwSignerIndex = signerIndex;
3728 CertFreeCertificateContext(signerCert);
3731 CertCloseStore(store, 0);
3735 BOOL WINAPI CryptMsgVerifyCountersignatureEncodedEx(HCRYPTPROV_LEGACY hCryptProv,
3736 DWORD dwEncodingType, PBYTE pbSignerInfo, DWORD cbSignerInfo,
3737 PBYTE pbSignerInfoCountersignature, DWORD cbSignerInfoCountersignature,
3738 DWORD dwSignerType, void *pvSigner, DWORD dwFlags, void *pvReserved)
3740 FIXME("(%08lx, %08x, %p, %d, %p, %d, %d, %p, %08x, %p): stub\n", hCryptProv,
3741 dwEncodingType, pbSignerInfo, cbSignerInfo, pbSignerInfoCountersignature,
3742 cbSignerInfoCountersignature, dwSignerType, pvSigner, dwFlags, pvReserved);
3746 BOOL WINAPI CryptMsgEncodeAndSignCTL(DWORD dwMsgEncodingType,
3747 PCTL_INFO pCtlInfo, PCMSG_SIGNED_ENCODE_INFO pSignInfo, DWORD dwFlags,
3748 BYTE *pbEncoded, DWORD *pcbEncoded)
3754 TRACE("(%08x, %p, %p, %08x, %p, %p)\n", dwMsgEncodingType, pCtlInfo,
3755 pSignInfo, dwFlags, pbEncoded, pcbEncoded);
3759 FIXME("unimplemented for flags %08x\n", dwFlags);
3762 if ((ret = CryptEncodeObjectEx(dwMsgEncodingType, PKCS_CTL, pCtlInfo,
3763 CRYPT_ENCODE_ALLOC_FLAG, NULL, &pbCtlContent, &cbCtlContent)))
3765 ret = CryptMsgSignCTL(dwMsgEncodingType, pbCtlContent, cbCtlContent,
3766 pSignInfo, dwFlags, pbEncoded, pcbEncoded);
3767 LocalFree(pbCtlContent);
3772 BOOL WINAPI CryptMsgSignCTL(DWORD dwMsgEncodingType, BYTE *pbCtlContent,
3773 DWORD cbCtlContent, PCMSG_SIGNED_ENCODE_INFO pSignInfo, DWORD dwFlags,
3774 BYTE *pbEncoded, DWORD *pcbEncoded)
3776 static char oid_ctl[] = szOID_CTL;
3780 TRACE("(%08x, %p, %d, %p, %08x, %p, %p)\n", dwMsgEncodingType,
3781 pbCtlContent, cbCtlContent, pSignInfo, dwFlags, pbEncoded, pcbEncoded);
3785 FIXME("unimplemented for flags %08x\n", dwFlags);
3788 msg = CryptMsgOpenToEncode(dwMsgEncodingType, 0, CMSG_SIGNED, pSignInfo,
3792 ret = CryptMsgUpdate(msg, pbCtlContent, cbCtlContent, TRUE);
3794 ret = CryptMsgGetParam(msg, CMSG_CONTENT_PARAM, 0, pbEncoded,