gdi32: Simplify computation of the DIB header size for internal BITMAPINFO structures.
[wine/multimedia.git] / dlls / crypt32 / msg.c
blob50c1bee9dd78b50984c8140ad4b6e62d9795c8dc
1 /*
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
19 #include "config.h"
20 #include "wine/port.h"
22 #include <stdarg.h>
23 #define NONAMELESSUNION
24 #include "windef.h"
25 #include "winbase.h"
26 #include "wincrypt.h"
27 #include "snmp.h"
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
36 * data here.
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);
54 return FALSE;
57 typedef enum _CryptMsgState {
58 MsgStateInit,
59 MsgStateUpdated,
60 MsgStateDataFinalized,
61 MsgStateFinalized
62 } CryptMsgState;
64 typedef struct _CryptMsgBase
66 LONG ref;
67 DWORD open_flags;
68 BOOL streamed;
69 CMSG_STREAM_INFO stream_info;
70 CryptMsgState state;
71 CryptMsgCloseFunc close;
72 CryptMsgUpdateFunc update;
73 CryptMsgGetParamFunc get_param;
74 CryptMsgControlFunc control;
75 } CryptMsgBase;
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)
82 msg->ref = 1;
83 msg->open_flags = dwFlags;
84 if (pStreamInfo)
86 msg->streamed = TRUE;
87 msg->stream_info = *pStreamInfo;
89 else
91 msg->streamed = FALSE;
92 memset(&msg->stream_info, 0, sizeof(msg->stream_info));
94 msg->close = close;
95 msg->get_param = get_param;
96 msg->update = update;
97 msg->control = control;
98 msg->state = MsgStateInit;
101 typedef struct _CDataEncodeMsg
103 CryptMsgBase base;
104 DWORD bare_content_len;
105 LPBYTE bare_content;
106 } CDataEncodeMsg;
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;
123 DWORD lenBytes;
124 BOOL ret = TRUE;
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);
131 if (!pbEncoded)
132 *pcbEncoded = 1 + lenBytes + dataLen;
133 else
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,
142 &lenBytes);
145 return ret;
148 static BOOL CRYPT_EncodeDataContentInfoHeader(const CDataEncodeMsg *msg,
149 CRYPT_DATA_BLOB *header)
151 BOOL ret;
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));
159 if (header->pbData)
161 header->cbData = sizeof(headerValue);
162 memcpy(header->pbData, headerValue, sizeof(headerValue));
163 ret = TRUE;
165 else
166 ret = FALSE;
168 else
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);
180 if (ret)
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;
188 return ret;
191 static BOOL CDataEncodeMsg_Update(HCRYPTMSG hCryptMsg, const BYTE *pbData,
192 DWORD cbData, BOOL fFinal)
194 CDataEncodeMsg *msg = hCryptMsg;
195 BOOL ret = FALSE;
197 if (msg->base.state == MsgStateFinalized)
198 SetLastError(CRYPT_E_MSG_ERROR);
199 else if (msg->base.streamed)
201 __TRY
203 if (msg->base.state != MsgStateUpdated)
205 CRYPT_DATA_BLOB header;
207 ret = CRYPT_EncodeDataContentInfoHeader(msg, &header);
208 if (ret)
210 ret = msg->base.stream_info.pfnStreamOutput(
211 msg->base.stream_info.pvArg, header.pbData, header.cbData,
212 FALSE);
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)
221 BYTE *header;
222 DWORD headerLen;
224 ret = CRYPT_EncodeContentLength(X509_ASN_ENCODING, NULL,
225 &cbData, CRYPT_ENCODE_ALLOC_FLAG, NULL, (BYTE *)&header,
226 &headerLen);
227 if (ret)
229 ret = msg->base.stream_info.pfnStreamOutput(
230 msg->base.stream_info.pvArg, header, headerLen,
231 FALSE);
232 LocalFree(header);
235 if (!fFinal)
237 ret = msg->base.stream_info.pfnStreamOutput(
238 msg->base.stream_info.pvArg, (BYTE *)pbData, cbData,
239 FALSE);
240 msg->base.state = MsgStateUpdated;
242 else
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,
251 FALSE);
252 if (ret)
253 ret = msg->base.stream_info.pfnStreamOutput(
254 msg->base.stream_info.pvArg, indefinite_trailer,
255 sizeof(indefinite_trailer), TRUE);
257 else
258 ret = msg->base.stream_info.pfnStreamOutput(
259 msg->base.stream_info.pvArg, (BYTE *)pbData, cbData, TRUE);
262 __EXCEPT_PAGE_FAULT
264 SetLastError(STATUS_ACCESS_VIOLATION);
265 ret = FALSE;
267 __ENDTRY;
269 else
271 if (!fFinal)
273 if (msg->base.open_flags & CMSG_DETACHED_FLAG)
274 SetLastError(E_INVALIDARG);
275 else
276 SetLastError(CRYPT_E_MSG_ERROR);
278 else
280 CRYPT_DATA_BLOB blob = { cbData, (LPBYTE)pbData };
282 msg->base.state = MsgStateFinalized;
283 /* non-streamed data messages don't allow non-final updates,
284 * don't bother checking whether data already exist, they can't.
286 ret = CryptEncodeObjectEx(X509_ASN_ENCODING, X509_OCTET_STRING,
287 &blob, CRYPT_ENCODE_ALLOC_FLAG, NULL, &msg->bare_content,
288 &msg->bare_content_len);
291 return ret;
294 static BOOL CRYPT_CopyParam(void *pvData, DWORD *pcbData, const void *src,
295 DWORD len)
297 BOOL ret = TRUE;
299 if (!pvData)
300 *pcbData = len;
301 else if (*pcbData < len)
303 *pcbData = len;
304 SetLastError(ERROR_MORE_DATA);
305 ret = FALSE;
307 else
309 *pcbData = len;
310 memcpy(pvData, src, len);
312 return ret;
315 static BOOL CDataEncodeMsg_GetParam(HCRYPTMSG hCryptMsg, DWORD dwParamType,
316 DWORD dwIndex, void *pvData, DWORD *pcbData)
318 CDataEncodeMsg *msg = hCryptMsg;
319 BOOL ret = FALSE;
321 switch (dwParamType)
323 case CMSG_CONTENT_PARAM:
324 if (msg->base.streamed)
325 SetLastError(E_INVALIDARG);
326 else
328 CRYPT_CONTENT_INFO info;
329 char rsa_data[] = "1.2.840.113549.1.7.1";
331 info.pszObjId = rsa_data;
332 info.Content.cbData = msg->bare_content_len;
333 info.Content.pbData = msg->bare_content;
334 ret = CryptEncodeObject(X509_ASN_ENCODING, PKCS_CONTENT_INFO, &info,
335 pvData, pcbData);
337 break;
338 case CMSG_BARE_CONTENT_PARAM:
339 if (msg->base.streamed)
340 SetLastError(E_INVALIDARG);
341 else
342 ret = CRYPT_CopyParam(pvData, pcbData, msg->bare_content,
343 msg->bare_content_len);
344 break;
345 default:
346 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
348 return ret;
351 static HCRYPTMSG CDataEncodeMsg_Open(DWORD dwFlags, const void *pvMsgEncodeInfo,
352 LPSTR pszInnerContentObjID, PCMSG_STREAM_INFO pStreamInfo)
354 CDataEncodeMsg *msg;
356 if (pvMsgEncodeInfo)
358 SetLastError(E_INVALIDARG);
359 return NULL;
361 msg = CryptMemAlloc(sizeof(CDataEncodeMsg));
362 if (msg)
364 CryptMsgBase_Init((CryptMsgBase *)msg, dwFlags, pStreamInfo,
365 CDataEncodeMsg_Close, CDataEncodeMsg_GetParam, CDataEncodeMsg_Update,
366 CRYPT_DefaultMsgControl);
367 msg->bare_content_len = sizeof(empty_data_content);
368 msg->bare_content = (LPBYTE)empty_data_content;
370 return msg;
373 typedef struct _CHashEncodeMsg
375 CryptMsgBase base;
376 HCRYPTPROV prov;
377 HCRYPTHASH hash;
378 CRYPT_DATA_BLOB data;
379 } CHashEncodeMsg;
381 static void CHashEncodeMsg_Close(HCRYPTMSG hCryptMsg)
383 CHashEncodeMsg *msg = hCryptMsg;
385 CryptMemFree(msg->data.pbData);
386 CryptDestroyHash(msg->hash);
387 if (msg->base.open_flags & CMSG_CRYPT_RELEASE_CONTEXT_FLAG)
388 CryptReleaseContext(msg->prov, 0);
391 static BOOL CRYPT_EncodePKCSDigestedData(CHashEncodeMsg *msg, void *pvData,
392 DWORD *pcbData)
394 BOOL ret;
395 ALG_ID algID;
396 DWORD size = sizeof(algID);
398 ret = CryptGetHashParam(msg->hash, HP_ALGID, (BYTE *)&algID, &size, 0);
399 if (ret)
401 CRYPT_DIGESTED_DATA digestedData = { 0 };
402 char oid_rsa_data[] = szOID_RSA_data;
404 digestedData.version = CMSG_HASHED_DATA_PKCS_1_5_VERSION;
405 digestedData.DigestAlgorithm.pszObjId = (LPSTR)CertAlgIdToOID(algID);
406 /* FIXME: what about digestedData.DigestAlgorithm.Parameters? */
407 /* Quirk: OID is only encoded messages if an update has happened */
408 if (msg->base.state != MsgStateInit)
409 digestedData.ContentInfo.pszObjId = oid_rsa_data;
410 if (!(msg->base.open_flags & CMSG_DETACHED_FLAG) && msg->data.cbData)
412 ret = CRYPT_AsnEncodeOctets(0, NULL, &msg->data,
413 CRYPT_ENCODE_ALLOC_FLAG, NULL,
414 (LPBYTE)&digestedData.ContentInfo.Content.pbData,
415 &digestedData.ContentInfo.Content.cbData);
417 if (msg->base.state == MsgStateFinalized)
419 size = sizeof(DWORD);
420 ret = CryptGetHashParam(msg->hash, HP_HASHSIZE,
421 (LPBYTE)&digestedData.hash.cbData, &size, 0);
422 if (ret)
424 digestedData.hash.pbData = CryptMemAlloc(
425 digestedData.hash.cbData);
426 ret = CryptGetHashParam(msg->hash, HP_HASHVAL,
427 digestedData.hash.pbData, &digestedData.hash.cbData, 0);
430 if (ret)
431 ret = CRYPT_AsnEncodePKCSDigestedData(&digestedData, pvData,
432 pcbData);
433 CryptMemFree(digestedData.hash.pbData);
434 LocalFree(digestedData.ContentInfo.Content.pbData);
436 return ret;
439 static BOOL CHashEncodeMsg_GetParam(HCRYPTMSG hCryptMsg, DWORD dwParamType,
440 DWORD dwIndex, void *pvData, DWORD *pcbData)
442 CHashEncodeMsg *msg = hCryptMsg;
443 BOOL ret = FALSE;
445 TRACE("(%p, %d, %d, %p, %p)\n", hCryptMsg, dwParamType, dwIndex,
446 pvData, pcbData);
448 switch (dwParamType)
450 case CMSG_BARE_CONTENT_PARAM:
451 if (msg->base.streamed)
452 SetLastError(E_INVALIDARG);
453 else
454 ret = CRYPT_EncodePKCSDigestedData(msg, pvData, pcbData);
455 break;
456 case CMSG_CONTENT_PARAM:
458 CRYPT_CONTENT_INFO info;
460 ret = CryptMsgGetParam(hCryptMsg, CMSG_BARE_CONTENT_PARAM, 0, NULL,
461 &info.Content.cbData);
462 if (ret)
464 info.Content.pbData = CryptMemAlloc(info.Content.cbData);
465 if (info.Content.pbData)
467 ret = CryptMsgGetParam(hCryptMsg, CMSG_BARE_CONTENT_PARAM, 0,
468 info.Content.pbData, &info.Content.cbData);
469 if (ret)
471 char oid_rsa_hashed[] = szOID_RSA_hashedData;
473 info.pszObjId = oid_rsa_hashed;
474 ret = CryptEncodeObjectEx(X509_ASN_ENCODING,
475 PKCS_CONTENT_INFO, &info, 0, NULL, pvData, pcbData);
477 CryptMemFree(info.Content.pbData);
479 else
480 ret = FALSE;
482 break;
484 case CMSG_COMPUTED_HASH_PARAM:
485 ret = CryptGetHashParam(msg->hash, HP_HASHVAL, pvData, pcbData, 0);
486 break;
487 case CMSG_VERSION_PARAM:
488 if (msg->base.state != MsgStateFinalized)
489 SetLastError(CRYPT_E_MSG_ERROR);
490 else
492 DWORD version = CMSG_HASHED_DATA_PKCS_1_5_VERSION;
494 /* Since the data are always encoded as octets, the version is
495 * always 0 (see rfc3852, section 7)
497 ret = CRYPT_CopyParam(pvData, pcbData, &version, sizeof(version));
499 break;
500 default:
501 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
503 return ret;
506 static BOOL CHashEncodeMsg_Update(HCRYPTMSG hCryptMsg, const BYTE *pbData,
507 DWORD cbData, BOOL fFinal)
509 CHashEncodeMsg *msg = hCryptMsg;
510 BOOL ret = FALSE;
512 TRACE("(%p, %p, %d, %d)\n", hCryptMsg, pbData, cbData, fFinal);
514 if (msg->base.state == MsgStateFinalized)
515 SetLastError(CRYPT_E_MSG_ERROR);
516 else if (msg->base.streamed || (msg->base.open_flags & CMSG_DETACHED_FLAG))
518 /* Doesn't do much, as stream output is never called, and you
519 * can't get the content.
521 ret = CryptHashData(msg->hash, pbData, cbData, 0);
522 msg->base.state = fFinal ? MsgStateFinalized : MsgStateUpdated;
524 else
526 if (!fFinal)
527 SetLastError(CRYPT_E_MSG_ERROR);
528 else
530 ret = CryptHashData(msg->hash, pbData, cbData, 0);
531 if (ret)
533 msg->data.pbData = CryptMemAlloc(cbData);
534 if (msg->data.pbData)
536 memcpy(msg->data.pbData + msg->data.cbData, pbData, cbData);
537 msg->data.cbData += cbData;
539 else
540 ret = FALSE;
542 msg->base.state = MsgStateFinalized;
545 return ret;
548 static HCRYPTMSG CHashEncodeMsg_Open(DWORD dwFlags, const void *pvMsgEncodeInfo,
549 LPSTR pszInnerContentObjID, PCMSG_STREAM_INFO pStreamInfo)
551 CHashEncodeMsg *msg;
552 const CMSG_HASHED_ENCODE_INFO *info = pvMsgEncodeInfo;
553 HCRYPTPROV prov;
554 ALG_ID algID;
556 if (info->cbSize != sizeof(CMSG_HASHED_ENCODE_INFO))
558 SetLastError(E_INVALIDARG);
559 return NULL;
561 if (!(algID = CertOIDToAlgId(info->HashAlgorithm.pszObjId)))
563 SetLastError(CRYPT_E_UNKNOWN_ALGO);
564 return NULL;
566 if (info->hCryptProv)
567 prov = info->hCryptProv;
568 else
570 prov = CRYPT_GetDefaultProvider();
571 dwFlags &= ~CMSG_CRYPT_RELEASE_CONTEXT_FLAG;
573 msg = CryptMemAlloc(sizeof(CHashEncodeMsg));
574 if (msg)
576 CryptMsgBase_Init((CryptMsgBase *)msg, dwFlags, pStreamInfo,
577 CHashEncodeMsg_Close, CHashEncodeMsg_GetParam, CHashEncodeMsg_Update,
578 CRYPT_DefaultMsgControl);
579 msg->prov = prov;
580 msg->data.cbData = 0;
581 msg->data.pbData = NULL;
582 if (!CryptCreateHash(prov, algID, 0, 0, &msg->hash))
584 CryptMsgClose(msg);
585 msg = NULL;
588 return msg;
591 typedef struct _CMSG_SIGNER_ENCODE_INFO_WITH_CMS
593 DWORD cbSize;
594 PCERT_INFO pCertInfo;
595 HCRYPTPROV hCryptProv;
596 DWORD dwKeySpec;
597 CRYPT_ALGORITHM_IDENTIFIER HashAlgorithm;
598 void *pvHashAuxInfo;
599 DWORD cAuthAttr;
600 PCRYPT_ATTRIBUTE rgAuthAttr;
601 DWORD cUnauthAttr;
602 PCRYPT_ATTRIBUTE rgUnauthAttr;
603 CERT_ID SignerId;
604 CRYPT_ALGORITHM_IDENTIFIER HashEncryptionAlgorithm;
605 void *pvHashEncryptionAuxInfo;
606 } CMSG_SIGNER_ENCODE_INFO_WITH_CMS, *PCMSG_SIGNER_ENCODE_INFO_WITH_CMS;
608 typedef struct _CMSG_SIGNED_ENCODE_INFO_WITH_CMS
610 DWORD cbSize;
611 DWORD cSigners;
612 PCMSG_SIGNER_ENCODE_INFO_WITH_CMS rgSigners;
613 DWORD cCertEncoded;
614 PCERT_BLOB rgCertEncoded;
615 DWORD cCrlEncoded;
616 PCRL_BLOB rgCrlEncoded;
617 DWORD cAttrCertEncoded;
618 PCERT_BLOB rgAttrCertEncoded;
619 } CMSG_SIGNED_ENCODE_INFO_WITH_CMS, *PCMSG_SIGNED_ENCODE_INFO_WITH_CMS;
621 static BOOL CRYPT_IsValidSigner(const CMSG_SIGNER_ENCODE_INFO_WITH_CMS *signer)
623 if (signer->cbSize != sizeof(CMSG_SIGNER_ENCODE_INFO) &&
624 signer->cbSize != sizeof(CMSG_SIGNER_ENCODE_INFO_WITH_CMS))
626 SetLastError(E_INVALIDARG);
627 return FALSE;
629 if (signer->cbSize == sizeof(CMSG_SIGNER_ENCODE_INFO))
631 if (!signer->pCertInfo->SerialNumber.cbData)
633 SetLastError(E_INVALIDARG);
634 return FALSE;
636 if (!signer->pCertInfo->Issuer.cbData)
638 SetLastError(E_INVALIDARG);
639 return FALSE;
642 else if (signer->cbSize == sizeof(CMSG_SIGNER_ENCODE_INFO_WITH_CMS))
644 switch (signer->SignerId.dwIdChoice)
646 case 0:
647 if (!signer->pCertInfo->SerialNumber.cbData)
649 SetLastError(E_INVALIDARG);
650 return FALSE;
652 if (!signer->pCertInfo->Issuer.cbData)
654 SetLastError(E_INVALIDARG);
655 return FALSE;
657 break;
658 case CERT_ID_ISSUER_SERIAL_NUMBER:
659 if (!signer->SignerId.u.IssuerSerialNumber.SerialNumber.cbData)
661 SetLastError(E_INVALIDARG);
662 return FALSE;
664 if (!signer->SignerId.u.IssuerSerialNumber.Issuer.cbData)
666 SetLastError(E_INVALIDARG);
667 return FALSE;
669 break;
670 case CERT_ID_KEY_IDENTIFIER:
671 if (!signer->SignerId.u.KeyId.cbData)
673 SetLastError(E_INVALIDARG);
674 return FALSE;
676 break;
677 default:
678 SetLastError(E_INVALIDARG);
680 if (signer->HashEncryptionAlgorithm.pszObjId)
682 FIXME("CMSG_SIGNER_ENCODE_INFO with CMS fields unsupported\n");
683 return FALSE;
686 if (!signer->hCryptProv)
688 SetLastError(E_INVALIDARG);
689 return FALSE;
691 if (!CertOIDToAlgId(signer->HashAlgorithm.pszObjId))
693 SetLastError(CRYPT_E_UNKNOWN_ALGO);
694 return FALSE;
696 return TRUE;
699 static BOOL CRYPT_ConstructBlob(CRYPT_DATA_BLOB *out, const CRYPT_DATA_BLOB *in)
701 BOOL ret = TRUE;
703 out->cbData = in->cbData;
704 if (out->cbData)
706 out->pbData = CryptMemAlloc(out->cbData);
707 if (out->pbData)
708 memcpy(out->pbData, in->pbData, out->cbData);
709 else
710 ret = FALSE;
712 else
713 out->pbData = NULL;
714 return ret;
717 static BOOL CRYPT_ConstructBlobArray(DWORD *outCBlobs,
718 PCRYPT_DATA_BLOB *outPBlobs, DWORD cBlobs, const CRYPT_DATA_BLOB *pBlobs)
720 BOOL ret = TRUE;
722 *outCBlobs = cBlobs;
723 if (cBlobs)
725 *outPBlobs = CryptMemAlloc(cBlobs * sizeof(CRYPT_DATA_BLOB));
726 if (*outPBlobs)
728 DWORD i;
730 memset(*outPBlobs, 0, cBlobs * sizeof(CRYPT_DATA_BLOB));
731 for (i = 0; ret && i < cBlobs; i++)
732 ret = CRYPT_ConstructBlob(&(*outPBlobs)[i], &pBlobs[i]);
734 else
735 ret = FALSE;
737 return ret;
740 static void CRYPT_FreeBlobArray(DWORD cBlobs, PCRYPT_DATA_BLOB blobs)
742 DWORD i;
744 for (i = 0; i < cBlobs; i++)
745 CryptMemFree(blobs[i].pbData);
746 CryptMemFree(blobs);
749 static BOOL CRYPT_ConstructAttribute(CRYPT_ATTRIBUTE *out,
750 const CRYPT_ATTRIBUTE *in)
752 BOOL ret;
754 out->pszObjId = CryptMemAlloc(strlen(in->pszObjId) + 1);
755 if (out->pszObjId)
757 strcpy(out->pszObjId, in->pszObjId);
758 ret = CRYPT_ConstructBlobArray(&out->cValue, &out->rgValue,
759 in->cValue, in->rgValue);
761 else
762 ret = FALSE;
763 return ret;
766 static BOOL CRYPT_ConstructAttributes(CRYPT_ATTRIBUTES *out,
767 const CRYPT_ATTRIBUTES *in)
769 BOOL ret = TRUE;
771 out->cAttr = in->cAttr;
772 if (out->cAttr)
774 out->rgAttr = CryptMemAlloc(out->cAttr * sizeof(CRYPT_ATTRIBUTE));
775 if (out->rgAttr)
777 DWORD i;
779 memset(out->rgAttr, 0, out->cAttr * sizeof(CRYPT_ATTRIBUTE));
780 for (i = 0; ret && i < out->cAttr; i++)
781 ret = CRYPT_ConstructAttribute(&out->rgAttr[i], &in->rgAttr[i]);
783 else
784 ret = FALSE;
786 else
787 out->rgAttr = NULL;
788 return ret;
791 /* Constructs a CMSG_CMS_SIGNER_INFO from a CMSG_SIGNER_ENCODE_INFO_WITH_CMS. */
792 static BOOL CSignerInfo_Construct(CMSG_CMS_SIGNER_INFO *info,
793 const CMSG_SIGNER_ENCODE_INFO_WITH_CMS *in)
795 BOOL ret;
797 if (in->cbSize == sizeof(CMSG_SIGNER_ENCODE_INFO))
799 info->dwVersion = CMSG_SIGNER_INFO_V1;
800 ret = CRYPT_ConstructBlob(&info->SignerId.u.IssuerSerialNumber.Issuer,
801 &in->pCertInfo->Issuer);
802 if (ret)
803 ret = CRYPT_ConstructBlob(
804 &info->SignerId.u.IssuerSerialNumber.SerialNumber,
805 &in->pCertInfo->SerialNumber);
806 info->SignerId.dwIdChoice = CERT_ID_ISSUER_SERIAL_NUMBER;
807 info->HashEncryptionAlgorithm.pszObjId =
808 in->pCertInfo->SubjectPublicKeyInfo.Algorithm.pszObjId;
809 if (ret)
810 ret = CRYPT_ConstructBlob(&info->HashEncryptionAlgorithm.Parameters,
811 &in->pCertInfo->SubjectPublicKeyInfo.Algorithm.Parameters);
813 else
815 const CRYPT_ALGORITHM_IDENTIFIER *pEncrAlg;
817 /* Implicitly in->cbSize == sizeof(CMSG_SIGNER_ENCODE_INFO_WITH_CMS).
818 * See CRYPT_IsValidSigner.
820 if (!in->SignerId.dwIdChoice)
822 info->dwVersion = CMSG_SIGNER_INFO_V1;
823 ret = CRYPT_ConstructBlob(&info->SignerId.u.IssuerSerialNumber.Issuer,
824 &in->pCertInfo->Issuer);
825 if (ret)
826 ret = CRYPT_ConstructBlob(
827 &info->SignerId.u.IssuerSerialNumber.SerialNumber,
828 &in->pCertInfo->SerialNumber);
829 info->SignerId.dwIdChoice = CERT_ID_ISSUER_SERIAL_NUMBER;
831 else if (in->SignerId.dwIdChoice == CERT_ID_ISSUER_SERIAL_NUMBER)
833 info->dwVersion = CMSG_SIGNER_INFO_V1;
834 info->SignerId.dwIdChoice = CERT_ID_ISSUER_SERIAL_NUMBER;
835 ret = CRYPT_ConstructBlob(&info->SignerId.u.IssuerSerialNumber.Issuer,
836 &in->SignerId.u.IssuerSerialNumber.Issuer);
837 if (ret)
838 ret = CRYPT_ConstructBlob(
839 &info->SignerId.u.IssuerSerialNumber.SerialNumber,
840 &in->SignerId.u.IssuerSerialNumber.SerialNumber);
842 else
844 /* Implicitly dwIdChoice == CERT_ID_KEY_IDENTIFIER */
845 info->dwVersion = CMSG_SIGNER_INFO_V3;
846 info->SignerId.dwIdChoice = CERT_ID_KEY_IDENTIFIER;
847 ret = CRYPT_ConstructBlob(&info->SignerId.u.KeyId,
848 &in->SignerId.u.KeyId);
850 pEncrAlg = in->HashEncryptionAlgorithm.pszObjId ?
851 &in->HashEncryptionAlgorithm :
852 &in->pCertInfo->SubjectPublicKeyInfo.Algorithm;
853 info->HashEncryptionAlgorithm.pszObjId = pEncrAlg->pszObjId;
854 if (ret)
855 ret = CRYPT_ConstructBlob(&info->HashEncryptionAlgorithm.Parameters,
856 &pEncrAlg->Parameters);
858 /* Assumption: algorithm IDs will point to static strings, not
859 * stack-based ones, so copying the pointer values is safe.
861 info->HashAlgorithm.pszObjId = in->HashAlgorithm.pszObjId;
862 if (ret)
863 ret = CRYPT_ConstructBlob(&info->HashAlgorithm.Parameters,
864 &in->HashAlgorithm.Parameters);
865 if (ret)
866 ret = CRYPT_ConstructAttributes(&info->AuthAttrs,
867 (CRYPT_ATTRIBUTES *)&in->cAuthAttr);
868 if (ret)
869 ret = CRYPT_ConstructAttributes(&info->UnauthAttrs,
870 (CRYPT_ATTRIBUTES *)&in->cUnauthAttr);
871 return ret;
874 static void CSignerInfo_Free(CMSG_CMS_SIGNER_INFO *info)
876 DWORD i, j;
878 if (info->SignerId.dwIdChoice == CERT_ID_ISSUER_SERIAL_NUMBER)
880 CryptMemFree(info->SignerId.u.IssuerSerialNumber.Issuer.pbData);
881 CryptMemFree(info->SignerId.u.IssuerSerialNumber.SerialNumber.pbData);
883 else
884 CryptMemFree(info->SignerId.u.KeyId.pbData);
885 CryptMemFree(info->HashAlgorithm.Parameters.pbData);
886 CryptMemFree(info->HashEncryptionAlgorithm.Parameters.pbData);
887 CryptMemFree(info->EncryptedHash.pbData);
888 for (i = 0; i < info->AuthAttrs.cAttr; i++)
890 for (j = 0; j < info->AuthAttrs.rgAttr[i].cValue; j++)
891 CryptMemFree(info->AuthAttrs.rgAttr[i].rgValue[j].pbData);
892 CryptMemFree(info->AuthAttrs.rgAttr[i].rgValue);
893 CryptMemFree(info->AuthAttrs.rgAttr[i].pszObjId);
895 CryptMemFree(info->AuthAttrs.rgAttr);
896 for (i = 0; i < info->UnauthAttrs.cAttr; i++)
898 for (j = 0; j < info->UnauthAttrs.rgAttr[i].cValue; j++)
899 CryptMemFree(info->UnauthAttrs.rgAttr[i].rgValue[j].pbData);
900 CryptMemFree(info->UnauthAttrs.rgAttr[i].rgValue);
901 CryptMemFree(info->UnauthAttrs.rgAttr[i].pszObjId);
903 CryptMemFree(info->UnauthAttrs.rgAttr);
906 typedef struct _CSignerHandles
908 HCRYPTHASH contentHash;
909 HCRYPTHASH authAttrHash;
910 } CSignerHandles;
912 typedef struct _CSignedMsgData
914 CRYPT_SIGNED_INFO *info;
915 DWORD cSignerHandle;
916 CSignerHandles *signerHandles;
917 } CSignedMsgData;
919 /* Constructs the signer handles for the signerIndex'th signer of msg_data.
920 * Assumes signerIndex is a valid idnex, and that msg_data's info has already
921 * been constructed.
923 static BOOL CSignedMsgData_ConstructSignerHandles(CSignedMsgData *msg_data,
924 DWORD signerIndex, HCRYPTPROV crypt_prov)
926 ALG_ID algID;
927 BOOL ret;
929 algID = CertOIDToAlgId(
930 msg_data->info->rgSignerInfo[signerIndex].HashAlgorithm.pszObjId);
931 ret = CryptCreateHash(crypt_prov, algID, 0, 0,
932 &msg_data->signerHandles->contentHash);
933 if (ret && msg_data->info->rgSignerInfo[signerIndex].AuthAttrs.cAttr > 0)
934 ret = CryptCreateHash(crypt_prov, algID, 0, 0,
935 &msg_data->signerHandles->authAttrHash);
936 return ret;
939 /* Allocates a CSignedMsgData's handles. Assumes its info has already been
940 * constructed.
942 static BOOL CSignedMsgData_AllocateHandles(CSignedMsgData *msg_data)
944 BOOL ret = TRUE;
946 if (msg_data->info->cSignerInfo)
948 msg_data->signerHandles =
949 CryptMemAlloc(msg_data->info->cSignerInfo * sizeof(CSignerHandles));
950 if (msg_data->signerHandles)
952 msg_data->cSignerHandle = msg_data->info->cSignerInfo;
953 memset(msg_data->signerHandles, 0,
954 msg_data->info->cSignerInfo * sizeof(CSignerHandles));
956 else
958 msg_data->cSignerHandle = 0;
959 ret = FALSE;
962 else
964 msg_data->cSignerHandle = 0;
965 msg_data->signerHandles = NULL;
967 return ret;
970 static void CSignedMsgData_CloseHandles(CSignedMsgData *msg_data)
972 DWORD i;
974 for (i = 0; i < msg_data->cSignerHandle; i++)
976 if (msg_data->signerHandles[i].contentHash)
977 CryptDestroyHash(msg_data->signerHandles[i].contentHash);
978 if (msg_data->signerHandles[i].authAttrHash)
979 CryptDestroyHash(msg_data->signerHandles[i].authAttrHash);
981 CryptMemFree(msg_data->signerHandles);
982 msg_data->signerHandles = NULL;
983 msg_data->cSignerHandle = 0;
986 static BOOL CSignedMsgData_UpdateHash(CSignedMsgData *msg_data,
987 const BYTE *pbData, DWORD cbData)
989 DWORD i;
990 BOOL ret = TRUE;
992 for (i = 0; ret && i < msg_data->cSignerHandle; i++)
993 ret = CryptHashData(msg_data->signerHandles[i].contentHash, pbData,
994 cbData, 0);
995 return ret;
998 static BOOL CRYPT_AppendAttribute(CRYPT_ATTRIBUTES *out,
999 const CRYPT_ATTRIBUTE *in)
1001 BOOL ret = FALSE;
1003 out->rgAttr = CryptMemRealloc(out->rgAttr,
1004 (out->cAttr + 1) * sizeof(CRYPT_ATTRIBUTE));
1005 if (out->rgAttr)
1007 ret = CRYPT_ConstructAttribute(&out->rgAttr[out->cAttr], in);
1008 if (ret)
1009 out->cAttr++;
1011 return ret;
1014 static BOOL CSignedMsgData_AppendMessageDigestAttribute(
1015 CSignedMsgData *msg_data, DWORD signerIndex)
1017 BOOL ret;
1018 DWORD size;
1019 CRYPT_HASH_BLOB hash = { 0, NULL }, encodedHash = { 0, NULL };
1020 char messageDigest[] = szOID_RSA_messageDigest;
1021 CRYPT_ATTRIBUTE messageDigestAttr = { messageDigest, 1, &encodedHash };
1023 size = sizeof(DWORD);
1024 ret = CryptGetHashParam(
1025 msg_data->signerHandles[signerIndex].contentHash, HP_HASHSIZE,
1026 (LPBYTE)&hash.cbData, &size, 0);
1027 if (ret)
1029 hash.pbData = CryptMemAlloc(hash.cbData);
1030 ret = CryptGetHashParam(
1031 msg_data->signerHandles[signerIndex].contentHash, HP_HASHVAL,
1032 hash.pbData, &hash.cbData, 0);
1033 if (ret)
1035 ret = CRYPT_AsnEncodeOctets(0, NULL, &hash, CRYPT_ENCODE_ALLOC_FLAG,
1036 NULL, (LPBYTE)&encodedHash.pbData, &encodedHash.cbData);
1037 if (ret)
1039 ret = CRYPT_AppendAttribute(
1040 &msg_data->info->rgSignerInfo[signerIndex].AuthAttrs,
1041 &messageDigestAttr);
1042 LocalFree(encodedHash.pbData);
1045 CryptMemFree(hash.pbData);
1047 return ret;
1050 typedef enum {
1051 Sign,
1052 Verify
1053 } SignOrVerify;
1055 static BOOL CSignedMsgData_UpdateAuthenticatedAttributes(
1056 CSignedMsgData *msg_data, SignOrVerify flag)
1058 DWORD i;
1059 BOOL ret = TRUE;
1061 TRACE("(%p)\n", msg_data);
1063 for (i = 0; ret && i < msg_data->info->cSignerInfo; i++)
1065 if (msg_data->info->rgSignerInfo[i].AuthAttrs.cAttr)
1067 if (flag == Sign)
1069 BYTE oid_rsa_data_encoded[] = { 0x06,0x09,0x2a,0x86,0x48,0x86,
1070 0xf7,0x0d,0x01,0x07,0x01 };
1071 CRYPT_DATA_BLOB content = { sizeof(oid_rsa_data_encoded),
1072 oid_rsa_data_encoded };
1073 char contentType[] = szOID_RSA_contentType;
1074 CRYPT_ATTRIBUTE contentTypeAttr = { contentType, 1, &content };
1076 /* FIXME: does this depend on inner OID? */
1077 ret = CRYPT_AppendAttribute(
1078 &msg_data->info->rgSignerInfo[i].AuthAttrs, &contentTypeAttr);
1079 if (ret)
1080 ret = CSignedMsgData_AppendMessageDigestAttribute(msg_data,
1083 if (ret)
1085 LPBYTE encodedAttrs;
1086 DWORD size;
1088 ret = CryptEncodeObjectEx(X509_ASN_ENCODING, PKCS_ATTRIBUTES,
1089 &msg_data->info->rgSignerInfo[i].AuthAttrs,
1090 CRYPT_ENCODE_ALLOC_FLAG, NULL, &encodedAttrs, &size);
1091 if (ret)
1093 ret = CryptHashData(
1094 msg_data->signerHandles[i].authAttrHash, encodedAttrs,
1095 size, 0);
1096 LocalFree(encodedAttrs);
1101 TRACE("returning %d\n", ret);
1102 return ret;
1105 static void CRYPT_ReverseBytes(CRYPT_HASH_BLOB *hash)
1107 DWORD i;
1108 BYTE tmp;
1110 for (i = 0; i < hash->cbData / 2; i++)
1112 tmp = hash->pbData[hash->cbData - i - 1];
1113 hash->pbData[hash->cbData - i - 1] = hash->pbData[i];
1114 hash->pbData[i] = tmp;
1118 static BOOL CSignedMsgData_Sign(CSignedMsgData *msg_data)
1120 DWORD i;
1121 BOOL ret = TRUE;
1123 TRACE("(%p)\n", msg_data);
1125 for (i = 0; ret && i < msg_data->info->cSignerInfo; i++)
1127 HCRYPTHASH hash;
1129 if (msg_data->info->rgSignerInfo[i].AuthAttrs.cAttr)
1130 hash = msg_data->signerHandles[i].authAttrHash;
1131 else
1132 hash = msg_data->signerHandles[i].contentHash;
1133 ret = CryptSignHashW(hash, AT_SIGNATURE, NULL, 0, NULL,
1134 &msg_data->info->rgSignerInfo[i].EncryptedHash.cbData);
1135 if (ret)
1137 msg_data->info->rgSignerInfo[i].EncryptedHash.pbData =
1138 CryptMemAlloc(
1139 msg_data->info->rgSignerInfo[i].EncryptedHash.cbData);
1140 if (msg_data->info->rgSignerInfo[i].EncryptedHash.pbData)
1142 ret = CryptSignHashW(hash, AT_SIGNATURE, NULL, 0,
1143 msg_data->info->rgSignerInfo[i].EncryptedHash.pbData,
1144 &msg_data->info->rgSignerInfo[i].EncryptedHash.cbData);
1145 if (ret)
1146 CRYPT_ReverseBytes(
1147 &msg_data->info->rgSignerInfo[i].EncryptedHash);
1149 else
1150 ret = FALSE;
1153 return ret;
1156 static BOOL CSignedMsgData_Update(CSignedMsgData *msg_data,
1157 const BYTE *pbData, DWORD cbData, BOOL fFinal, SignOrVerify flag)
1159 BOOL ret = CSignedMsgData_UpdateHash(msg_data, pbData, cbData);
1161 if (ret && fFinal)
1163 ret = CSignedMsgData_UpdateAuthenticatedAttributes(msg_data, flag);
1164 if (ret && flag == Sign)
1165 ret = CSignedMsgData_Sign(msg_data);
1167 return ret;
1170 typedef struct _CSignedEncodeMsg
1172 CryptMsgBase base;
1173 LPSTR innerOID;
1174 CRYPT_DATA_BLOB data;
1175 CSignedMsgData msg_data;
1176 } CSignedEncodeMsg;
1178 static void CSignedEncodeMsg_Close(HCRYPTMSG hCryptMsg)
1180 CSignedEncodeMsg *msg = hCryptMsg;
1181 DWORD i;
1183 CryptMemFree(msg->innerOID);
1184 CryptMemFree(msg->data.pbData);
1185 CRYPT_FreeBlobArray(msg->msg_data.info->cCertEncoded,
1186 msg->msg_data.info->rgCertEncoded);
1187 CRYPT_FreeBlobArray(msg->msg_data.info->cCrlEncoded,
1188 msg->msg_data.info->rgCrlEncoded);
1189 for (i = 0; i < msg->msg_data.info->cSignerInfo; i++)
1190 CSignerInfo_Free(&msg->msg_data.info->rgSignerInfo[i]);
1191 CSignedMsgData_CloseHandles(&msg->msg_data);
1192 CryptMemFree(msg->msg_data.info->rgSignerInfo);
1193 CryptMemFree(msg->msg_data.info);
1196 static BOOL CSignedEncodeMsg_GetParam(HCRYPTMSG hCryptMsg, DWORD dwParamType,
1197 DWORD dwIndex, void *pvData, DWORD *pcbData)
1199 CSignedEncodeMsg *msg = hCryptMsg;
1200 BOOL ret = FALSE;
1202 switch (dwParamType)
1204 case CMSG_CONTENT_PARAM:
1206 CRYPT_CONTENT_INFO info;
1208 ret = CryptMsgGetParam(hCryptMsg, CMSG_BARE_CONTENT_PARAM, 0, NULL,
1209 &info.Content.cbData);
1210 if (ret)
1212 info.Content.pbData = CryptMemAlloc(info.Content.cbData);
1213 if (info.Content.pbData)
1215 ret = CryptMsgGetParam(hCryptMsg, CMSG_BARE_CONTENT_PARAM, 0,
1216 info.Content.pbData, &info.Content.cbData);
1217 if (ret)
1219 char oid_rsa_signed[] = szOID_RSA_signedData;
1221 info.pszObjId = oid_rsa_signed;
1222 ret = CryptEncodeObjectEx(X509_ASN_ENCODING,
1223 PKCS_CONTENT_INFO, &info, 0, NULL, pvData, pcbData);
1225 CryptMemFree(info.Content.pbData);
1227 else
1228 ret = FALSE;
1230 break;
1232 case CMSG_BARE_CONTENT_PARAM:
1234 CRYPT_SIGNED_INFO info;
1235 BOOL freeContent = FALSE;
1237 info = *msg->msg_data.info;
1238 if (!msg->innerOID || !strcmp(msg->innerOID, szOID_RSA_data))
1240 char oid_rsa_data[] = szOID_RSA_data;
1242 /* Quirk: OID is only encoded messages if an update has happened */
1243 if (msg->base.state != MsgStateInit)
1244 info.content.pszObjId = oid_rsa_data;
1245 else
1246 info.content.pszObjId = NULL;
1247 if (msg->data.cbData)
1249 CRYPT_DATA_BLOB blob = { msg->data.cbData, msg->data.pbData };
1251 ret = CryptEncodeObjectEx(X509_ASN_ENCODING, X509_OCTET_STRING,
1252 &blob, CRYPT_ENCODE_ALLOC_FLAG, NULL,
1253 &info.content.Content.pbData, &info.content.Content.cbData);
1254 freeContent = TRUE;
1256 else
1258 info.content.Content.cbData = 0;
1259 info.content.Content.pbData = NULL;
1260 ret = TRUE;
1263 else
1265 info.content.pszObjId = msg->innerOID;
1266 info.content.Content.cbData = msg->data.cbData;
1267 info.content.Content.pbData = msg->data.pbData;
1268 ret = TRUE;
1270 if (ret)
1272 ret = CRYPT_AsnEncodeCMSSignedInfo(&info, pvData, pcbData);
1273 if (freeContent)
1274 LocalFree(info.content.Content.pbData);
1276 break;
1278 case CMSG_COMPUTED_HASH_PARAM:
1279 if (dwIndex >= msg->msg_data.cSignerHandle)
1280 SetLastError(CRYPT_E_INVALID_INDEX);
1281 else
1282 ret = CryptGetHashParam(
1283 msg->msg_data.signerHandles[dwIndex].contentHash, HP_HASHVAL,
1284 pvData, pcbData, 0);
1285 break;
1286 case CMSG_ENCODED_SIGNER:
1287 if (dwIndex >= msg->msg_data.info->cSignerInfo)
1288 SetLastError(CRYPT_E_INVALID_INDEX);
1289 else
1290 ret = CryptEncodeObjectEx(X509_ASN_ENCODING | PKCS_7_ASN_ENCODING,
1291 CMS_SIGNER_INFO, &msg->msg_data.info->rgSignerInfo[dwIndex], 0,
1292 NULL, pvData, pcbData);
1293 break;
1294 case CMSG_VERSION_PARAM:
1295 ret = CRYPT_CopyParam(pvData, pcbData, &msg->msg_data.info->version,
1296 sizeof(msg->msg_data.info->version));
1297 break;
1298 default:
1299 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
1301 return ret;
1304 static BOOL CSignedEncodeMsg_Update(HCRYPTMSG hCryptMsg, const BYTE *pbData,
1305 DWORD cbData, BOOL fFinal)
1307 CSignedEncodeMsg *msg = hCryptMsg;
1308 BOOL ret = FALSE;
1310 if (msg->base.state == MsgStateFinalized)
1311 SetLastError(CRYPT_E_MSG_ERROR);
1312 else if (msg->base.streamed || (msg->base.open_flags & CMSG_DETACHED_FLAG))
1314 ret = CSignedMsgData_Update(&msg->msg_data, pbData, cbData, fFinal,
1315 Sign);
1316 if (msg->base.streamed)
1317 FIXME("streamed partial stub\n");
1318 msg->base.state = fFinal ? MsgStateFinalized : MsgStateUpdated;
1320 else
1322 if (!fFinal)
1323 SetLastError(CRYPT_E_MSG_ERROR);
1324 else
1326 if (cbData)
1328 msg->data.pbData = CryptMemAlloc(cbData);
1329 if (msg->data.pbData)
1331 memcpy(msg->data.pbData, pbData, cbData);
1332 msg->data.cbData = cbData;
1333 ret = TRUE;
1336 else
1337 ret = TRUE;
1338 if (ret)
1339 ret = CSignedMsgData_Update(&msg->msg_data, pbData, cbData,
1340 fFinal, Sign);
1341 msg->base.state = MsgStateFinalized;
1344 return ret;
1347 static HCRYPTMSG CSignedEncodeMsg_Open(DWORD dwFlags,
1348 const void *pvMsgEncodeInfo, LPCSTR pszInnerContentObjID,
1349 PCMSG_STREAM_INFO pStreamInfo)
1351 const CMSG_SIGNED_ENCODE_INFO_WITH_CMS *info = pvMsgEncodeInfo;
1352 DWORD i;
1353 CSignedEncodeMsg *msg;
1355 if (info->cbSize != sizeof(CMSG_SIGNED_ENCODE_INFO) &&
1356 info->cbSize != sizeof(CMSG_SIGNED_ENCODE_INFO_WITH_CMS))
1358 SetLastError(E_INVALIDARG);
1359 return NULL;
1361 if (info->cbSize == sizeof(CMSG_SIGNED_ENCODE_INFO_WITH_CMS) &&
1362 info->cAttrCertEncoded)
1364 FIXME("CMSG_SIGNED_ENCODE_INFO with CMS fields unsupported\n");
1365 return NULL;
1367 for (i = 0; i < info->cSigners; i++)
1368 if (!CRYPT_IsValidSigner(&info->rgSigners[i]))
1369 return NULL;
1370 msg = CryptMemAlloc(sizeof(CSignedEncodeMsg));
1371 if (msg)
1373 BOOL ret = TRUE;
1375 CryptMsgBase_Init((CryptMsgBase *)msg, dwFlags, pStreamInfo,
1376 CSignedEncodeMsg_Close, CSignedEncodeMsg_GetParam,
1377 CSignedEncodeMsg_Update, CRYPT_DefaultMsgControl);
1378 if (pszInnerContentObjID)
1380 msg->innerOID = CryptMemAlloc(strlen(pszInnerContentObjID) + 1);
1381 if (msg->innerOID)
1382 strcpy(msg->innerOID, pszInnerContentObjID);
1383 else
1384 ret = FALSE;
1386 else
1387 msg->innerOID = NULL;
1388 msg->data.cbData = 0;
1389 msg->data.pbData = NULL;
1390 if (ret)
1391 msg->msg_data.info = CryptMemAlloc(sizeof(CRYPT_SIGNED_INFO));
1392 else
1393 msg->msg_data.info = NULL;
1394 if (msg->msg_data.info)
1396 memset(msg->msg_data.info, 0, sizeof(CRYPT_SIGNED_INFO));
1397 msg->msg_data.info->version = CMSG_SIGNED_DATA_V1;
1399 else
1400 ret = FALSE;
1401 if (ret)
1403 if (info->cSigners)
1405 msg->msg_data.info->rgSignerInfo =
1406 CryptMemAlloc(info->cSigners * sizeof(CMSG_CMS_SIGNER_INFO));
1407 if (msg->msg_data.info->rgSignerInfo)
1409 msg->msg_data.info->cSignerInfo = info->cSigners;
1410 memset(msg->msg_data.info->rgSignerInfo, 0,
1411 msg->msg_data.info->cSignerInfo *
1412 sizeof(CMSG_CMS_SIGNER_INFO));
1413 ret = CSignedMsgData_AllocateHandles(&msg->msg_data);
1414 for (i = 0; ret && i < msg->msg_data.info->cSignerInfo; i++)
1416 if (info->rgSigners[i].SignerId.dwIdChoice ==
1417 CERT_ID_KEY_IDENTIFIER)
1418 msg->msg_data.info->version = CMSG_SIGNED_DATA_V3;
1419 ret = CSignerInfo_Construct(
1420 &msg->msg_data.info->rgSignerInfo[i],
1421 &info->rgSigners[i]);
1422 if (ret)
1424 ret = CSignedMsgData_ConstructSignerHandles(
1425 &msg->msg_data, i, info->rgSigners[i].hCryptProv);
1426 if (dwFlags & CMSG_CRYPT_RELEASE_CONTEXT_FLAG)
1427 CryptReleaseContext(info->rgSigners[i].hCryptProv,
1432 else
1433 ret = FALSE;
1435 else
1437 msg->msg_data.info->cSignerInfo = 0;
1438 msg->msg_data.signerHandles = NULL;
1439 msg->msg_data.cSignerHandle = 0;
1442 if (ret)
1443 ret = CRYPT_ConstructBlobArray(&msg->msg_data.info->cCertEncoded,
1444 &msg->msg_data.info->rgCertEncoded, info->cCertEncoded,
1445 info->rgCertEncoded);
1446 if (ret)
1447 ret = CRYPT_ConstructBlobArray(&msg->msg_data.info->cCrlEncoded,
1448 &msg->msg_data.info->rgCrlEncoded, info->cCrlEncoded,
1449 info->rgCrlEncoded);
1450 if (!ret)
1452 CSignedEncodeMsg_Close(msg);
1453 msg = NULL;
1456 return msg;
1459 typedef struct _CMSG_ENVELOPED_ENCODE_INFO_WITH_CMS
1461 DWORD cbSize;
1462 HCRYPTPROV_LEGACY hCryptProv;
1463 CRYPT_ALGORITHM_IDENTIFIER ContentEncryptionAlgorithm;
1464 void *pvEncryptionAuxInfo;
1465 DWORD cRecipients;
1466 PCERT_INFO *rgpRecipientCert;
1467 PCMSG_RECIPIENT_ENCODE_INFO rgCmsRecipients;
1468 DWORD cCertEncoded;
1469 PCERT_BLOB rgCertEncoded;
1470 DWORD cCrlEncoded;
1471 PCRL_BLOB rgCrlEncoded;
1472 DWORD cAttrCertEncoded;
1473 PCERT_BLOB rgAttrCertEncoded;
1474 DWORD cUnprotectedAttr;
1475 PCRYPT_ATTRIBUTE rgUnprotectedAttr;
1476 } CMSG_ENVELOPED_ENCODE_INFO_WITH_CMS, *PCMSG_ENVELOPED_ENCODE_INFO_WITH_CMS;
1478 typedef struct _CEnvelopedEncodeMsg
1480 CryptMsgBase base;
1481 CRYPT_ALGORITHM_IDENTIFIER algo;
1482 HCRYPTPROV prov;
1483 HCRYPTKEY key;
1484 DWORD cRecipientInfo;
1485 CMSG_KEY_TRANS_RECIPIENT_INFO *recipientInfo;
1486 CRYPT_DATA_BLOB data;
1487 } CEnvelopedEncodeMsg;
1489 static BOOL CRYPT_ConstructAlgorithmId(CRYPT_ALGORITHM_IDENTIFIER *out,
1490 const CRYPT_ALGORITHM_IDENTIFIER *in)
1492 out->pszObjId = CryptMemAlloc(strlen(in->pszObjId) + 1);
1493 if (out->pszObjId)
1495 strcpy(out->pszObjId, in->pszObjId);
1496 return CRYPT_ConstructBlob(&out->Parameters, &in->Parameters);
1498 else
1499 return FALSE;
1502 static BOOL CRYPT_ConstructBitBlob(CRYPT_BIT_BLOB *out, const CRYPT_BIT_BLOB *in)
1504 out->cbData = in->cbData;
1505 out->cUnusedBits = in->cUnusedBits;
1506 if (out->cbData)
1508 out->pbData = CryptMemAlloc(out->cbData);
1509 if (out->pbData)
1510 memcpy(out->pbData, in->pbData, out->cbData);
1511 else
1512 return FALSE;
1514 else
1515 out->pbData = NULL;
1516 return TRUE;
1519 static BOOL CRYPT_GenKey(CMSG_CONTENT_ENCRYPT_INFO *info, ALG_ID algID)
1521 static HCRYPTOIDFUNCSET set = NULL;
1522 PFN_CMSG_GEN_CONTENT_ENCRYPT_KEY genKeyFunc = NULL;
1523 HCRYPTOIDFUNCADDR hFunc;
1524 BOOL ret;
1526 if (!set)
1527 set = CryptInitOIDFunctionSet(CMSG_OID_GEN_CONTENT_ENCRYPT_KEY_FUNC, 0);
1528 CryptGetOIDFunctionAddress(set, X509_ASN_ENCODING,
1529 info->ContentEncryptionAlgorithm.pszObjId, 0, (void **)&genKeyFunc, &hFunc);
1530 if (genKeyFunc)
1532 ret = genKeyFunc(info, 0, NULL);
1533 CryptFreeOIDFunctionAddress(hFunc, 0);
1535 else
1536 ret = CryptGenKey(info->hCryptProv, algID, CRYPT_EXPORTABLE,
1537 &info->hContentEncryptKey);
1538 return ret;
1541 static BOOL WINAPI CRYPT_ExportKeyTrans(
1542 PCMSG_CONTENT_ENCRYPT_INFO pContentEncryptInfo,
1543 PCMSG_KEY_TRANS_RECIPIENT_ENCODE_INFO pKeyTransEncodeInfo,
1544 PCMSG_KEY_TRANS_ENCRYPT_INFO pKeyTransEncryptInfo,
1545 DWORD dwFlags, void *pvReserved)
1547 CERT_PUBLIC_KEY_INFO keyInfo;
1548 HCRYPTKEY expKey;
1549 BOOL ret;
1551 ret = CRYPT_ConstructAlgorithmId(&keyInfo.Algorithm,
1552 &pKeyTransEncodeInfo->KeyEncryptionAlgorithm);
1553 if (ret)
1554 CRYPT_ConstructBitBlob(&keyInfo.PublicKey,
1555 &pKeyTransEncodeInfo->RecipientPublicKey);
1557 if (ret)
1558 ret = CryptImportPublicKeyInfo(pKeyTransEncodeInfo->hCryptProv,
1559 X509_ASN_ENCODING, &keyInfo, &expKey);
1560 if (ret)
1562 DWORD size;
1564 ret = CryptExportKey(pContentEncryptInfo->hContentEncryptKey, expKey,
1565 SIMPLEBLOB, 0, NULL, &size);
1566 if (ret)
1568 BYTE *keyBlob;
1570 keyBlob = CryptMemAlloc(size);
1571 if (keyBlob)
1573 ret = CryptExportKey(pContentEncryptInfo->hContentEncryptKey,
1574 expKey, SIMPLEBLOB, 0, keyBlob, &size);
1575 if (ret)
1577 DWORD head = sizeof(BLOBHEADER) + sizeof(ALG_ID);
1579 pKeyTransEncryptInfo->EncryptedKey.pbData =
1580 CryptMemAlloc(size - head);
1581 if (pKeyTransEncryptInfo->EncryptedKey.pbData)
1583 DWORD i, k = 0;
1585 pKeyTransEncryptInfo->EncryptedKey.cbData = size - head;
1586 for (i = size - 1; i >= head; --i, ++k)
1587 pKeyTransEncryptInfo->EncryptedKey.pbData[k] =
1588 keyBlob[i];
1590 else
1591 ret = FALSE;
1593 CryptMemFree(keyBlob);
1595 else
1596 ret = FALSE;
1598 CryptDestroyKey(expKey);
1601 CryptMemFree(keyInfo.PublicKey.pbData);
1602 CryptMemFree(keyInfo.Algorithm.pszObjId);
1603 CryptMemFree(keyInfo.Algorithm.Parameters.pbData);
1604 return ret;
1607 static BOOL CRYPT_ExportEncryptedKey(CMSG_CONTENT_ENCRYPT_INFO *info, DWORD i,
1608 CRYPT_DATA_BLOB *key)
1610 static HCRYPTOIDFUNCSET set = NULL;
1611 PFN_CMSG_EXPORT_KEY_TRANS exportKeyFunc = NULL;
1612 HCRYPTOIDFUNCADDR hFunc = NULL;
1613 CMSG_KEY_TRANS_RECIPIENT_ENCODE_INFO *encodeInfo =
1614 info->rgCmsRecipients[i].u.pKeyTrans;
1615 CMSG_KEY_TRANS_ENCRYPT_INFO encryptInfo;
1616 BOOL ret;
1618 memset(&encryptInfo, 0, sizeof(encryptInfo));
1619 encryptInfo.cbSize = sizeof(encryptInfo);
1620 encryptInfo.dwRecipientIndex = i;
1621 ret = CRYPT_ConstructAlgorithmId(&encryptInfo.KeyEncryptionAlgorithm,
1622 &encodeInfo->KeyEncryptionAlgorithm);
1624 if (!set)
1625 set = CryptInitOIDFunctionSet(CMSG_OID_EXPORT_KEY_TRANS_FUNC, 0);
1626 CryptGetOIDFunctionAddress(set, X509_ASN_ENCODING,
1627 encryptInfo.KeyEncryptionAlgorithm.pszObjId, 0, (void **)&exportKeyFunc,
1628 &hFunc);
1629 if (!exportKeyFunc)
1630 exportKeyFunc = CRYPT_ExportKeyTrans;
1631 if (ret)
1633 ret = exportKeyFunc(info, encodeInfo, &encryptInfo, 0, NULL);
1634 if (ret)
1636 key->cbData = encryptInfo.EncryptedKey.cbData;
1637 key->pbData = encryptInfo.EncryptedKey.pbData;
1640 if (hFunc)
1641 CryptFreeOIDFunctionAddress(hFunc, 0);
1643 CryptMemFree(encryptInfo.KeyEncryptionAlgorithm.pszObjId);
1644 CryptMemFree(encryptInfo.KeyEncryptionAlgorithm.Parameters.pbData);
1645 return ret;
1648 static LPVOID WINAPI mem_alloc(size_t size)
1650 return HeapAlloc(GetProcessHeap(), 0, size);
1653 static VOID WINAPI mem_free(LPVOID pv)
1655 HeapFree(GetProcessHeap(), 0, pv);
1659 static BOOL CContentEncryptInfo_Construct(CMSG_CONTENT_ENCRYPT_INFO *info,
1660 const CMSG_ENVELOPED_ENCODE_INFO_WITH_CMS *in, HCRYPTPROV prov)
1662 BOOL ret;
1664 info->cbSize = sizeof(CMSG_CONTENT_ENCRYPT_INFO);
1665 info->hCryptProv = prov;
1666 ret = CRYPT_ConstructAlgorithmId(&info->ContentEncryptionAlgorithm,
1667 &in->ContentEncryptionAlgorithm);
1668 info->pvEncryptionAuxInfo = in->pvEncryptionAuxInfo;
1669 info->cRecipients = in->cRecipients;
1670 if (ret)
1672 info->rgCmsRecipients = CryptMemAlloc(in->cRecipients *
1673 sizeof(CMSG_RECIPIENT_ENCODE_INFO));
1674 if (info->rgCmsRecipients)
1676 DWORD i;
1678 for (i = 0; ret && i < in->cRecipients; ++i)
1680 CMSG_KEY_TRANS_RECIPIENT_ENCODE_INFO *encodeInfo;
1681 CERT_INFO *cert = in->rgpRecipientCert[i];
1683 info->rgCmsRecipients[i].dwRecipientChoice =
1684 CMSG_KEY_TRANS_RECIPIENT;
1685 encodeInfo = CryptMemAlloc(sizeof(*encodeInfo));
1686 info->rgCmsRecipients[i].u.pKeyTrans = encodeInfo;
1687 if (encodeInfo)
1689 encodeInfo->cbSize = sizeof(*encodeInfo);
1690 ret = CRYPT_ConstructAlgorithmId(
1691 &encodeInfo->KeyEncryptionAlgorithm,
1692 &cert->SubjectPublicKeyInfo.Algorithm);
1693 encodeInfo->pvKeyEncryptionAuxInfo = NULL;
1694 encodeInfo->hCryptProv = prov;
1695 if (ret)
1696 ret = CRYPT_ConstructBitBlob(
1697 &encodeInfo->RecipientPublicKey,
1698 &cert->SubjectPublicKeyInfo.PublicKey);
1699 if (ret)
1700 ret = CRYPT_ConstructBlob(
1701 &encodeInfo->RecipientId.u.IssuerSerialNumber.Issuer,
1702 &cert->Issuer);
1703 if (ret)
1704 ret = CRYPT_ConstructBlob(
1705 &encodeInfo->RecipientId.u.IssuerSerialNumber.SerialNumber,
1706 &cert->SerialNumber);
1708 else
1709 ret = FALSE;
1712 else
1713 ret = FALSE;
1715 info->pfnAlloc = mem_alloc;
1716 info->pfnFree = mem_free;
1717 return ret;
1720 static void CContentEncryptInfo_Free(CMSG_CONTENT_ENCRYPT_INFO *info)
1722 CryptMemFree(info->ContentEncryptionAlgorithm.pszObjId);
1723 CryptMemFree(info->ContentEncryptionAlgorithm.Parameters.pbData);
1724 if (info->rgCmsRecipients)
1726 DWORD i;
1728 for (i = 0; i < info->cRecipients; ++i)
1730 CMSG_KEY_TRANS_RECIPIENT_ENCODE_INFO *encodeInfo =
1731 info->rgCmsRecipients[i].u.pKeyTrans;
1733 CryptMemFree(encodeInfo->KeyEncryptionAlgorithm.pszObjId);
1734 CryptMemFree(encodeInfo->KeyEncryptionAlgorithm.Parameters.pbData);
1735 CryptMemFree(encodeInfo->RecipientPublicKey.pbData);
1736 CryptMemFree(
1737 encodeInfo->RecipientId.u.IssuerSerialNumber.Issuer.pbData);
1738 CryptMemFree(
1739 encodeInfo->RecipientId.u.IssuerSerialNumber.SerialNumber.pbData);
1740 CryptMemFree(encodeInfo);
1742 CryptMemFree(info->rgCmsRecipients);
1746 static BOOL CRecipientInfo_Construct(CMSG_KEY_TRANS_RECIPIENT_INFO *info,
1747 const CERT_INFO *cert, CRYPT_DATA_BLOB *key)
1749 BOOL ret;
1751 info->dwVersion = CMSG_KEY_TRANS_PKCS_1_5_VERSION;
1752 info->RecipientId.dwIdChoice = CERT_ID_ISSUER_SERIAL_NUMBER;
1753 ret = CRYPT_ConstructBlob(&info->RecipientId.u.IssuerSerialNumber.Issuer,
1754 &cert->Issuer);
1755 if (ret)
1756 ret = CRYPT_ConstructBlob(
1757 &info->RecipientId.u.IssuerSerialNumber.SerialNumber,
1758 &cert->SerialNumber);
1759 if (ret)
1760 ret = CRYPT_ConstructAlgorithmId(&info->KeyEncryptionAlgorithm,
1761 &cert->SubjectPublicKeyInfo.Algorithm);
1762 info->EncryptedKey.cbData = key->cbData;
1763 info->EncryptedKey.pbData = key->pbData;
1764 return ret;
1767 static void CRecipientInfo_Free(CMSG_KEY_TRANS_RECIPIENT_INFO *info)
1769 CryptMemFree(info->RecipientId.u.IssuerSerialNumber.Issuer.pbData);
1770 CryptMemFree(info->RecipientId.u.IssuerSerialNumber.SerialNumber.pbData);
1771 CryptMemFree(info->KeyEncryptionAlgorithm.pszObjId);
1772 CryptMemFree(info->KeyEncryptionAlgorithm.Parameters.pbData);
1773 CryptMemFree(info->EncryptedKey.pbData);
1776 static void CEnvelopedEncodeMsg_Close(HCRYPTMSG hCryptMsg)
1778 CEnvelopedEncodeMsg *msg = hCryptMsg;
1780 CryptMemFree(msg->algo.pszObjId);
1781 CryptMemFree(msg->algo.Parameters.pbData);
1782 if (msg->base.open_flags & CMSG_CRYPT_RELEASE_CONTEXT_FLAG)
1783 CryptReleaseContext(msg->prov, 0);
1784 CryptDestroyKey(msg->key);
1785 if (msg->recipientInfo)
1787 DWORD i;
1789 for (i = 0; i < msg->cRecipientInfo; ++i)
1790 CRecipientInfo_Free(&msg->recipientInfo[i]);
1791 CryptMemFree(msg->recipientInfo);
1793 CryptMemFree(msg->data.pbData);
1796 static BOOL CEnvelopedEncodeMsg_GetParam(HCRYPTMSG hCryptMsg, DWORD dwParamType,
1797 DWORD dwIndex, void *pvData, DWORD *pcbData)
1799 CEnvelopedEncodeMsg *msg = hCryptMsg;
1800 BOOL ret = FALSE;
1802 switch (dwParamType)
1804 case CMSG_BARE_CONTENT_PARAM:
1805 if (msg->base.streamed)
1806 SetLastError(E_INVALIDARG);
1807 else
1809 char oid_rsa_data[] = szOID_RSA_data;
1810 CRYPT_ENVELOPED_DATA envelopedData = {
1811 CMSG_ENVELOPED_DATA_PKCS_1_5_VERSION, msg->cRecipientInfo,
1812 msg->recipientInfo, { oid_rsa_data, msg->algo, msg->data }
1815 ret = CRYPT_AsnEncodePKCSEnvelopedData(&envelopedData, pvData,
1816 pcbData);
1818 break;
1819 case CMSG_CONTENT_PARAM:
1821 CRYPT_CONTENT_INFO info;
1823 ret = CryptMsgGetParam(hCryptMsg, CMSG_BARE_CONTENT_PARAM, 0, NULL,
1824 &info.Content.cbData);
1825 if (ret)
1827 info.Content.pbData = CryptMemAlloc(info.Content.cbData);
1828 if (info.Content.pbData)
1830 ret = CryptMsgGetParam(hCryptMsg, CMSG_BARE_CONTENT_PARAM, 0,
1831 info.Content.pbData, &info.Content.cbData);
1832 if (ret)
1834 char oid_rsa_enveloped[] = szOID_RSA_envelopedData;
1836 info.pszObjId = oid_rsa_enveloped;
1837 ret = CryptEncodeObjectEx(X509_ASN_ENCODING,
1838 PKCS_CONTENT_INFO, &info, 0, NULL, pvData, pcbData);
1840 CryptMemFree(info.Content.pbData);
1842 else
1843 ret = FALSE;
1845 break;
1847 default:
1848 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
1850 return ret;
1853 static BOOL CEnvelopedEncodeMsg_Update(HCRYPTMSG hCryptMsg, const BYTE *pbData,
1854 DWORD cbData, BOOL fFinal)
1856 CEnvelopedEncodeMsg *msg = hCryptMsg;
1857 BOOL ret = FALSE;
1859 if (msg->base.state == MsgStateFinalized)
1860 SetLastError(CRYPT_E_MSG_ERROR);
1861 else if (msg->base.streamed)
1863 FIXME("streamed stub\n");
1864 msg->base.state = fFinal ? MsgStateFinalized : MsgStateUpdated;
1865 ret = TRUE;
1867 else
1869 if (!fFinal)
1871 if (msg->base.open_flags & CMSG_DETACHED_FLAG)
1872 SetLastError(E_INVALIDARG);
1873 else
1874 SetLastError(CRYPT_E_MSG_ERROR);
1876 else
1878 if (cbData)
1880 DWORD dataLen = cbData;
1882 msg->data.cbData = cbData;
1883 msg->data.pbData = CryptMemAlloc(cbData);
1884 if (msg->data.pbData)
1886 memcpy(msg->data.pbData, pbData, cbData);
1887 ret = CryptEncrypt(msg->key, 0, TRUE, 0, msg->data.pbData,
1888 &dataLen, msg->data.cbData);
1889 msg->data.cbData = dataLen;
1890 if (dataLen > cbData)
1892 msg->data.pbData = CryptMemRealloc(msg->data.pbData,
1893 dataLen);
1894 if (msg->data.pbData)
1896 dataLen = cbData;
1897 ret = CryptEncrypt(msg->key, 0, TRUE, 0,
1898 msg->data.pbData, &dataLen, msg->data.cbData);
1900 else
1901 ret = FALSE;
1903 if (!ret)
1904 CryptMemFree(msg->data.pbData);
1906 else
1907 ret = FALSE;
1908 if (!ret)
1910 msg->data.cbData = 0;
1911 msg->data.pbData = NULL;
1914 else
1915 ret = TRUE;
1916 msg->base.state = MsgStateFinalized;
1919 return ret;
1922 static HCRYPTMSG CEnvelopedEncodeMsg_Open(DWORD dwFlags,
1923 const void *pvMsgEncodeInfo, LPCSTR pszInnerContentObjID,
1924 PCMSG_STREAM_INFO pStreamInfo)
1926 CEnvelopedEncodeMsg *msg;
1927 const CMSG_ENVELOPED_ENCODE_INFO_WITH_CMS *info = pvMsgEncodeInfo;
1928 HCRYPTPROV prov;
1929 ALG_ID algID;
1931 if (info->cbSize != sizeof(CMSG_ENVELOPED_ENCODE_INFO) &&
1932 info->cbSize != sizeof(CMSG_ENVELOPED_ENCODE_INFO_WITH_CMS))
1934 SetLastError(E_INVALIDARG);
1935 return NULL;
1937 if (info->cbSize == sizeof(CMSG_ENVELOPED_ENCODE_INFO_WITH_CMS))
1938 FIXME("CMS fields unsupported\n");
1939 if (!(algID = CertOIDToAlgId(info->ContentEncryptionAlgorithm.pszObjId)))
1941 SetLastError(CRYPT_E_UNKNOWN_ALGO);
1942 return NULL;
1944 if (info->cRecipients && !info->rgpRecipientCert)
1946 SetLastError(E_INVALIDARG);
1947 return NULL;
1949 if (info->hCryptProv)
1950 prov = info->hCryptProv;
1951 else
1953 prov = CRYPT_GetDefaultProvider();
1954 dwFlags &= ~CMSG_CRYPT_RELEASE_CONTEXT_FLAG;
1956 msg = CryptMemAlloc(sizeof(CEnvelopedEncodeMsg));
1957 if (msg)
1959 CRYPT_DATA_BLOB encryptedKey = { 0, NULL };
1960 CMSG_CONTENT_ENCRYPT_INFO encryptInfo;
1961 BOOL ret;
1962 DWORD i;
1964 CryptMsgBase_Init((CryptMsgBase *)msg, dwFlags, pStreamInfo,
1965 CEnvelopedEncodeMsg_Close, CEnvelopedEncodeMsg_GetParam,
1966 CEnvelopedEncodeMsg_Update, CRYPT_DefaultMsgControl);
1967 ret = CRYPT_ConstructAlgorithmId(&msg->algo,
1968 &info->ContentEncryptionAlgorithm);
1969 msg->prov = prov;
1970 msg->data.cbData = 0;
1971 msg->data.pbData = NULL;
1972 msg->cRecipientInfo = info->cRecipients;
1973 msg->recipientInfo = CryptMemAlloc(info->cRecipients *
1974 sizeof(CMSG_KEY_TRANS_RECIPIENT_INFO));
1975 if (!msg->recipientInfo)
1976 ret = FALSE;
1977 memset(&encryptInfo, 0, sizeof(encryptInfo));
1978 if (ret)
1980 ret = CContentEncryptInfo_Construct(&encryptInfo, info, prov);
1981 if (ret)
1983 ret = CRYPT_GenKey(&encryptInfo, algID);
1984 if (ret)
1985 msg->key = encryptInfo.hContentEncryptKey;
1988 for (i = 0; ret && i < msg->cRecipientInfo; ++i)
1990 ret = CRYPT_ExportEncryptedKey(&encryptInfo, i, &encryptedKey);
1991 if (ret)
1992 ret = CRecipientInfo_Construct(&msg->recipientInfo[i],
1993 info->rgpRecipientCert[i], &encryptedKey);
1995 CContentEncryptInfo_Free(&encryptInfo);
1996 if (!ret)
1998 CryptMsgClose(msg);
1999 msg = NULL;
2002 if (!msg && (dwFlags & CMSG_CRYPT_RELEASE_CONTEXT_FLAG))
2003 CryptReleaseContext(prov, 0);
2004 return msg;
2007 HCRYPTMSG WINAPI CryptMsgOpenToEncode(DWORD dwMsgEncodingType, DWORD dwFlags,
2008 DWORD dwMsgType, const void *pvMsgEncodeInfo, LPSTR pszInnerContentObjID,
2009 PCMSG_STREAM_INFO pStreamInfo)
2011 HCRYPTMSG msg = NULL;
2013 TRACE("(%08x, %08x, %08x, %p, %s, %p)\n", dwMsgEncodingType, dwFlags,
2014 dwMsgType, pvMsgEncodeInfo, debugstr_a(pszInnerContentObjID), pStreamInfo);
2016 if (GET_CMSG_ENCODING_TYPE(dwMsgEncodingType) != PKCS_7_ASN_ENCODING)
2018 SetLastError(E_INVALIDARG);
2019 return NULL;
2021 switch (dwMsgType)
2023 case CMSG_DATA:
2024 msg = CDataEncodeMsg_Open(dwFlags, pvMsgEncodeInfo,
2025 pszInnerContentObjID, pStreamInfo);
2026 break;
2027 case CMSG_HASHED:
2028 msg = CHashEncodeMsg_Open(dwFlags, pvMsgEncodeInfo,
2029 pszInnerContentObjID, pStreamInfo);
2030 break;
2031 case CMSG_SIGNED:
2032 msg = CSignedEncodeMsg_Open(dwFlags, pvMsgEncodeInfo,
2033 pszInnerContentObjID, pStreamInfo);
2034 break;
2035 case CMSG_ENVELOPED:
2036 msg = CEnvelopedEncodeMsg_Open(dwFlags, pvMsgEncodeInfo,
2037 pszInnerContentObjID, pStreamInfo);
2038 break;
2039 case CMSG_SIGNED_AND_ENVELOPED:
2040 case CMSG_ENCRYPTED:
2041 /* defined but invalid, fall through */
2042 default:
2043 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
2045 return msg;
2048 typedef struct _CEnvelopedDecodeMsg
2050 CRYPT_ENVELOPED_DATA *data;
2051 HCRYPTPROV crypt_prov;
2052 CRYPT_DATA_BLOB content;
2053 BOOL decrypted;
2054 } CEnvelopedDecodeMsg;
2056 typedef struct _CDecodeMsg
2058 CryptMsgBase base;
2059 DWORD type;
2060 HCRYPTPROV crypt_prov;
2061 union {
2062 HCRYPTHASH hash;
2063 CSignedMsgData signed_data;
2064 CEnvelopedDecodeMsg enveloped_data;
2065 } u;
2066 CRYPT_DATA_BLOB msg_data;
2067 CRYPT_DATA_BLOB detached_data;
2068 PCONTEXT_PROPERTY_LIST properties;
2069 } CDecodeMsg;
2071 static void CDecodeMsg_Close(HCRYPTMSG hCryptMsg)
2073 CDecodeMsg *msg = hCryptMsg;
2075 if (msg->base.open_flags & CMSG_CRYPT_RELEASE_CONTEXT_FLAG)
2076 CryptReleaseContext(msg->crypt_prov, 0);
2077 switch (msg->type)
2079 case CMSG_HASHED:
2080 if (msg->u.hash)
2081 CryptDestroyHash(msg->u.hash);
2082 break;
2083 case CMSG_ENVELOPED:
2084 if (msg->u.enveloped_data.crypt_prov)
2085 CryptReleaseContext(msg->u.enveloped_data.crypt_prov, 0);
2086 LocalFree(msg->u.enveloped_data.data);
2087 CryptMemFree(msg->u.enveloped_data.content.pbData);
2088 break;
2089 case CMSG_SIGNED:
2090 if (msg->u.signed_data.info)
2092 LocalFree(msg->u.signed_data.info);
2093 CSignedMsgData_CloseHandles(&msg->u.signed_data);
2095 break;
2097 CryptMemFree(msg->msg_data.pbData);
2098 CryptMemFree(msg->detached_data.pbData);
2099 ContextPropertyList_Free(msg->properties);
2102 static BOOL CDecodeMsg_CopyData(CRYPT_DATA_BLOB *blob, const BYTE *pbData,
2103 DWORD cbData)
2105 BOOL ret = TRUE;
2107 if (cbData)
2109 if (blob->cbData)
2110 blob->pbData = CryptMemRealloc(blob->pbData,
2111 blob->cbData + cbData);
2112 else
2113 blob->pbData = CryptMemAlloc(cbData);
2114 if (blob->pbData)
2116 memcpy(blob->pbData + blob->cbData, pbData, cbData);
2117 blob->cbData += cbData;
2119 else
2120 ret = FALSE;
2122 return ret;
2125 static BOOL CDecodeMsg_DecodeDataContent(CDecodeMsg *msg, const CRYPT_DER_BLOB *blob)
2127 BOOL ret;
2128 CRYPT_DATA_BLOB *data;
2129 DWORD size;
2131 ret = CryptDecodeObjectEx(X509_ASN_ENCODING, X509_OCTET_STRING,
2132 blob->pbData, blob->cbData, CRYPT_DECODE_ALLOC_FLAG, NULL, &data, &size);
2133 if (ret)
2135 ret = ContextPropertyList_SetProperty(msg->properties,
2136 CMSG_CONTENT_PARAM, data->pbData, data->cbData);
2137 LocalFree(data);
2139 return ret;
2142 static void CDecodeMsg_SaveAlgorithmID(CDecodeMsg *msg, DWORD param,
2143 const CRYPT_ALGORITHM_IDENTIFIER *id)
2145 static const BYTE nullParams[] = { ASN_NULL, 0 };
2146 CRYPT_ALGORITHM_IDENTIFIER *copy;
2147 DWORD len = sizeof(CRYPT_ALGORITHM_IDENTIFIER);
2149 /* Linearize algorithm id */
2150 len += strlen(id->pszObjId) + 1;
2151 len += id->Parameters.cbData;
2152 copy = CryptMemAlloc(len);
2153 if (copy)
2155 copy->pszObjId =
2156 (LPSTR)((BYTE *)copy + sizeof(CRYPT_ALGORITHM_IDENTIFIER));
2157 strcpy(copy->pszObjId, id->pszObjId);
2158 copy->Parameters.pbData = (BYTE *)copy->pszObjId + strlen(id->pszObjId)
2159 + 1;
2160 /* Trick: omit NULL parameters */
2161 if (id->Parameters.cbData == sizeof(nullParams) &&
2162 !memcmp(id->Parameters.pbData, nullParams, sizeof(nullParams)))
2164 copy->Parameters.cbData = 0;
2165 len -= sizeof(nullParams);
2167 else
2168 copy->Parameters.cbData = id->Parameters.cbData;
2169 if (copy->Parameters.cbData)
2170 memcpy(copy->Parameters.pbData, id->Parameters.pbData,
2171 id->Parameters.cbData);
2172 ContextPropertyList_SetProperty(msg->properties, param, (BYTE *)copy,
2173 len);
2174 CryptMemFree(copy);
2178 static inline void CRYPT_FixUpAlgorithmID(CRYPT_ALGORITHM_IDENTIFIER *id)
2180 id->pszObjId = (LPSTR)((BYTE *)id + sizeof(CRYPT_ALGORITHM_IDENTIFIER));
2181 id->Parameters.pbData = (BYTE *)id->pszObjId + strlen(id->pszObjId) + 1;
2184 static BOOL CDecodeMsg_DecodeHashedContent(CDecodeMsg *msg,
2185 const CRYPT_DER_BLOB *blob)
2187 BOOL ret;
2188 CRYPT_DIGESTED_DATA *digestedData;
2189 DWORD size;
2191 ret = CRYPT_AsnDecodePKCSDigestedData(blob->pbData, blob->cbData,
2192 CRYPT_DECODE_ALLOC_FLAG, NULL, (CRYPT_DIGESTED_DATA *)&digestedData,
2193 &size);
2194 if (ret)
2196 ContextPropertyList_SetProperty(msg->properties, CMSG_VERSION_PARAM,
2197 (const BYTE *)&digestedData->version, sizeof(digestedData->version));
2198 CDecodeMsg_SaveAlgorithmID(msg, CMSG_HASH_ALGORITHM_PARAM,
2199 &digestedData->DigestAlgorithm);
2200 ContextPropertyList_SetProperty(msg->properties,
2201 CMSG_INNER_CONTENT_TYPE_PARAM,
2202 (const BYTE *)digestedData->ContentInfo.pszObjId,
2203 digestedData->ContentInfo.pszObjId ?
2204 strlen(digestedData->ContentInfo.pszObjId) + 1 : 0);
2205 if (!(msg->base.open_flags & CMSG_DETACHED_FLAG))
2207 if (digestedData->ContentInfo.Content.cbData)
2208 CDecodeMsg_DecodeDataContent(msg,
2209 &digestedData->ContentInfo.Content);
2210 else
2211 ContextPropertyList_SetProperty(msg->properties,
2212 CMSG_CONTENT_PARAM, NULL, 0);
2214 ContextPropertyList_SetProperty(msg->properties, CMSG_HASH_DATA_PARAM,
2215 digestedData->hash.pbData, digestedData->hash.cbData);
2216 LocalFree(digestedData);
2218 return ret;
2221 static BOOL CDecodeMsg_DecodeEnvelopedContent(CDecodeMsg *msg,
2222 const CRYPT_DER_BLOB *blob)
2224 BOOL ret;
2225 CRYPT_ENVELOPED_DATA *envelopedData;
2226 DWORD size;
2228 ret = CRYPT_AsnDecodePKCSEnvelopedData(blob->pbData, blob->cbData,
2229 CRYPT_DECODE_ALLOC_FLAG, NULL, (CRYPT_ENVELOPED_DATA *)&envelopedData,
2230 &size);
2231 if (ret)
2232 msg->u.enveloped_data.data = envelopedData;
2233 return ret;
2236 static BOOL CDecodeMsg_DecodeSignedContent(CDecodeMsg *msg,
2237 const CRYPT_DER_BLOB *blob)
2239 BOOL ret;
2240 CRYPT_SIGNED_INFO *signedInfo;
2241 DWORD size;
2243 ret = CRYPT_AsnDecodeCMSSignedInfo(blob->pbData, blob->cbData,
2244 CRYPT_DECODE_ALLOC_FLAG, NULL, (CRYPT_SIGNED_INFO *)&signedInfo,
2245 &size);
2246 if (ret)
2247 msg->u.signed_data.info = signedInfo;
2248 return ret;
2251 /* Decodes the content in blob as the type given, and updates the value
2252 * (type, parameters, etc.) of msg based on what blob contains.
2253 * It doesn't just use msg's type, to allow a recursive call from an implicitly
2254 * typed message once the outer content info has been decoded.
2256 static BOOL CDecodeMsg_DecodeContent(CDecodeMsg *msg, const CRYPT_DER_BLOB *blob,
2257 DWORD type)
2259 BOOL ret;
2261 switch (type)
2263 case CMSG_DATA:
2264 if ((ret = CDecodeMsg_DecodeDataContent(msg, blob)))
2265 msg->type = CMSG_DATA;
2266 break;
2267 case CMSG_HASHED:
2268 if ((ret = CDecodeMsg_DecodeHashedContent(msg, blob)))
2269 msg->type = CMSG_HASHED;
2270 break;
2271 case CMSG_ENVELOPED:
2272 if ((ret = CDecodeMsg_DecodeEnvelopedContent(msg, blob)))
2273 msg->type = CMSG_ENVELOPED;
2274 break;
2275 case CMSG_SIGNED:
2276 if ((ret = CDecodeMsg_DecodeSignedContent(msg, blob)))
2277 msg->type = CMSG_SIGNED;
2278 break;
2279 default:
2281 CRYPT_CONTENT_INFO *info;
2282 DWORD size;
2284 ret = CryptDecodeObjectEx(X509_ASN_ENCODING, PKCS_CONTENT_INFO,
2285 msg->msg_data.pbData, msg->msg_data.cbData, CRYPT_DECODE_ALLOC_FLAG,
2286 NULL, &info, &size);
2287 if (ret)
2289 if (!strcmp(info->pszObjId, szOID_RSA_data))
2290 ret = CDecodeMsg_DecodeContent(msg, &info->Content, CMSG_DATA);
2291 else if (!strcmp(info->pszObjId, szOID_RSA_digestedData))
2292 ret = CDecodeMsg_DecodeContent(msg, &info->Content,
2293 CMSG_HASHED);
2294 else if (!strcmp(info->pszObjId, szOID_RSA_envelopedData))
2295 ret = CDecodeMsg_DecodeContent(msg, &info->Content,
2296 CMSG_ENVELOPED);
2297 else if (!strcmp(info->pszObjId, szOID_RSA_signedData))
2298 ret = CDecodeMsg_DecodeContent(msg, &info->Content,
2299 CMSG_SIGNED);
2300 else
2302 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
2303 ret = FALSE;
2305 LocalFree(info);
2309 return ret;
2312 static BOOL CDecodeMsg_FinalizeHashedContent(CDecodeMsg *msg,
2313 CRYPT_DER_BLOB *blob)
2315 CRYPT_ALGORITHM_IDENTIFIER *hashAlgoID = NULL;
2316 DWORD size = 0;
2317 ALG_ID algID = 0;
2318 BOOL ret;
2320 CryptMsgGetParam(msg, CMSG_HASH_ALGORITHM_PARAM, 0, NULL, &size);
2321 hashAlgoID = CryptMemAlloc(size);
2322 ret = CryptMsgGetParam(msg, CMSG_HASH_ALGORITHM_PARAM, 0, hashAlgoID,
2323 &size);
2324 if (ret)
2325 algID = CertOIDToAlgId(hashAlgoID->pszObjId);
2326 ret = CryptCreateHash(msg->crypt_prov, algID, 0, 0, &msg->u.hash);
2327 if (ret)
2329 CRYPT_DATA_BLOB content;
2331 if (msg->base.open_flags & CMSG_DETACHED_FLAG)
2333 /* Unlike for non-detached messages, the data were never stored as
2334 * the content param, but were saved in msg->detached_data instead.
2336 content.pbData = msg->detached_data.pbData;
2337 content.cbData = msg->detached_data.cbData;
2339 else
2340 ret = ContextPropertyList_FindProperty(msg->properties,
2341 CMSG_CONTENT_PARAM, &content);
2342 if (ret)
2343 ret = CryptHashData(msg->u.hash, content.pbData, content.cbData, 0);
2345 CryptMemFree(hashAlgoID);
2346 return ret;
2349 static BOOL CDecodeMsg_FinalizeEnvelopedContent(CDecodeMsg *msg,
2350 CRYPT_DER_BLOB *blob)
2352 CRYPT_DATA_BLOB *content;
2354 if (msg->base.open_flags & CMSG_DETACHED_FLAG)
2355 content = &msg->detached_data;
2356 else
2357 content =
2358 &msg->u.enveloped_data.data->encryptedContentInfo.encryptedContent;
2360 return CRYPT_ConstructBlob(&msg->u.enveloped_data.content, content);
2363 static BOOL CDecodeMsg_FinalizeSignedContent(CDecodeMsg *msg,
2364 CRYPT_DER_BLOB *blob)
2366 BOOL ret;
2367 DWORD i, size;
2369 ret = CSignedMsgData_AllocateHandles(&msg->u.signed_data);
2370 for (i = 0; ret && i < msg->u.signed_data.info->cSignerInfo; i++)
2371 ret = CSignedMsgData_ConstructSignerHandles(&msg->u.signed_data, i,
2372 msg->crypt_prov);
2373 if (ret)
2375 CRYPT_DATA_BLOB *content;
2377 /* Now that we have all the content, update the hash handles with
2378 * it. If the message is a detached message, the content is stored
2379 * in msg->detached_data rather than in the signed message's
2380 * content.
2382 if (msg->base.open_flags & CMSG_DETACHED_FLAG)
2383 content = &msg->detached_data;
2384 else
2385 content = &msg->u.signed_data.info->content.Content;
2386 if (content->cbData)
2388 /* If the message is not detached, have to decode the message's
2389 * content if the type is szOID_RSA_data.
2391 if (!(msg->base.open_flags & CMSG_DETACHED_FLAG) &&
2392 !strcmp(msg->u.signed_data.info->content.pszObjId,
2393 szOID_RSA_data))
2395 CRYPT_DATA_BLOB *blob;
2397 ret = CryptDecodeObjectEx(X509_ASN_ENCODING,
2398 X509_OCTET_STRING, content->pbData, content->cbData,
2399 CRYPT_DECODE_ALLOC_FLAG, NULL, &blob, &size);
2400 if (ret)
2402 ret = CSignedMsgData_Update(&msg->u.signed_data,
2403 blob->pbData, blob->cbData, TRUE, Verify);
2404 LocalFree(blob);
2407 else
2408 ret = CSignedMsgData_Update(&msg->u.signed_data,
2409 content->pbData, content->cbData, TRUE, Verify);
2412 return ret;
2415 static BOOL CDecodeMsg_FinalizeContent(CDecodeMsg *msg, CRYPT_DER_BLOB *blob)
2417 BOOL ret = FALSE;
2419 switch (msg->type)
2421 case CMSG_HASHED:
2422 ret = CDecodeMsg_FinalizeHashedContent(msg, blob);
2423 break;
2424 case CMSG_ENVELOPED:
2425 ret = CDecodeMsg_FinalizeEnvelopedContent(msg, blob);
2426 break;
2427 case CMSG_SIGNED:
2428 ret = CDecodeMsg_FinalizeSignedContent(msg, blob);
2429 break;
2430 default:
2431 ret = TRUE;
2433 return ret;
2436 static BOOL CDecodeMsg_Update(HCRYPTMSG hCryptMsg, const BYTE *pbData,
2437 DWORD cbData, BOOL fFinal)
2439 CDecodeMsg *msg = hCryptMsg;
2440 BOOL ret = FALSE;
2442 TRACE("(%p, %p, %d, %d)\n", hCryptMsg, pbData, cbData, fFinal);
2444 if (msg->base.state == MsgStateFinalized)
2445 SetLastError(CRYPT_E_MSG_ERROR);
2446 else if (msg->base.streamed)
2448 FIXME("(%p, %p, %d, %d): streamed update stub\n", hCryptMsg, pbData,
2449 cbData, fFinal);
2450 switch (msg->base.state)
2452 case MsgStateInit:
2453 ret = CDecodeMsg_CopyData(&msg->msg_data, pbData, cbData);
2454 if (fFinal)
2456 if (msg->base.open_flags & CMSG_DETACHED_FLAG)
2457 msg->base.state = MsgStateDataFinalized;
2458 else
2459 msg->base.state = MsgStateFinalized;
2461 else
2462 msg->base.state = MsgStateUpdated;
2463 break;
2464 case MsgStateUpdated:
2465 ret = CDecodeMsg_CopyData(&msg->msg_data, pbData, cbData);
2466 if (fFinal)
2468 if (msg->base.open_flags & CMSG_DETACHED_FLAG)
2469 msg->base.state = MsgStateDataFinalized;
2470 else
2471 msg->base.state = MsgStateFinalized;
2473 break;
2474 case MsgStateDataFinalized:
2475 ret = CDecodeMsg_CopyData(&msg->detached_data, pbData, cbData);
2476 if (fFinal)
2477 msg->base.state = MsgStateFinalized;
2478 break;
2479 default:
2480 SetLastError(CRYPT_E_MSG_ERROR);
2481 break;
2484 else
2486 if (!fFinal)
2487 SetLastError(CRYPT_E_MSG_ERROR);
2488 else
2490 switch (msg->base.state)
2492 case MsgStateInit:
2493 ret = CDecodeMsg_CopyData(&msg->msg_data, pbData, cbData);
2494 if (msg->base.open_flags & CMSG_DETACHED_FLAG)
2495 msg->base.state = MsgStateDataFinalized;
2496 else
2497 msg->base.state = MsgStateFinalized;
2498 break;
2499 case MsgStateDataFinalized:
2500 ret = CDecodeMsg_CopyData(&msg->detached_data, pbData, cbData);
2501 msg->base.state = MsgStateFinalized;
2502 break;
2503 default:
2504 SetLastError(CRYPT_E_MSG_ERROR);
2508 if (ret && fFinal &&
2509 ((msg->base.open_flags & CMSG_DETACHED_FLAG && msg->base.state ==
2510 MsgStateDataFinalized) ||
2511 (!(msg->base.open_flags & CMSG_DETACHED_FLAG) && msg->base.state ==
2512 MsgStateFinalized)))
2513 ret = CDecodeMsg_DecodeContent(msg, &msg->msg_data, msg->type);
2514 if (ret && msg->base.state == MsgStateFinalized)
2515 ret = CDecodeMsg_FinalizeContent(msg, &msg->msg_data);
2516 return ret;
2519 static BOOL CDecodeHashMsg_GetParam(CDecodeMsg *msg, DWORD dwParamType,
2520 DWORD dwIndex, void *pvData, DWORD *pcbData)
2522 BOOL ret = FALSE;
2524 switch (dwParamType)
2526 case CMSG_TYPE_PARAM:
2527 ret = CRYPT_CopyParam(pvData, pcbData, &msg->type, sizeof(msg->type));
2528 break;
2529 case CMSG_HASH_ALGORITHM_PARAM:
2531 CRYPT_DATA_BLOB blob;
2533 ret = ContextPropertyList_FindProperty(msg->properties, dwParamType,
2534 &blob);
2535 if (ret)
2537 ret = CRYPT_CopyParam(pvData, pcbData, blob.pbData, blob.cbData);
2538 if (ret && pvData)
2539 CRYPT_FixUpAlgorithmID(pvData);
2541 else
2542 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
2543 break;
2545 case CMSG_COMPUTED_HASH_PARAM:
2546 ret = CryptGetHashParam(msg->u.hash, HP_HASHVAL, pvData, pcbData, 0);
2547 break;
2548 default:
2550 CRYPT_DATA_BLOB blob;
2552 ret = ContextPropertyList_FindProperty(msg->properties, dwParamType,
2553 &blob);
2554 if (ret)
2555 ret = CRYPT_CopyParam(pvData, pcbData, blob.pbData, blob.cbData);
2556 else
2557 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
2560 return ret;
2563 /* nextData is an in/out parameter - on input it's the memory location in
2564 * which a copy of in's data should be made, and on output it's the memory
2565 * location immediately after out's copy of in's data.
2567 static inline void CRYPT_CopyBlob(CRYPT_DATA_BLOB *out,
2568 const CRYPT_DATA_BLOB *in, LPBYTE *nextData)
2570 out->cbData = in->cbData;
2571 if (in->cbData)
2573 out->pbData = *nextData;
2574 memcpy(out->pbData, in->pbData, in->cbData);
2575 *nextData += in->cbData;
2579 static inline void CRYPT_CopyAlgorithmId(CRYPT_ALGORITHM_IDENTIFIER *out,
2580 const CRYPT_ALGORITHM_IDENTIFIER *in, LPBYTE *nextData)
2582 if (in->pszObjId)
2584 out->pszObjId = (LPSTR)*nextData;
2585 strcpy(out->pszObjId, in->pszObjId);
2586 *nextData += strlen(out->pszObjId) + 1;
2588 CRYPT_CopyBlob(&out->Parameters, &in->Parameters, nextData);
2591 static inline void CRYPT_CopyAttributes(CRYPT_ATTRIBUTES *out,
2592 const CRYPT_ATTRIBUTES *in, LPBYTE *nextData)
2594 out->cAttr = in->cAttr;
2595 if (in->cAttr)
2597 DWORD i;
2599 *nextData = POINTER_ALIGN_DWORD_PTR(*nextData);
2600 out->rgAttr = (CRYPT_ATTRIBUTE *)*nextData;
2601 *nextData += in->cAttr * sizeof(CRYPT_ATTRIBUTE);
2602 for (i = 0; i < in->cAttr; i++)
2604 if (in->rgAttr[i].pszObjId)
2606 out->rgAttr[i].pszObjId = (LPSTR)*nextData;
2607 strcpy(out->rgAttr[i].pszObjId, in->rgAttr[i].pszObjId);
2608 *nextData += strlen(in->rgAttr[i].pszObjId) + 1;
2610 if (in->rgAttr[i].cValue)
2612 DWORD j;
2614 out->rgAttr[i].cValue = in->rgAttr[i].cValue;
2615 *nextData = POINTER_ALIGN_DWORD_PTR(*nextData);
2616 out->rgAttr[i].rgValue = (PCRYPT_DATA_BLOB)*nextData;
2617 *nextData += in->rgAttr[i].cValue * sizeof(CRYPT_DATA_BLOB);
2618 for (j = 0; j < in->rgAttr[i].cValue; j++)
2619 CRYPT_CopyBlob(&out->rgAttr[i].rgValue[j],
2620 &in->rgAttr[i].rgValue[j], nextData);
2626 static DWORD CRYPT_SizeOfAttributes(const CRYPT_ATTRIBUTES *attr)
2628 DWORD size = attr->cAttr * sizeof(CRYPT_ATTRIBUTE), i, j;
2630 for (i = 0; i < attr->cAttr; i++)
2632 if (attr->rgAttr[i].pszObjId)
2633 size += strlen(attr->rgAttr[i].pszObjId) + 1;
2634 /* align pointer */
2635 size = ALIGN_DWORD_PTR(size);
2636 size += attr->rgAttr[i].cValue * sizeof(CRYPT_DATA_BLOB);
2637 for (j = 0; j < attr->rgAttr[i].cValue; j++)
2638 size += attr->rgAttr[i].rgValue[j].cbData;
2640 /* align pointer again to be conservative */
2641 size = ALIGN_DWORD_PTR(size);
2642 return size;
2645 static DWORD CRYPT_SizeOfKeyIdAsIssuerAndSerial(const CRYPT_DATA_BLOB *keyId)
2647 static char oid_key_rdn[] = szOID_KEYID_RDN;
2648 DWORD size = 0;
2649 CERT_RDN_ATTR attr;
2650 CERT_RDN rdn = { 1, &attr };
2651 CERT_NAME_INFO name = { 1, &rdn };
2653 attr.pszObjId = oid_key_rdn;
2654 attr.dwValueType = CERT_RDN_OCTET_STRING;
2655 attr.Value.cbData = keyId->cbData;
2656 attr.Value.pbData = keyId->pbData;
2657 if (CryptEncodeObject(X509_ASN_ENCODING, X509_NAME, &name, NULL, &size))
2658 size++; /* Only include size of special zero serial number on success */
2659 return size;
2662 static BOOL CRYPT_CopyKeyIdAsIssuerAndSerial(CERT_NAME_BLOB *issuer,
2663 CRYPT_INTEGER_BLOB *serialNumber, const CRYPT_DATA_BLOB *keyId, DWORD encodedLen,
2664 LPBYTE *nextData)
2666 static char oid_key_rdn[] = szOID_KEYID_RDN;
2667 CERT_RDN_ATTR attr;
2668 CERT_RDN rdn = { 1, &attr };
2669 CERT_NAME_INFO name = { 1, &rdn };
2670 BOOL ret;
2672 /* Encode special zero serial number */
2673 serialNumber->cbData = 1;
2674 serialNumber->pbData = *nextData;
2675 **nextData = 0;
2676 (*nextData)++;
2677 /* Encode issuer */
2678 issuer->pbData = *nextData;
2679 attr.pszObjId = oid_key_rdn;
2680 attr.dwValueType = CERT_RDN_OCTET_STRING;
2681 attr.Value.cbData = keyId->cbData;
2682 attr.Value.pbData = keyId->pbData;
2683 ret = CryptEncodeObject(X509_ASN_ENCODING, X509_NAME, &name, *nextData,
2684 &encodedLen);
2685 if (ret)
2687 *nextData += encodedLen;
2688 issuer->cbData = encodedLen;
2690 return ret;
2693 static BOOL CRYPT_CopySignerInfo(void *pvData, DWORD *pcbData,
2694 const CMSG_CMS_SIGNER_INFO *in)
2696 DWORD size = sizeof(CMSG_SIGNER_INFO), rdnSize = 0;
2697 BOOL ret;
2699 TRACE("(%p, %d, %p)\n", pvData, pvData ? *pcbData : 0, in);
2701 if (in->SignerId.dwIdChoice == CERT_ID_ISSUER_SERIAL_NUMBER)
2703 size += in->SignerId.u.IssuerSerialNumber.Issuer.cbData;
2704 size += in->SignerId.u.IssuerSerialNumber.SerialNumber.cbData;
2706 else
2708 rdnSize = CRYPT_SizeOfKeyIdAsIssuerAndSerial(&in->SignerId.u.KeyId);
2709 size += rdnSize;
2711 if (in->HashAlgorithm.pszObjId)
2712 size += strlen(in->HashAlgorithm.pszObjId) + 1;
2713 size += in->HashAlgorithm.Parameters.cbData;
2714 if (in->HashEncryptionAlgorithm.pszObjId)
2715 size += strlen(in->HashEncryptionAlgorithm.pszObjId) + 1;
2716 size += in->HashEncryptionAlgorithm.Parameters.cbData;
2717 size += in->EncryptedHash.cbData;
2718 /* align pointer */
2719 size = ALIGN_DWORD_PTR(size);
2720 size += CRYPT_SizeOfAttributes(&in->AuthAttrs);
2721 size += CRYPT_SizeOfAttributes(&in->UnauthAttrs);
2722 if (!pvData)
2724 *pcbData = size;
2725 ret = TRUE;
2727 else if (*pcbData < size)
2729 *pcbData = size;
2730 SetLastError(ERROR_MORE_DATA);
2731 ret = FALSE;
2733 else
2735 LPBYTE nextData = (BYTE *)pvData + sizeof(CMSG_SIGNER_INFO);
2736 CMSG_SIGNER_INFO *out = pvData;
2738 ret = TRUE;
2739 out->dwVersion = in->dwVersion;
2740 if (in->SignerId.dwIdChoice == CERT_ID_ISSUER_SERIAL_NUMBER)
2742 CRYPT_CopyBlob(&out->Issuer,
2743 &in->SignerId.u.IssuerSerialNumber.Issuer, &nextData);
2744 CRYPT_CopyBlob(&out->SerialNumber,
2745 &in->SignerId.u.IssuerSerialNumber.SerialNumber, &nextData);
2747 else
2748 ret = CRYPT_CopyKeyIdAsIssuerAndSerial(&out->Issuer, &out->SerialNumber,
2749 &in->SignerId.u.KeyId, rdnSize, &nextData);
2750 if (ret)
2752 CRYPT_CopyAlgorithmId(&out->HashAlgorithm, &in->HashAlgorithm,
2753 &nextData);
2754 CRYPT_CopyAlgorithmId(&out->HashEncryptionAlgorithm,
2755 &in->HashEncryptionAlgorithm, &nextData);
2756 CRYPT_CopyBlob(&out->EncryptedHash, &in->EncryptedHash, &nextData);
2757 nextData = POINTER_ALIGN_DWORD_PTR(nextData);
2758 CRYPT_CopyAttributes(&out->AuthAttrs, &in->AuthAttrs, &nextData);
2759 CRYPT_CopyAttributes(&out->UnauthAttrs, &in->UnauthAttrs, &nextData);
2762 TRACE("returning %d\n", ret);
2763 return ret;
2766 static BOOL CRYPT_CopyCMSSignerInfo(void *pvData, DWORD *pcbData,
2767 const CMSG_CMS_SIGNER_INFO *in)
2769 DWORD size = sizeof(CMSG_CMS_SIGNER_INFO);
2770 BOOL ret;
2772 TRACE("(%p, %d, %p)\n", pvData, pvData ? *pcbData : 0, in);
2774 if (in->SignerId.dwIdChoice == CERT_ID_ISSUER_SERIAL_NUMBER)
2776 size += in->SignerId.u.IssuerSerialNumber.Issuer.cbData;
2777 size += in->SignerId.u.IssuerSerialNumber.SerialNumber.cbData;
2779 else
2780 size += in->SignerId.u.KeyId.cbData;
2781 if (in->HashAlgorithm.pszObjId)
2782 size += strlen(in->HashAlgorithm.pszObjId) + 1;
2783 size += in->HashAlgorithm.Parameters.cbData;
2784 if (in->HashEncryptionAlgorithm.pszObjId)
2785 size += strlen(in->HashEncryptionAlgorithm.pszObjId) + 1;
2786 size += in->HashEncryptionAlgorithm.Parameters.cbData;
2787 size += in->EncryptedHash.cbData;
2788 /* align pointer */
2789 size = ALIGN_DWORD_PTR(size);
2790 size += CRYPT_SizeOfAttributes(&in->AuthAttrs);
2791 size += CRYPT_SizeOfAttributes(&in->UnauthAttrs);
2792 if (!pvData)
2794 *pcbData = size;
2795 ret = TRUE;
2797 else if (*pcbData < size)
2799 *pcbData = size;
2800 SetLastError(ERROR_MORE_DATA);
2801 ret = FALSE;
2803 else
2805 LPBYTE nextData = (BYTE *)pvData + sizeof(CMSG_CMS_SIGNER_INFO);
2806 CMSG_CMS_SIGNER_INFO *out = pvData;
2808 out->dwVersion = in->dwVersion;
2809 out->SignerId.dwIdChoice = in->SignerId.dwIdChoice;
2810 if (in->SignerId.dwIdChoice == CERT_ID_ISSUER_SERIAL_NUMBER)
2812 CRYPT_CopyBlob(&out->SignerId.u.IssuerSerialNumber.Issuer,
2813 &in->SignerId.u.IssuerSerialNumber.Issuer, &nextData);
2814 CRYPT_CopyBlob(&out->SignerId.u.IssuerSerialNumber.SerialNumber,
2815 &in->SignerId.u.IssuerSerialNumber.SerialNumber, &nextData);
2817 else
2818 CRYPT_CopyBlob(&out->SignerId.u.KeyId, &in->SignerId.u.KeyId, &nextData);
2819 CRYPT_CopyAlgorithmId(&out->HashAlgorithm, &in->HashAlgorithm,
2820 &nextData);
2821 CRYPT_CopyAlgorithmId(&out->HashEncryptionAlgorithm,
2822 &in->HashEncryptionAlgorithm, &nextData);
2823 CRYPT_CopyBlob(&out->EncryptedHash, &in->EncryptedHash, &nextData);
2824 nextData = POINTER_ALIGN_DWORD_PTR(nextData);
2825 CRYPT_CopyAttributes(&out->AuthAttrs, &in->AuthAttrs, &nextData);
2826 CRYPT_CopyAttributes(&out->UnauthAttrs, &in->UnauthAttrs, &nextData);
2827 ret = TRUE;
2829 TRACE("returning %d\n", ret);
2830 return ret;
2833 static BOOL CRYPT_CopySignerCertInfo(void *pvData, DWORD *pcbData,
2834 const CMSG_CMS_SIGNER_INFO *in)
2836 DWORD size = sizeof(CERT_INFO), rdnSize = 0;
2837 BOOL ret;
2839 TRACE("(%p, %d, %p)\n", pvData, pvData ? *pcbData : 0, in);
2841 if (in->SignerId.dwIdChoice == CERT_ID_ISSUER_SERIAL_NUMBER)
2843 size += in->SignerId.u.IssuerSerialNumber.Issuer.cbData;
2844 size += in->SignerId.u.IssuerSerialNumber.SerialNumber.cbData;
2846 else
2848 rdnSize = CRYPT_SizeOfKeyIdAsIssuerAndSerial(&in->SignerId.u.KeyId);
2849 size += rdnSize;
2851 if (!pvData)
2853 *pcbData = size;
2854 ret = TRUE;
2856 else if (*pcbData < size)
2858 *pcbData = size;
2859 SetLastError(ERROR_MORE_DATA);
2860 ret = FALSE;
2862 else
2864 LPBYTE nextData = (BYTE *)pvData + sizeof(CERT_INFO);
2865 CERT_INFO *out = pvData;
2867 memset(out, 0, sizeof(CERT_INFO));
2868 if (in->SignerId.dwIdChoice == CERT_ID_ISSUER_SERIAL_NUMBER)
2870 CRYPT_CopyBlob(&out->Issuer,
2871 &in->SignerId.u.IssuerSerialNumber.Issuer, &nextData);
2872 CRYPT_CopyBlob(&out->SerialNumber,
2873 &in->SignerId.u.IssuerSerialNumber.SerialNumber, &nextData);
2874 ret = TRUE;
2876 else
2877 ret = CRYPT_CopyKeyIdAsIssuerAndSerial(&out->Issuer, &out->SerialNumber,
2878 &in->SignerId.u.KeyId, rdnSize, &nextData);
2880 TRACE("returning %d\n", ret);
2881 return ret;
2884 static BOOL CRYPT_CopyRecipientInfo(void *pvData, DWORD *pcbData,
2885 const CERT_ISSUER_SERIAL_NUMBER *in)
2887 DWORD size = sizeof(CERT_INFO);
2888 BOOL ret;
2890 TRACE("(%p, %d, %p)\n", pvData, pvData ? *pcbData : 0, in);
2892 size += in->SerialNumber.cbData;
2893 size += in->Issuer.cbData;
2894 if (!pvData)
2896 *pcbData = size;
2897 ret = TRUE;
2899 else if (*pcbData < size)
2901 *pcbData = size;
2902 SetLastError(ERROR_MORE_DATA);
2903 ret = FALSE;
2905 else
2907 LPBYTE nextData = (BYTE *)pvData + sizeof(CERT_INFO);
2908 CERT_INFO *out = pvData;
2910 CRYPT_CopyBlob(&out->SerialNumber, &in->SerialNumber, &nextData);
2911 CRYPT_CopyBlob(&out->Issuer, &in->Issuer, &nextData);
2912 ret = TRUE;
2914 TRACE("returning %d\n", ret);
2915 return ret;
2918 static BOOL CDecodeEnvelopedMsg_GetParam(CDecodeMsg *msg, DWORD dwParamType,
2919 DWORD dwIndex, void *pvData, DWORD *pcbData)
2921 BOOL ret = FALSE;
2923 switch (dwParamType)
2925 case CMSG_TYPE_PARAM:
2926 ret = CRYPT_CopyParam(pvData, pcbData, &msg->type, sizeof(msg->type));
2927 break;
2928 case CMSG_CONTENT_PARAM:
2929 if (msg->u.enveloped_data.data)
2930 ret = CRYPT_CopyParam(pvData, pcbData,
2931 msg->u.enveloped_data.content.pbData,
2932 msg->u.enveloped_data.content.cbData);
2933 else
2934 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
2935 break;
2936 case CMSG_RECIPIENT_COUNT_PARAM:
2937 if (msg->u.enveloped_data.data)
2938 ret = CRYPT_CopyParam(pvData, pcbData,
2939 &msg->u.enveloped_data.data->cRecipientInfo, sizeof(DWORD));
2940 else
2941 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
2942 break;
2943 case CMSG_RECIPIENT_INFO_PARAM:
2944 if (msg->u.enveloped_data.data)
2946 if (dwIndex < msg->u.enveloped_data.data->cRecipientInfo)
2948 PCMSG_KEY_TRANS_RECIPIENT_INFO recipientInfo =
2949 &msg->u.enveloped_data.data->rgRecipientInfo[dwIndex];
2951 ret = CRYPT_CopyRecipientInfo(pvData, pcbData,
2952 &recipientInfo->RecipientId.u.IssuerSerialNumber);
2954 else
2955 SetLastError(CRYPT_E_INVALID_INDEX);
2957 else
2958 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
2959 break;
2960 default:
2961 FIXME("unimplemented for %d\n", dwParamType);
2962 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
2964 return ret;
2967 static BOOL CDecodeSignedMsg_GetParam(CDecodeMsg *msg, DWORD dwParamType,
2968 DWORD dwIndex, void *pvData, DWORD *pcbData)
2970 BOOL ret = FALSE;
2972 switch (dwParamType)
2974 case CMSG_TYPE_PARAM:
2975 ret = CRYPT_CopyParam(pvData, pcbData, &msg->type, sizeof(msg->type));
2976 break;
2977 case CMSG_CONTENT_PARAM:
2978 if (msg->u.signed_data.info)
2980 if (!strcmp(msg->u.signed_data.info->content.pszObjId,
2981 szOID_RSA_data))
2983 CRYPT_DATA_BLOB *blob;
2984 DWORD size;
2986 ret = CryptDecodeObjectEx(X509_ASN_ENCODING, X509_OCTET_STRING,
2987 msg->u.signed_data.info->content.Content.pbData,
2988 msg->u.signed_data.info->content.Content.cbData,
2989 CRYPT_DECODE_ALLOC_FLAG, NULL, &blob, &size);
2990 if (ret)
2992 ret = CRYPT_CopyParam(pvData, pcbData, blob->pbData,
2993 blob->cbData);
2994 LocalFree(blob);
2997 else
2998 ret = CRYPT_CopyParam(pvData, pcbData,
2999 msg->u.signed_data.info->content.Content.pbData,
3000 msg->u.signed_data.info->content.Content.cbData);
3002 else
3003 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
3004 break;
3005 case CMSG_INNER_CONTENT_TYPE_PARAM:
3006 if (msg->u.signed_data.info)
3007 ret = CRYPT_CopyParam(pvData, pcbData,
3008 msg->u.signed_data.info->content.pszObjId,
3009 strlen(msg->u.signed_data.info->content.pszObjId) + 1);
3010 else
3011 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
3012 break;
3013 case CMSG_SIGNER_COUNT_PARAM:
3014 if (msg->u.signed_data.info)
3015 ret = CRYPT_CopyParam(pvData, pcbData,
3016 &msg->u.signed_data.info->cSignerInfo, sizeof(DWORD));
3017 else
3018 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
3019 break;
3020 case CMSG_SIGNER_INFO_PARAM:
3021 if (msg->u.signed_data.info)
3023 if (dwIndex >= msg->u.signed_data.info->cSignerInfo)
3024 SetLastError(CRYPT_E_INVALID_INDEX);
3025 else
3026 ret = CRYPT_CopySignerInfo(pvData, pcbData,
3027 &msg->u.signed_data.info->rgSignerInfo[dwIndex]);
3029 else
3030 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
3031 break;
3032 case CMSG_SIGNER_CERT_INFO_PARAM:
3033 if (msg->u.signed_data.info)
3035 if (dwIndex >= msg->u.signed_data.info->cSignerInfo)
3036 SetLastError(CRYPT_E_INVALID_INDEX);
3037 else
3038 ret = CRYPT_CopySignerCertInfo(pvData, pcbData,
3039 &msg->u.signed_data.info->rgSignerInfo[dwIndex]);
3041 else
3042 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
3043 break;
3044 case CMSG_CERT_COUNT_PARAM:
3045 if (msg->u.signed_data.info)
3046 ret = CRYPT_CopyParam(pvData, pcbData,
3047 &msg->u.signed_data.info->cCertEncoded, sizeof(DWORD));
3048 else
3049 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
3050 break;
3051 case CMSG_CERT_PARAM:
3052 if (msg->u.signed_data.info)
3054 if (dwIndex >= msg->u.signed_data.info->cCertEncoded)
3055 SetLastError(CRYPT_E_INVALID_INDEX);
3056 else
3057 ret = CRYPT_CopyParam(pvData, pcbData,
3058 msg->u.signed_data.info->rgCertEncoded[dwIndex].pbData,
3059 msg->u.signed_data.info->rgCertEncoded[dwIndex].cbData);
3061 else
3062 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
3063 break;
3064 case CMSG_CRL_COUNT_PARAM:
3065 if (msg->u.signed_data.info)
3066 ret = CRYPT_CopyParam(pvData, pcbData,
3067 &msg->u.signed_data.info->cCrlEncoded, sizeof(DWORD));
3068 else
3069 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
3070 break;
3071 case CMSG_CRL_PARAM:
3072 if (msg->u.signed_data.info)
3074 if (dwIndex >= msg->u.signed_data.info->cCrlEncoded)
3075 SetLastError(CRYPT_E_INVALID_INDEX);
3076 else
3077 ret = CRYPT_CopyParam(pvData, pcbData,
3078 msg->u.signed_data.info->rgCrlEncoded[dwIndex].pbData,
3079 msg->u.signed_data.info->rgCrlEncoded[dwIndex].cbData);
3081 else
3082 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
3083 break;
3084 case CMSG_COMPUTED_HASH_PARAM:
3085 if (msg->u.signed_data.info)
3087 if (dwIndex >= msg->u.signed_data.cSignerHandle)
3088 SetLastError(CRYPT_E_INVALID_INDEX);
3089 else
3090 ret = CryptGetHashParam(
3091 msg->u.signed_data.signerHandles[dwIndex].contentHash,
3092 HP_HASHVAL, pvData, pcbData, 0);
3094 else
3095 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
3096 break;
3097 case CMSG_ENCODED_SIGNER:
3098 if (msg->u.signed_data.info)
3100 if (dwIndex >= msg->u.signed_data.info->cSignerInfo)
3101 SetLastError(CRYPT_E_INVALID_INDEX);
3102 else
3103 ret = CryptEncodeObjectEx(
3104 X509_ASN_ENCODING | PKCS_7_ASN_ENCODING, CMS_SIGNER_INFO,
3105 &msg->u.signed_data.info->rgSignerInfo[dwIndex], 0, NULL,
3106 pvData, pcbData);
3108 else
3109 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
3110 break;
3111 case CMSG_ATTR_CERT_COUNT_PARAM:
3112 if (msg->u.signed_data.info)
3114 DWORD attrCertCount = 0;
3116 ret = CRYPT_CopyParam(pvData, pcbData,
3117 &attrCertCount, sizeof(DWORD));
3119 else
3120 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
3121 break;
3122 case CMSG_ATTR_CERT_PARAM:
3123 if (msg->u.signed_data.info)
3124 SetLastError(CRYPT_E_INVALID_INDEX);
3125 else
3126 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
3127 break;
3128 case CMSG_CMS_SIGNER_INFO_PARAM:
3129 if (msg->u.signed_data.info)
3131 if (dwIndex >= msg->u.signed_data.info->cSignerInfo)
3132 SetLastError(CRYPT_E_INVALID_INDEX);
3133 else
3134 ret = CRYPT_CopyCMSSignerInfo(pvData, pcbData,
3135 &msg->u.signed_data.info->rgSignerInfo[dwIndex]);
3137 else
3138 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
3139 break;
3140 default:
3141 FIXME("unimplemented for %d\n", dwParamType);
3142 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
3144 return ret;
3147 static BOOL CDecodeMsg_GetParam(HCRYPTMSG hCryptMsg, DWORD dwParamType,
3148 DWORD dwIndex, void *pvData, DWORD *pcbData)
3150 CDecodeMsg *msg = hCryptMsg;
3151 BOOL ret = FALSE;
3153 switch (msg->type)
3155 case CMSG_HASHED:
3156 ret = CDecodeHashMsg_GetParam(msg, dwParamType, dwIndex, pvData,
3157 pcbData);
3158 break;
3159 case CMSG_ENVELOPED:
3160 ret = CDecodeEnvelopedMsg_GetParam(msg, dwParamType, dwIndex, pvData,
3161 pcbData);
3162 break;
3163 case CMSG_SIGNED:
3164 ret = CDecodeSignedMsg_GetParam(msg, dwParamType, dwIndex, pvData,
3165 pcbData);
3166 break;
3167 default:
3168 switch (dwParamType)
3170 case CMSG_TYPE_PARAM:
3171 ret = CRYPT_CopyParam(pvData, pcbData, &msg->type,
3172 sizeof(msg->type));
3173 break;
3174 default:
3176 CRYPT_DATA_BLOB blob;
3178 ret = ContextPropertyList_FindProperty(msg->properties, dwParamType,
3179 &blob);
3180 if (ret)
3181 ret = CRYPT_CopyParam(pvData, pcbData, blob.pbData,
3182 blob.cbData);
3183 else
3184 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
3188 return ret;
3191 static BOOL CDecodeHashMsg_VerifyHash(CDecodeMsg *msg)
3193 BOOL ret;
3194 CRYPT_DATA_BLOB hashBlob;
3196 ret = ContextPropertyList_FindProperty(msg->properties,
3197 CMSG_HASH_DATA_PARAM, &hashBlob);
3198 if (ret)
3200 DWORD computedHashSize = 0;
3202 ret = CDecodeHashMsg_GetParam(msg, CMSG_COMPUTED_HASH_PARAM, 0, NULL,
3203 &computedHashSize);
3204 if (hashBlob.cbData == computedHashSize)
3206 LPBYTE computedHash = CryptMemAlloc(computedHashSize);
3208 if (computedHash)
3210 ret = CDecodeHashMsg_GetParam(msg, CMSG_COMPUTED_HASH_PARAM, 0,
3211 computedHash, &computedHashSize);
3212 if (ret)
3214 if (memcmp(hashBlob.pbData, computedHash, hashBlob.cbData))
3216 SetLastError(CRYPT_E_HASH_VALUE);
3217 ret = FALSE;
3220 CryptMemFree(computedHash);
3222 else
3224 SetLastError(ERROR_OUTOFMEMORY);
3225 ret = FALSE;
3228 else
3230 SetLastError(CRYPT_E_HASH_VALUE);
3231 ret = FALSE;
3234 return ret;
3237 static BOOL CDecodeSignedMsg_VerifySignatureWithKey(CDecodeMsg *msg,
3238 HCRYPTPROV prov, DWORD signerIndex, PCERT_PUBLIC_KEY_INFO keyInfo)
3240 HCRYPTKEY key;
3241 BOOL ret;
3243 if (!prov)
3244 prov = msg->crypt_prov;
3245 ret = CryptImportPublicKeyInfo(prov, X509_ASN_ENCODING, keyInfo, &key);
3246 if (ret)
3248 HCRYPTHASH hash;
3249 CRYPT_HASH_BLOB reversedHash;
3251 if (msg->u.signed_data.info->rgSignerInfo[signerIndex].AuthAttrs.cAttr)
3252 hash = msg->u.signed_data.signerHandles[signerIndex].authAttrHash;
3253 else
3254 hash = msg->u.signed_data.signerHandles[signerIndex].contentHash;
3255 ret = CRYPT_ConstructBlob(&reversedHash,
3256 &msg->u.signed_data.info->rgSignerInfo[signerIndex].EncryptedHash);
3257 if (ret)
3259 CRYPT_ReverseBytes(&reversedHash);
3260 ret = CryptVerifySignatureW(hash, reversedHash.pbData,
3261 reversedHash.cbData, key, NULL, 0);
3262 CryptMemFree(reversedHash.pbData);
3264 CryptDestroyKey(key);
3266 return ret;
3269 static BOOL CDecodeSignedMsg_VerifySignature(CDecodeMsg *msg, PCERT_INFO info)
3271 BOOL ret = FALSE;
3272 DWORD i;
3274 if (!msg->u.signed_data.signerHandles)
3276 SetLastError(NTE_BAD_SIGNATURE);
3277 return FALSE;
3279 for (i = 0; !ret && i < msg->u.signed_data.info->cSignerInfo; i++)
3281 PCMSG_CMS_SIGNER_INFO signerInfo =
3282 &msg->u.signed_data.info->rgSignerInfo[i];
3284 if (signerInfo->SignerId.dwIdChoice == CERT_ID_ISSUER_SERIAL_NUMBER)
3286 ret = CertCompareCertificateName(X509_ASN_ENCODING,
3287 &signerInfo->SignerId.u.IssuerSerialNumber.Issuer,
3288 &info->Issuer);
3289 if (ret)
3291 ret = CertCompareIntegerBlob(
3292 &signerInfo->SignerId.u.IssuerSerialNumber.SerialNumber,
3293 &info->SerialNumber);
3294 if (ret)
3295 break;
3298 else
3300 FIXME("signer %d: unimplemented for key id\n", i);
3303 if (ret)
3304 ret = CDecodeSignedMsg_VerifySignatureWithKey(msg, 0, i,
3305 &info->SubjectPublicKeyInfo);
3306 else
3307 SetLastError(CRYPT_E_SIGNER_NOT_FOUND);
3309 return ret;
3312 static BOOL CDecodeSignedMsg_VerifySignatureEx(CDecodeMsg *msg,
3313 PCMSG_CTRL_VERIFY_SIGNATURE_EX_PARA para)
3315 BOOL ret = FALSE;
3317 if (para->cbSize != sizeof(CMSG_CTRL_VERIFY_SIGNATURE_EX_PARA))
3318 SetLastError(ERROR_INVALID_PARAMETER);
3319 else if (para->dwSignerIndex >= msg->u.signed_data.info->cSignerInfo)
3320 SetLastError(CRYPT_E_SIGNER_NOT_FOUND);
3321 else if (!msg->u.signed_data.signerHandles)
3322 SetLastError(NTE_BAD_SIGNATURE);
3323 else
3325 switch (para->dwSignerType)
3327 case CMSG_VERIFY_SIGNER_PUBKEY:
3328 ret = CDecodeSignedMsg_VerifySignatureWithKey(msg,
3329 para->hCryptProv, para->dwSignerIndex, para->pvSigner);
3330 break;
3331 case CMSG_VERIFY_SIGNER_CERT:
3333 PCCERT_CONTEXT cert = para->pvSigner;
3335 ret = CDecodeSignedMsg_VerifySignatureWithKey(msg, para->hCryptProv,
3336 para->dwSignerIndex, &cert->pCertInfo->SubjectPublicKeyInfo);
3337 break;
3339 default:
3340 FIXME("unimplemented for signer type %d\n", para->dwSignerType);
3341 SetLastError(CRYPT_E_SIGNER_NOT_FOUND);
3344 return ret;
3347 static BOOL WINAPI CRYPT_ImportKeyTrans(
3348 PCRYPT_ALGORITHM_IDENTIFIER pContentEncryptionAlgorithm,
3349 PCMSG_CTRL_KEY_TRANS_DECRYPT_PARA pKeyTransDecryptPara, DWORD dwFlags,
3350 void *pvReserved, HCRYPTKEY *phContentEncryptKey)
3352 BOOL ret;
3353 HCRYPTKEY key;
3355 ret = CryptGetUserKey(pKeyTransDecryptPara->hCryptProv,
3356 pKeyTransDecryptPara->dwKeySpec ? pKeyTransDecryptPara->dwKeySpec :
3357 AT_KEYEXCHANGE, &key);
3358 if (ret)
3360 CMSG_KEY_TRANS_RECIPIENT_INFO *info =
3361 &pKeyTransDecryptPara->pKeyTrans[pKeyTransDecryptPara->dwRecipientIndex];
3362 CRYPT_DATA_BLOB *encryptedKey = &info->EncryptedKey;
3363 DWORD size = encryptedKey->cbData + sizeof(BLOBHEADER) + sizeof(ALG_ID);
3364 BYTE *keyBlob = CryptMemAlloc(size);
3366 if (keyBlob)
3368 DWORD i, k = size - 1;
3369 BLOBHEADER *blobHeader = (BLOBHEADER *)keyBlob;
3370 ALG_ID *algID = (ALG_ID *)(keyBlob + sizeof(BLOBHEADER));
3372 blobHeader->bType = SIMPLEBLOB;
3373 blobHeader->bVersion = CUR_BLOB_VERSION;
3374 blobHeader->reserved = 0;
3375 blobHeader->aiKeyAlg = CertOIDToAlgId(
3376 pContentEncryptionAlgorithm->pszObjId);
3377 *algID = CertOIDToAlgId(info->KeyEncryptionAlgorithm.pszObjId);
3378 for (i = 0; i < encryptedKey->cbData; ++i, --k)
3379 keyBlob[k] = encryptedKey->pbData[i];
3381 ret = CryptImportKey(pKeyTransDecryptPara->hCryptProv, keyBlob,
3382 size, key, 0, phContentEncryptKey);
3383 CryptMemFree(keyBlob);
3385 else
3386 ret = FALSE;
3387 CryptDestroyKey(key);
3389 return ret;
3392 static BOOL CRYPT_ImportEncryptedKey(PCRYPT_ALGORITHM_IDENTIFIER contEncrAlg,
3393 PCMSG_CTRL_DECRYPT_PARA para, PCMSG_KEY_TRANS_RECIPIENT_INFO info,
3394 HCRYPTKEY *key)
3396 static HCRYPTOIDFUNCSET set = NULL;
3397 PFN_CMSG_IMPORT_KEY_TRANS importKeyFunc = NULL;
3398 HCRYPTOIDFUNCADDR hFunc = NULL;
3399 CMSG_CTRL_KEY_TRANS_DECRYPT_PARA decryptPara;
3400 BOOL ret;
3402 memset(&decryptPara, 0, sizeof(decryptPara));
3403 decryptPara.cbSize = sizeof(decryptPara);
3404 decryptPara.hCryptProv = para->hCryptProv;
3405 decryptPara.dwKeySpec = para->dwKeySpec;
3406 decryptPara.pKeyTrans = info;
3407 decryptPara.dwRecipientIndex = para->dwRecipientIndex;
3409 if (!set)
3410 set = CryptInitOIDFunctionSet(CMSG_OID_IMPORT_KEY_TRANS_FUNC, 0);
3411 CryptGetOIDFunctionAddress(set, X509_ASN_ENCODING, contEncrAlg->pszObjId, 0,
3412 (void **)&importKeyFunc, &hFunc);
3413 if (!importKeyFunc)
3414 importKeyFunc = CRYPT_ImportKeyTrans;
3415 ret = importKeyFunc(contEncrAlg, &decryptPara, 0, NULL, key);
3416 if (hFunc)
3417 CryptFreeOIDFunctionAddress(hFunc, 0);
3418 return ret;
3421 static BOOL CDecodeEnvelopedMsg_CrtlDecrypt(CDecodeMsg *msg,
3422 PCMSG_CTRL_DECRYPT_PARA para)
3424 BOOL ret = FALSE;
3425 CEnvelopedDecodeMsg *enveloped_data = &msg->u.enveloped_data;
3426 CRYPT_ENVELOPED_DATA *data = enveloped_data->data;
3428 if (para->cbSize != sizeof(CMSG_CTRL_DECRYPT_PARA))
3429 SetLastError(E_INVALIDARG);
3430 else if (!data)
3431 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
3432 else if (para->dwRecipientIndex >= data->cRecipientInfo)
3433 SetLastError(CRYPT_E_INVALID_INDEX);
3434 else if (enveloped_data->decrypted)
3435 SetLastError(CRYPT_E_ALREADY_DECRYPTED);
3436 else if (!para->hCryptProv)
3437 SetLastError(ERROR_INVALID_PARAMETER);
3438 else if (enveloped_data->content.cbData)
3440 HCRYPTKEY key;
3442 ret = CRYPT_ImportEncryptedKey(
3443 &data->encryptedContentInfo.contentEncryptionAlgorithm, para,
3444 data->rgRecipientInfo, &key);
3445 if (ret)
3447 ret = CryptDecrypt(key, 0, TRUE, 0, enveloped_data->content.pbData,
3448 &enveloped_data->content.cbData);
3449 CryptDestroyKey(key);
3452 else
3453 ret = TRUE;
3454 if (ret)
3455 enveloped_data->decrypted = TRUE;
3456 return ret;
3459 static BOOL CDecodeMsg_Control(HCRYPTMSG hCryptMsg, DWORD dwFlags,
3460 DWORD dwCtrlType, const void *pvCtrlPara)
3462 CDecodeMsg *msg = hCryptMsg;
3463 BOOL ret = FALSE;
3465 switch (dwCtrlType)
3467 case CMSG_CTRL_VERIFY_SIGNATURE:
3468 switch (msg->type)
3470 case CMSG_SIGNED:
3471 ret = CDecodeSignedMsg_VerifySignature(msg, (PCERT_INFO)pvCtrlPara);
3472 break;
3473 default:
3474 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
3476 break;
3477 case CMSG_CTRL_DECRYPT:
3478 switch (msg->type)
3480 case CMSG_ENVELOPED:
3481 ret = CDecodeEnvelopedMsg_CrtlDecrypt(msg,
3482 (PCMSG_CTRL_DECRYPT_PARA)pvCtrlPara);
3483 if (ret && (dwFlags & CMSG_CRYPT_RELEASE_CONTEXT_FLAG))
3484 msg->u.enveloped_data.crypt_prov =
3485 ((PCMSG_CTRL_DECRYPT_PARA)pvCtrlPara)->hCryptProv;
3486 break;
3487 default:
3488 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
3490 break;
3491 case CMSG_CTRL_VERIFY_HASH:
3492 switch (msg->type)
3494 case CMSG_HASHED:
3495 ret = CDecodeHashMsg_VerifyHash(msg);
3496 break;
3497 default:
3498 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
3500 break;
3501 case CMSG_CTRL_VERIFY_SIGNATURE_EX:
3502 switch (msg->type)
3504 case CMSG_SIGNED:
3505 ret = CDecodeSignedMsg_VerifySignatureEx(msg,
3506 (PCMSG_CTRL_VERIFY_SIGNATURE_EX_PARA)pvCtrlPara);
3507 break;
3508 default:
3509 SetLastError(CRYPT_E_INVALID_MSG_TYPE);
3511 break;
3512 default:
3513 SetLastError(CRYPT_E_CONTROL_TYPE);
3515 return ret;
3518 HCRYPTMSG WINAPI CryptMsgOpenToDecode(DWORD dwMsgEncodingType, DWORD dwFlags,
3519 DWORD dwMsgType, HCRYPTPROV_LEGACY hCryptProv, PCERT_INFO pRecipientInfo,
3520 PCMSG_STREAM_INFO pStreamInfo)
3522 CDecodeMsg *msg;
3524 TRACE("(%08x, %08x, %08x, %08lx, %p, %p)\n", dwMsgEncodingType,
3525 dwFlags, dwMsgType, hCryptProv, pRecipientInfo, pStreamInfo);
3527 if (GET_CMSG_ENCODING_TYPE(dwMsgEncodingType) != PKCS_7_ASN_ENCODING)
3529 SetLastError(E_INVALIDARG);
3530 return NULL;
3532 msg = CryptMemAlloc(sizeof(CDecodeMsg));
3533 if (msg)
3535 CryptMsgBase_Init((CryptMsgBase *)msg, dwFlags, pStreamInfo,
3536 CDecodeMsg_Close, CDecodeMsg_GetParam, CDecodeMsg_Update,
3537 CDecodeMsg_Control);
3538 msg->type = dwMsgType;
3539 if (hCryptProv)
3540 msg->crypt_prov = hCryptProv;
3541 else
3543 msg->crypt_prov = CRYPT_GetDefaultProvider();
3544 msg->base.open_flags &= ~CMSG_CRYPT_RELEASE_CONTEXT_FLAG;
3546 memset(&msg->u, 0, sizeof(msg->u));
3547 msg->msg_data.cbData = 0;
3548 msg->msg_data.pbData = NULL;
3549 msg->detached_data.cbData = 0;
3550 msg->detached_data.pbData = NULL;
3551 msg->properties = ContextPropertyList_Create();
3553 return msg;
3556 HCRYPTMSG WINAPI CryptMsgDuplicate(HCRYPTMSG hCryptMsg)
3558 TRACE("(%p)\n", hCryptMsg);
3560 if (hCryptMsg)
3562 CryptMsgBase *msg = hCryptMsg;
3564 InterlockedIncrement(&msg->ref);
3566 return hCryptMsg;
3569 BOOL WINAPI CryptMsgClose(HCRYPTMSG hCryptMsg)
3571 TRACE("(%p)\n", hCryptMsg);
3573 if (hCryptMsg)
3575 CryptMsgBase *msg = hCryptMsg;
3577 if (InterlockedDecrement(&msg->ref) == 0)
3579 TRACE("freeing %p\n", msg);
3580 if (msg->close)
3581 msg->close(msg);
3582 CryptMemFree(msg);
3585 return TRUE;
3588 BOOL WINAPI CryptMsgUpdate(HCRYPTMSG hCryptMsg, const BYTE *pbData,
3589 DWORD cbData, BOOL fFinal)
3591 CryptMsgBase *msg = hCryptMsg;
3593 TRACE("(%p, %p, %d, %d)\n", hCryptMsg, pbData, cbData, fFinal);
3595 return msg->update(hCryptMsg, pbData, cbData, fFinal);
3598 BOOL WINAPI CryptMsgGetParam(HCRYPTMSG hCryptMsg, DWORD dwParamType,
3599 DWORD dwIndex, void *pvData, DWORD *pcbData)
3601 CryptMsgBase *msg = hCryptMsg;
3603 TRACE("(%p, %d, %d, %p, %p)\n", hCryptMsg, dwParamType, dwIndex,
3604 pvData, pcbData);
3605 return msg->get_param(hCryptMsg, dwParamType, dwIndex, pvData, pcbData);
3608 BOOL WINAPI CryptMsgControl(HCRYPTMSG hCryptMsg, DWORD dwFlags,
3609 DWORD dwCtrlType, const void *pvCtrlPara)
3611 CryptMsgBase *msg = hCryptMsg;
3613 TRACE("(%p, %08x, %d, %p)\n", hCryptMsg, dwFlags, dwCtrlType,
3614 pvCtrlPara);
3615 return msg->control(hCryptMsg, dwFlags, dwCtrlType, pvCtrlPara);
3618 static CERT_INFO *CRYPT_GetSignerCertInfoFromMsg(HCRYPTMSG msg,
3619 DWORD dwSignerIndex)
3621 CERT_INFO *certInfo = NULL;
3622 DWORD size;
3624 if (CryptMsgGetParam(msg, CMSG_SIGNER_CERT_INFO_PARAM, dwSignerIndex, NULL,
3625 &size))
3627 certInfo = CryptMemAlloc(size);
3628 if (certInfo)
3630 if (!CryptMsgGetParam(msg, CMSG_SIGNER_CERT_INFO_PARAM,
3631 dwSignerIndex, certInfo, &size))
3633 CryptMemFree(certInfo);
3634 certInfo = NULL;
3638 return certInfo;
3641 BOOL WINAPI CryptMsgGetAndVerifySigner(HCRYPTMSG hCryptMsg, DWORD cSignerStore,
3642 HCERTSTORE *rghSignerStore, DWORD dwFlags, PCCERT_CONTEXT *ppSigner,
3643 DWORD *pdwSignerIndex)
3645 HCERTSTORE store;
3646 DWORD i, signerIndex = 0;
3647 PCCERT_CONTEXT signerCert = NULL;
3648 BOOL ret = FALSE;
3650 TRACE("(%p, %d, %p, %08x, %p, %p)\n", hCryptMsg, cSignerStore,
3651 rghSignerStore, dwFlags, ppSigner, pdwSignerIndex);
3653 /* Clear output parameters */
3654 if (ppSigner)
3655 *ppSigner = NULL;
3656 if (pdwSignerIndex && !(dwFlags & CMSG_USE_SIGNER_INDEX_FLAG))
3657 *pdwSignerIndex = 0;
3659 /* Create store to search for signer certificates */
3660 store = CertOpenStore(CERT_STORE_PROV_COLLECTION, 0, 0,
3661 CERT_STORE_CREATE_NEW_FLAG, NULL);
3662 if (!(dwFlags & CMSG_TRUSTED_SIGNER_FLAG))
3664 HCERTSTORE msgStore = CertOpenStore(CERT_STORE_PROV_MSG, 0, 0, 0,
3665 hCryptMsg);
3667 CertAddStoreToCollection(store, msgStore, 0, 0);
3668 CertCloseStore(msgStore, 0);
3670 for (i = 0; i < cSignerStore; i++)
3671 CertAddStoreToCollection(store, rghSignerStore[i], 0, 0);
3673 /* Find signer cert */
3674 if (dwFlags & CMSG_USE_SIGNER_INDEX_FLAG)
3676 CERT_INFO *signer = CRYPT_GetSignerCertInfoFromMsg(hCryptMsg,
3677 *pdwSignerIndex);
3679 if (signer)
3681 signerIndex = *pdwSignerIndex;
3682 signerCert = CertFindCertificateInStore(store, X509_ASN_ENCODING,
3683 0, CERT_FIND_SUBJECT_CERT, signer, NULL);
3684 CryptMemFree(signer);
3687 else
3689 DWORD count, size = sizeof(count);
3691 if (CryptMsgGetParam(hCryptMsg, CMSG_SIGNER_COUNT_PARAM, 0, &count,
3692 &size))
3694 for (i = 0; !signerCert && i < count; i++)
3696 CERT_INFO *signer = CRYPT_GetSignerCertInfoFromMsg(hCryptMsg,
3699 if (signer)
3701 signerCert = CertFindCertificateInStore(store,
3702 X509_ASN_ENCODING, 0, CERT_FIND_SUBJECT_CERT, signer,
3703 NULL);
3704 if (signerCert)
3705 signerIndex = i;
3706 CryptMemFree(signer);
3710 if (!signerCert)
3711 SetLastError(CRYPT_E_NO_TRUSTED_SIGNER);
3713 if (signerCert)
3715 if (!(dwFlags & CMSG_SIGNER_ONLY_FLAG))
3716 ret = CryptMsgControl(hCryptMsg, 0, CMSG_CTRL_VERIFY_SIGNATURE,
3717 signerCert->pCertInfo);
3718 else
3719 ret = TRUE;
3720 if (ret)
3722 if (ppSigner)
3723 *ppSigner = CertDuplicateCertificateContext(signerCert);
3724 if (pdwSignerIndex)
3725 *pdwSignerIndex = signerIndex;
3727 CertFreeCertificateContext(signerCert);
3730 CertCloseStore(store, 0);
3731 return ret;
3734 BOOL WINAPI CryptMsgVerifyCountersignatureEncodedEx(HCRYPTPROV_LEGACY hCryptProv,
3735 DWORD dwEncodingType, PBYTE pbSignerInfo, DWORD cbSignerInfo,
3736 PBYTE pbSignerInfoCountersignature, DWORD cbSignerInfoCountersignature,
3737 DWORD dwSignerType, void *pvSigner, DWORD dwFlags, void *pvReserved)
3739 FIXME("(%08lx, %08x, %p, %d, %p, %d, %d, %p, %08x, %p): stub\n", hCryptProv,
3740 dwEncodingType, pbSignerInfo, cbSignerInfo, pbSignerInfoCountersignature,
3741 cbSignerInfoCountersignature, dwSignerType, pvSigner, dwFlags, pvReserved);
3742 return FALSE;
3745 BOOL WINAPI CryptMsgEncodeAndSignCTL(DWORD dwMsgEncodingType,
3746 PCTL_INFO pCtlInfo, PCMSG_SIGNED_ENCODE_INFO pSignInfo, DWORD dwFlags,
3747 BYTE *pbEncoded, DWORD *pcbEncoded)
3749 BOOL ret;
3750 BYTE *pbCtlContent;
3751 DWORD cbCtlContent;
3753 TRACE("(%08x, %p, %p, %08x, %p, %p)\n", dwMsgEncodingType, pCtlInfo,
3754 pSignInfo, dwFlags, pbEncoded, pcbEncoded);
3756 if (dwFlags)
3758 FIXME("unimplemented for flags %08x\n", dwFlags);
3759 return FALSE;
3761 if ((ret = CryptEncodeObjectEx(dwMsgEncodingType, PKCS_CTL, pCtlInfo,
3762 CRYPT_ENCODE_ALLOC_FLAG, NULL, &pbCtlContent, &cbCtlContent)))
3764 ret = CryptMsgSignCTL(dwMsgEncodingType, pbCtlContent, cbCtlContent,
3765 pSignInfo, dwFlags, pbEncoded, pcbEncoded);
3766 LocalFree(pbCtlContent);
3768 return ret;
3771 BOOL WINAPI CryptMsgSignCTL(DWORD dwMsgEncodingType, BYTE *pbCtlContent,
3772 DWORD cbCtlContent, PCMSG_SIGNED_ENCODE_INFO pSignInfo, DWORD dwFlags,
3773 BYTE *pbEncoded, DWORD *pcbEncoded)
3775 static char oid_ctl[] = szOID_CTL;
3776 BOOL ret;
3777 HCRYPTMSG msg;
3779 TRACE("(%08x, %p, %d, %p, %08x, %p, %p)\n", dwMsgEncodingType,
3780 pbCtlContent, cbCtlContent, pSignInfo, dwFlags, pbEncoded, pcbEncoded);
3782 if (dwFlags)
3784 FIXME("unimplemented for flags %08x\n", dwFlags);
3785 return FALSE;
3787 msg = CryptMsgOpenToEncode(dwMsgEncodingType, 0, CMSG_SIGNED, pSignInfo,
3788 oid_ctl, NULL);
3789 if (msg)
3791 ret = CryptMsgUpdate(msg, pbCtlContent, cbCtlContent, TRUE);
3792 if (ret)
3793 ret = CryptMsgGetParam(msg, CMSG_CONTENT_PARAM, 0, pbEncoded,
3794 pcbEncoded);
3795 CryptMsgClose(msg);
3797 else
3798 ret = FALSE;
3799 return ret;