2 * Copyright 2004-2006 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
23 #define NONAMELESSUNION
29 #include "wine/debug.h"
30 #include "crypt32_private.h"
32 WINE_DEFAULT_DEBUG_CHANNEL(crypt);
34 /* Internal version of CertGetCertificateContextProperty that gets properties
35 * directly from the context (or the context it's linked to, depending on its
36 * type.) Doesn't handle special-case properties, since they are handled by
37 * CertGetCertificateContextProperty, and are particular to the store in which
38 * the property exists (which is separate from the context.)
40 static BOOL WINAPI CertContext_GetProperty(void *context, DWORD dwPropId,
41 void *pvData, DWORD *pcbData);
43 /* Internal version of CertSetCertificateContextProperty that sets properties
44 * directly on the context (or the context it's linked to, depending on its
45 * type.) Doesn't handle special cases, since they're handled by
46 * CertSetCertificateContextProperty anyway.
48 static BOOL WINAPI CertContext_SetProperty(void *context, DWORD dwPropId,
49 DWORD dwFlags, const void *pvData);
51 BOOL WINAPI CertAddEncodedCertificateToStore(HCERTSTORE hCertStore,
52 DWORD dwCertEncodingType, const BYTE *pbCertEncoded, DWORD cbCertEncoded,
53 DWORD dwAddDisposition, PCCERT_CONTEXT *ppCertContext)
55 PCCERT_CONTEXT cert = CertCreateCertificateContext(dwCertEncodingType,
56 pbCertEncoded, cbCertEncoded);
59 TRACE("(%p, %08x, %p, %d, %08x, %p)\n", hCertStore, dwCertEncodingType,
60 pbCertEncoded, cbCertEncoded, dwAddDisposition, ppCertContext);
64 ret = CertAddCertificateContextToStore(hCertStore, cert,
65 dwAddDisposition, ppCertContext);
66 CertFreeCertificateContext(cert);
73 PCCERT_CONTEXT WINAPI CertCreateCertificateContext(DWORD dwCertEncodingType,
74 const BYTE *pbCertEncoded, DWORD cbCertEncoded)
76 PCERT_CONTEXT cert = NULL;
78 PCERT_INFO certInfo = NULL;
81 TRACE("(%08x, %p, %d)\n", dwCertEncodingType, pbCertEncoded,
84 ret = CryptDecodeObjectEx(dwCertEncodingType, X509_CERT_TO_BE_SIGNED,
85 pbCertEncoded, cbCertEncoded, CRYPT_DECODE_ALLOC_FLAG, NULL,
86 (BYTE *)&certInfo, &size);
91 cert = (PCERT_CONTEXT)Context_CreateDataContext(sizeof(CERT_CONTEXT));
94 data = CryptMemAlloc(cbCertEncoded);
101 memcpy(data, pbCertEncoded, cbCertEncoded);
102 cert->dwCertEncodingType = dwCertEncodingType;
103 cert->pbCertEncoded = data;
104 cert->cbCertEncoded = cbCertEncoded;
105 cert->pCertInfo = certInfo;
106 cert->hCertStore = 0;
110 return (PCCERT_CONTEXT)cert;
113 PCCERT_CONTEXT WINAPI CertDuplicateCertificateContext(
114 PCCERT_CONTEXT pCertContext)
116 TRACE("(%p)\n", pCertContext);
117 Context_AddRef((void *)pCertContext, sizeof(CERT_CONTEXT));
121 static void CertDataContext_Free(void *context)
123 PCERT_CONTEXT certContext = (PCERT_CONTEXT)context;
125 CryptMemFree(certContext->pbCertEncoded);
126 LocalFree(certContext->pCertInfo);
129 BOOL WINAPI CertFreeCertificateContext(PCCERT_CONTEXT pCertContext)
131 TRACE("(%p)\n", pCertContext);
134 Context_Release((void *)pCertContext, sizeof(CERT_CONTEXT),
135 CertDataContext_Free);
139 DWORD WINAPI CertEnumCertificateContextProperties(PCCERT_CONTEXT pCertContext,
142 PCONTEXT_PROPERTY_LIST properties = Context_GetProperties(
143 (void *)pCertContext, sizeof(CERT_CONTEXT));
146 TRACE("(%p, %d)\n", pCertContext, dwPropId);
149 ret = ContextPropertyList_EnumPropIDs(properties, dwPropId);
155 static BOOL CertContext_GetHashProp(void *context, DWORD dwPropId,
156 ALG_ID algID, const BYTE *toHash, DWORD toHashLen, void *pvData,
159 BOOL ret = CryptHashCertificate(0, algID, 0, toHash, toHashLen, pvData,
163 CRYPT_DATA_BLOB blob = { *pcbData, pvData };
165 ret = CertContext_SetProperty(context, dwPropId, 0, &blob);
170 static BOOL CertContext_CopyParam(void *pvData, DWORD *pcbData, const void *pb,
177 else if (*pcbData < cb)
179 SetLastError(ERROR_MORE_DATA);
185 memcpy(pvData, pb, cb);
191 static BOOL WINAPI CertContext_GetProperty(void *context, DWORD dwPropId,
192 void *pvData, DWORD *pcbData)
194 PCCERT_CONTEXT pCertContext = (PCCERT_CONTEXT)context;
195 PCONTEXT_PROPERTY_LIST properties =
196 Context_GetProperties(context, sizeof(CERT_CONTEXT));
198 CRYPT_DATA_BLOB blob;
200 TRACE("(%p, %d, %p, %p)\n", context, dwPropId, pvData, pcbData);
203 ret = ContextPropertyList_FindProperty(properties, dwPropId, &blob);
207 ret = CertContext_CopyParam(pvData, pcbData, blob.pbData, blob.cbData);
210 /* Implicit properties */
213 case CERT_SHA1_HASH_PROP_ID:
214 ret = CertContext_GetHashProp(context, dwPropId, CALG_SHA1,
215 pCertContext->pbCertEncoded, pCertContext->cbCertEncoded, pvData,
218 case CERT_MD5_HASH_PROP_ID:
219 ret = CertContext_GetHashProp(context, dwPropId, CALG_MD5,
220 pCertContext->pbCertEncoded, pCertContext->cbCertEncoded, pvData,
223 case CERT_SUBJECT_NAME_MD5_HASH_PROP_ID:
224 ret = CertContext_GetHashProp(context, dwPropId, CALG_MD5,
225 pCertContext->pCertInfo->Subject.pbData,
226 pCertContext->pCertInfo->Subject.cbData,
229 case CERT_SUBJECT_PUBLIC_KEY_MD5_HASH_PROP_ID:
230 ret = CertContext_GetHashProp(context, dwPropId, CALG_MD5,
231 pCertContext->pCertInfo->SubjectPublicKeyInfo.PublicKey.pbData,
232 pCertContext->pCertInfo->SubjectPublicKeyInfo.PublicKey.cbData,
235 case CERT_ISSUER_SERIAL_NUMBER_MD5_HASH_PROP_ID:
236 ret = CertContext_GetHashProp(context, dwPropId, CALG_MD5,
237 pCertContext->pCertInfo->SerialNumber.pbData,
238 pCertContext->pCertInfo->SerialNumber.cbData,
241 case CERT_SIGNATURE_HASH_PROP_ID:
242 ret = CryptHashToBeSigned(0, pCertContext->dwCertEncodingType,
243 pCertContext->pbCertEncoded, pCertContext->cbCertEncoded, pvData,
247 CRYPT_DATA_BLOB blob = { *pcbData, pvData };
249 ret = CertContext_SetProperty(context, dwPropId, 0, &blob);
252 case CERT_KEY_IDENTIFIER_PROP_ID:
254 PCERT_EXTENSION ext = CertFindExtension(
255 szOID_SUBJECT_KEY_IDENTIFIER, pCertContext->pCertInfo->cExtension,
256 pCertContext->pCertInfo->rgExtension);
260 CRYPT_DATA_BLOB value;
261 DWORD size = sizeof(value);
263 ret = CryptDecodeObjectEx(X509_ASN_ENCODING,
264 szOID_SUBJECT_KEY_IDENTIFIER, ext->Value.pbData,
265 ext->Value.cbData, CRYPT_DECODE_NOCOPY_FLAG, NULL, &value,
269 ret = CertContext_CopyParam(pvData, pcbData, value.pbData,
271 CertContext_SetProperty(context, dwPropId, 0, &value);
275 SetLastError(ERROR_INVALID_DATA);
279 SetLastError(CRYPT_E_NOT_FOUND);
282 TRACE("returning %d\n", ret);
286 void CRYPT_FixKeyProvInfoPointers(PCRYPT_KEY_PROV_INFO info)
288 DWORD i, containerLen, provNameLen;
289 LPBYTE data = (LPBYTE)info + sizeof(CRYPT_KEY_PROV_INFO);
291 info->pwszContainerName = (LPWSTR)data;
292 containerLen = (lstrlenW(info->pwszContainerName) + 1) * sizeof(WCHAR);
293 data += containerLen;
295 info->pwszProvName = (LPWSTR)data;
296 provNameLen = (lstrlenW(info->pwszProvName) + 1) * sizeof(WCHAR);
299 info->rgProvParam = (PCRYPT_KEY_PROV_PARAM)data;
300 data += info->cProvParam * sizeof(CRYPT_KEY_PROV_PARAM);
302 for (i = 0; i < info->cProvParam; i++)
304 info->rgProvParam[i].pbData = data;
305 data += info->rgProvParam[i].cbData;
309 BOOL WINAPI CertGetCertificateContextProperty(PCCERT_CONTEXT pCertContext,
310 DWORD dwPropId, void *pvData, DWORD *pcbData)
314 TRACE("(%p, %d, %p, %p)\n", pCertContext, dwPropId, pvData, pcbData);
319 case CERT_CERT_PROP_ID:
320 case CERT_CRL_PROP_ID:
321 case CERT_CTL_PROP_ID:
322 SetLastError(E_INVALIDARG);
325 case CERT_ACCESS_STATE_PROP_ID:
326 if (pCertContext->hCertStore)
327 ret = CertGetStoreProperty(pCertContext->hCertStore, dwPropId,
333 ret = CertContext_CopyParam(pvData, pcbData, &state, sizeof(state));
336 case CERT_KEY_PROV_HANDLE_PROP_ID:
338 CERT_KEY_CONTEXT keyContext;
339 DWORD size = sizeof(keyContext);
341 ret = CertContext_GetProperty((void *)pCertContext,
342 CERT_KEY_CONTEXT_PROP_ID, &keyContext, &size);
344 ret = CertContext_CopyParam(pvData, pcbData, &keyContext.hCryptProv,
345 sizeof(keyContext.hCryptProv));
348 case CERT_KEY_PROV_INFO_PROP_ID:
349 ret = CertContext_GetProperty((void *)pCertContext, dwPropId, pvData,
352 CRYPT_FixKeyProvInfoPointers((PCRYPT_KEY_PROV_INFO)pvData);
355 ret = CertContext_GetProperty((void *)pCertContext, dwPropId, pvData,
359 TRACE("returning %d\n", ret);
363 /* Copies key provider info from from into to, where to is assumed to be a
364 * contiguous buffer of memory large enough for from and all its associated
365 * data, but whose pointers are uninitialized.
366 * Upon return, to contains a contiguous copy of from, packed in the following
368 * - CRYPT_KEY_PROV_INFO
369 * - pwszContainerName
371 * - rgProvParam[0]...
373 static void CRYPT_CopyKeyProvInfo(PCRYPT_KEY_PROV_INFO to,
374 const CRYPT_KEY_PROV_INFO *from)
377 LPBYTE nextData = (LPBYTE)to + sizeof(CRYPT_KEY_PROV_INFO);
379 if (from->pwszContainerName)
381 to->pwszContainerName = (LPWSTR)nextData;
382 lstrcpyW(to->pwszContainerName, from->pwszContainerName);
383 nextData += (lstrlenW(from->pwszContainerName) + 1) * sizeof(WCHAR);
386 to->pwszContainerName = NULL;
387 if (from->pwszProvName)
389 to->pwszProvName = (LPWSTR)nextData;
390 lstrcpyW(to->pwszProvName, from->pwszProvName);
391 nextData += (lstrlenW(from->pwszProvName) + 1) * sizeof(WCHAR);
394 to->pwszProvName = NULL;
395 to->dwProvType = from->dwProvType;
396 to->dwFlags = from->dwFlags;
397 to->cProvParam = from->cProvParam;
398 to->rgProvParam = (PCRYPT_KEY_PROV_PARAM)nextData;
399 nextData += to->cProvParam * sizeof(CRYPT_KEY_PROV_PARAM);
400 to->dwKeySpec = from->dwKeySpec;
401 for (i = 0; i < to->cProvParam; i++)
403 memcpy(&to->rgProvParam[i], &from->rgProvParam[i],
404 sizeof(CRYPT_KEY_PROV_PARAM));
405 to->rgProvParam[i].pbData = nextData;
406 memcpy(to->rgProvParam[i].pbData, from->rgProvParam[i].pbData,
407 from->rgProvParam[i].cbData);
408 nextData += from->rgProvParam[i].cbData;
412 static BOOL CertContext_SetKeyProvInfoProperty(PCONTEXT_PROPERTY_LIST properties,
413 const CRYPT_KEY_PROV_INFO *info)
417 DWORD size = sizeof(CRYPT_KEY_PROV_INFO), i, containerSize, provNameSize;
419 if (info->pwszContainerName)
420 containerSize = (lstrlenW(info->pwszContainerName) + 1) * sizeof(WCHAR);
423 if (info->pwszProvName)
424 provNameSize = (lstrlenW(info->pwszProvName) + 1) * sizeof(WCHAR);
427 size += containerSize + provNameSize;
428 for (i = 0; i < info->cProvParam; i++)
429 size += sizeof(CRYPT_KEY_PROV_PARAM) + info->rgProvParam[i].cbData;
430 buf = CryptMemAlloc(size);
433 CRYPT_CopyKeyProvInfo((PCRYPT_KEY_PROV_INFO)buf, info);
434 ret = ContextPropertyList_SetProperty(properties,
435 CERT_KEY_PROV_INFO_PROP_ID, buf, size);
443 static BOOL WINAPI CertContext_SetProperty(void *context, DWORD dwPropId,
444 DWORD dwFlags, const void *pvData)
446 PCONTEXT_PROPERTY_LIST properties =
447 Context_GetProperties(context, sizeof(CERT_CONTEXT));
450 TRACE("(%p, %d, %08x, %p)\n", context, dwPropId, dwFlags, pvData);
458 case CERT_AUTO_ENROLL_PROP_ID:
459 case CERT_CTL_USAGE_PROP_ID: /* same as CERT_ENHKEY_USAGE_PROP_ID */
460 case CERT_DESCRIPTION_PROP_ID:
461 case CERT_FRIENDLY_NAME_PROP_ID:
462 case CERT_HASH_PROP_ID:
463 case CERT_KEY_IDENTIFIER_PROP_ID:
464 case CERT_MD5_HASH_PROP_ID:
465 case CERT_NEXT_UPDATE_LOCATION_PROP_ID:
466 case CERT_PUBKEY_ALG_PARA_PROP_ID:
467 case CERT_PVK_FILE_PROP_ID:
468 case CERT_SIGNATURE_HASH_PROP_ID:
469 case CERT_ISSUER_PUBLIC_KEY_MD5_HASH_PROP_ID:
470 case CERT_SUBJECT_NAME_MD5_HASH_PROP_ID:
471 case CERT_SUBJECT_PUBLIC_KEY_MD5_HASH_PROP_ID:
472 case CERT_ENROLLMENT_PROP_ID:
473 case CERT_CROSS_CERT_DIST_POINTS_PROP_ID:
474 case CERT_RENEWAL_PROP_ID:
478 const CRYPT_DATA_BLOB *blob = (const CRYPT_DATA_BLOB *)pvData;
480 ret = ContextPropertyList_SetProperty(properties, dwPropId,
481 blob->pbData, blob->cbData);
485 ContextPropertyList_RemoveProperty(properties, dwPropId);
490 case CERT_DATE_STAMP_PROP_ID:
492 ret = ContextPropertyList_SetProperty(properties, dwPropId,
493 (const BYTE *)pvData, sizeof(FILETIME));
496 ContextPropertyList_RemoveProperty(properties, dwPropId);
500 case CERT_KEY_CONTEXT_PROP_ID:
504 const CERT_KEY_CONTEXT *keyContext = (const CERT_KEY_CONTEXT *)pvData;
506 if (keyContext->cbSize != sizeof(CERT_KEY_CONTEXT))
508 SetLastError(E_INVALIDARG);
512 ret = ContextPropertyList_SetProperty(properties, dwPropId,
513 (const BYTE *)keyContext, keyContext->cbSize);
517 ContextPropertyList_RemoveProperty(properties, dwPropId);
522 case CERT_KEY_PROV_INFO_PROP_ID:
524 ret = CertContext_SetKeyProvInfoProperty(properties,
525 (const CRYPT_KEY_PROV_INFO *)pvData);
528 ContextPropertyList_RemoveProperty(properties, dwPropId);
532 case CERT_KEY_PROV_HANDLE_PROP_ID:
534 CERT_KEY_CONTEXT keyContext;
535 DWORD size = sizeof(keyContext);
537 ret = CertContext_GetProperty(context, CERT_KEY_CONTEXT_PROP_ID,
541 if (!(dwFlags & CERT_STORE_NO_CRYPT_RELEASE_FLAG))
542 CryptReleaseContext(keyContext.hCryptProv, 0);
544 keyContext.hCryptProv = *(const HCRYPTPROV *)pvData;
546 keyContext.hCryptProv = 0;
547 ret = CertContext_SetProperty(context, CERT_KEY_CONTEXT_PROP_ID,
553 FIXME("%d: stub\n", dwPropId);
557 TRACE("returning %d\n", ret);
561 BOOL WINAPI CertSetCertificateContextProperty(PCCERT_CONTEXT pCertContext,
562 DWORD dwPropId, DWORD dwFlags, const void *pvData)
566 TRACE("(%p, %d, %08x, %p)\n", pCertContext, dwPropId, dwFlags, pvData);
568 /* Handle special cases for "read-only"/invalid prop IDs. Windows just
569 * crashes on most of these, I'll be safer.
574 case CERT_ACCESS_STATE_PROP_ID:
575 case CERT_CERT_PROP_ID:
576 case CERT_CRL_PROP_ID:
577 case CERT_CTL_PROP_ID:
578 SetLastError(E_INVALIDARG);
581 ret = CertContext_SetProperty((void *)pCertContext, dwPropId, dwFlags,
583 TRACE("returning %d\n", ret);
587 /* Acquires the private key using the key provider info, retrieving info from
588 * the certificate if info is NULL. The acquired provider is returned in
589 * *phCryptProv, and the key spec for the provider is returned in *pdwKeySpec.
591 static BOOL CRYPT_AcquirePrivateKeyFromProvInfo(PCCERT_CONTEXT pCert,
592 PCRYPT_KEY_PROV_INFO info, HCRYPTPROV *phCryptProv, DWORD *pdwKeySpec)
595 BOOL allocated = FALSE, ret = TRUE;
599 ret = CertGetCertificateContextProperty(pCert,
600 CERT_KEY_PROV_INFO_PROP_ID, 0, &size);
603 info = (PCRYPT_KEY_PROV_INFO)HeapAlloc(GetProcessHeap(), 0, size);
606 ret = CertGetCertificateContextProperty(pCert,
607 CERT_KEY_PROV_INFO_PROP_ID, info, &size);
612 SetLastError(CRYPT_E_NO_KEY_PROPERTY);
616 ret = CryptAcquireContextW(phCryptProv, info->pwszContainerName,
617 info->pwszProvName, info->dwProvType, 0);
622 for (i = 0; i < info->cProvParam; i++)
624 CryptSetProvParam(*phCryptProv,
625 info->rgProvParam[i].dwParam, info->rgProvParam[i].pbData,
626 info->rgProvParam[i].dwFlags);
628 *pdwKeySpec = info->dwKeySpec;
631 SetLastError(CRYPT_E_NO_KEY_PROPERTY);
634 HeapFree(GetProcessHeap(), 0, info);
638 BOOL WINAPI CryptAcquireCertificatePrivateKey(PCCERT_CONTEXT pCert,
639 DWORD dwFlags, void *pvReserved, HCRYPTPROV_OR_NCRYPT_KEY_HANDLE *phCryptProv,
640 DWORD *pdwKeySpec, BOOL *pfCallerFreeProv)
642 BOOL ret = FALSE, cache = FALSE;
643 PCRYPT_KEY_PROV_INFO info = NULL;
644 CERT_KEY_CONTEXT keyContext;
647 TRACE("(%p, %08x, %p, %p, %p, %p)\n", pCert, dwFlags, pvReserved,
648 phCryptProv, pdwKeySpec, pfCallerFreeProv);
650 if (dwFlags & CRYPT_ACQUIRE_USE_PROV_INFO_FLAG)
654 ret = CertGetCertificateContextProperty(pCert,
655 CERT_KEY_PROV_INFO_PROP_ID, 0, &size);
658 info = (PCRYPT_KEY_PROV_INFO)HeapAlloc(
659 GetProcessHeap(), 0, size);
660 ret = CertGetCertificateContextProperty(pCert,
661 CERT_KEY_PROV_INFO_PROP_ID, info, &size);
663 cache = info->dwFlags & CERT_SET_KEY_CONTEXT_PROP_ID;
666 else if (dwFlags & CRYPT_ACQUIRE_CACHE_FLAG)
671 size = sizeof(keyContext);
672 ret = CertGetCertificateContextProperty(pCert, CERT_KEY_CONTEXT_PROP_ID,
676 *phCryptProv = keyContext.hCryptProv;
678 *pdwKeySpec = keyContext.dwKeySpec;
679 if (pfCallerFreeProv)
680 *pfCallerFreeProv = !cache;
685 ret = CRYPT_AcquirePrivateKeyFromProvInfo(pCert, info,
686 &keyContext.hCryptProv, &keyContext.dwKeySpec);
689 *phCryptProv = keyContext.hCryptProv;
691 *pdwKeySpec = keyContext.dwKeySpec;
694 keyContext.cbSize = sizeof(keyContext);
695 if (CertSetCertificateContextProperty(pCert,
696 CERT_KEY_CONTEXT_PROP_ID, 0, &keyContext))
698 if (pfCallerFreeProv)
699 *pfCallerFreeProv = FALSE;
704 if (pfCallerFreeProv)
705 *pfCallerFreeProv = TRUE;
709 HeapFree(GetProcessHeap(), 0, info);
713 BOOL WINAPI CertCompareCertificate(DWORD dwCertEncodingType,
714 PCERT_INFO pCertId1, PCERT_INFO pCertId2)
718 TRACE("(%08x, %p, %p)\n", dwCertEncodingType, pCertId1, pCertId2);
720 ret = CertCompareCertificateName(dwCertEncodingType, &pCertId1->Issuer,
721 &pCertId2->Issuer) && CertCompareIntegerBlob(&pCertId1->SerialNumber,
722 &pCertId2->SerialNumber);
723 TRACE("returning %d\n", ret);
727 BOOL WINAPI CertCompareCertificateName(DWORD dwCertEncodingType,
728 PCERT_NAME_BLOB pCertName1, PCERT_NAME_BLOB pCertName2)
732 TRACE("(%08x, %p, %p)\n", dwCertEncodingType, pCertName1, pCertName2);
734 if (pCertName1->cbData == pCertName2->cbData)
736 if (pCertName1->cbData)
737 ret = !memcmp(pCertName1->pbData, pCertName2->pbData,
744 TRACE("returning %d\n", ret);
748 /* Returns the number of significant bytes in pInt, where a byte is
749 * insignificant if it's a leading 0 for positive numbers or a leading 0xff
750 * for negative numbers. pInt is assumed to be little-endian.
752 static DWORD CRYPT_significantBytes(const CRYPT_INTEGER_BLOB *pInt)
754 DWORD ret = pInt->cbData;
758 if (pInt->pbData[ret - 2] <= 0x7f && pInt->pbData[ret - 1] == 0)
760 else if (pInt->pbData[ret - 2] >= 0x80 && pInt->pbData[ret - 1] == 0xff)
768 BOOL WINAPI CertCompareIntegerBlob(PCRYPT_INTEGER_BLOB pInt1,
769 PCRYPT_INTEGER_BLOB pInt2)
774 TRACE("(%p, %p)\n", pInt1, pInt2);
776 cb1 = CRYPT_significantBytes(pInt1);
777 cb2 = CRYPT_significantBytes(pInt2);
781 ret = !memcmp(pInt1->pbData, pInt2->pbData, cb1);
787 TRACE("returning %d\n", ret);
791 BOOL WINAPI CertComparePublicKeyInfo(DWORD dwCertEncodingType,
792 PCERT_PUBLIC_KEY_INFO pPublicKey1, PCERT_PUBLIC_KEY_INFO pPublicKey2)
796 TRACE("(%08x, %p, %p)\n", dwCertEncodingType, pPublicKey1, pPublicKey2);
798 switch (GET_CERT_ENCODING_TYPE(dwCertEncodingType))
800 case 0: /* Seems to mean "raw binary bits" */
801 if (pPublicKey1->PublicKey.cbData == pPublicKey2->PublicKey.cbData &&
802 pPublicKey1->PublicKey.cUnusedBits == pPublicKey2->PublicKey.cUnusedBits)
804 if (pPublicKey2->PublicKey.cbData)
805 ret = !memcmp(pPublicKey1->PublicKey.pbData,
806 pPublicKey2->PublicKey.pbData, pPublicKey1->PublicKey.cbData);
814 WARN("Unknown encoding type %08x\n", dwCertEncodingType);
816 case X509_ASN_ENCODING:
818 BLOBHEADER *pblob1, *pblob2;
821 if (CryptDecodeObject(dwCertEncodingType, RSA_CSP_PUBLICKEYBLOB,
822 pPublicKey1->PublicKey.pbData, pPublicKey1->PublicKey.cbData,
825 pblob1 = CryptMemAlloc(length);
826 if (CryptDecodeObject(dwCertEncodingType, RSA_CSP_PUBLICKEYBLOB,
827 pPublicKey1->PublicKey.pbData, pPublicKey1->PublicKey.cbData,
830 if (CryptDecodeObject(dwCertEncodingType, RSA_CSP_PUBLICKEYBLOB,
831 pPublicKey2->PublicKey.pbData, pPublicKey2->PublicKey.cbData,
834 pblob2 = CryptMemAlloc(length);
835 if (CryptDecodeObject(dwCertEncodingType, RSA_CSP_PUBLICKEYBLOB,
836 pPublicKey2->PublicKey.pbData, pPublicKey2->PublicKey.cbData,
839 /* The RSAPUBKEY structure directly follows the BLOBHEADER */
840 RSAPUBKEY *pk1 = (LPVOID)(pblob1 + 1),
841 *pk2 = (LPVOID)(pblob2 + 1);
842 ret = (pk1->bitlen == pk2->bitlen) && (pk1->pubexp == pk2->pubexp)
843 && !memcmp(pk1 + 1, pk2 + 1, pk1->bitlen/8);
845 CryptMemFree(pblob2);
848 CryptMemFree(pblob1);
857 DWORD WINAPI CertGetPublicKeyLength(DWORD dwCertEncodingType,
858 PCERT_PUBLIC_KEY_INFO pPublicKey)
862 TRACE("(%08x, %p)\n", dwCertEncodingType, pPublicKey);
864 if (GET_CERT_ENCODING_TYPE(dwCertEncodingType) != X509_ASN_ENCODING)
866 SetLastError(ERROR_FILE_NOT_FOUND);
869 if (pPublicKey->Algorithm.pszObjId &&
870 !strcmp(pPublicKey->Algorithm.pszObjId, szOID_RSA_DH))
872 FIXME("unimplemented for DH public keys\n");
873 SetLastError(CRYPT_E_ASN1_BADTAG);
879 BOOL ret = CryptDecodeObjectEx(dwCertEncodingType,
880 RSA_CSP_PUBLICKEYBLOB, pPublicKey->PublicKey.pbData,
881 pPublicKey->PublicKey.cbData, CRYPT_DECODE_ALLOC_FLAG, NULL, &buf,
886 RSAPUBKEY *rsaPubKey = (RSAPUBKEY *)(buf + sizeof(BLOBHEADER));
888 len = rsaPubKey->bitlen;
895 typedef BOOL (*CertCompareFunc)(PCCERT_CONTEXT pCertContext, DWORD dwType,
896 DWORD dwFlags, const void *pvPara);
898 static BOOL compare_cert_any(PCCERT_CONTEXT pCertContext, DWORD dwType,
899 DWORD dwFlags, const void *pvPara)
904 static BOOL compare_cert_by_md5_hash(PCCERT_CONTEXT pCertContext, DWORD dwType,
905 DWORD dwFlags, const void *pvPara)
909 DWORD size = sizeof(hash);
911 ret = CertGetCertificateContextProperty(pCertContext,
912 CERT_MD5_HASH_PROP_ID, hash, &size);
915 const CRYPT_HASH_BLOB *pHash = (const CRYPT_HASH_BLOB *)pvPara;
917 if (size == pHash->cbData)
918 ret = !memcmp(pHash->pbData, hash, size);
925 static BOOL compare_cert_by_sha1_hash(PCCERT_CONTEXT pCertContext, DWORD dwType,
926 DWORD dwFlags, const void *pvPara)
930 DWORD size = sizeof(hash);
932 ret = CertGetCertificateContextProperty(pCertContext,
933 CERT_SHA1_HASH_PROP_ID, hash, &size);
936 const CRYPT_HASH_BLOB *pHash = (const CRYPT_HASH_BLOB *)pvPara;
938 if (size == pHash->cbData)
939 ret = !memcmp(pHash->pbData, hash, size);
946 static BOOL compare_cert_by_name(PCCERT_CONTEXT pCertContext, DWORD dwType,
947 DWORD dwFlags, const void *pvPara)
949 CERT_NAME_BLOB *blob = (CERT_NAME_BLOB *)pvPara, *toCompare;
952 if (dwType & CERT_INFO_SUBJECT_FLAG)
953 toCompare = &pCertContext->pCertInfo->Subject;
955 toCompare = &pCertContext->pCertInfo->Issuer;
956 ret = CertCompareCertificateName(pCertContext->dwCertEncodingType,
961 static BOOL compare_cert_by_subject_cert(PCCERT_CONTEXT pCertContext,
962 DWORD dwType, DWORD dwFlags, const void *pvPara)
964 CERT_INFO *pCertInfo = (CERT_INFO *)pvPara;
967 /* Matching serial number and subject match.. */
968 ret = CertCompareCertificateName(pCertContext->dwCertEncodingType,
969 &pCertInfo->Issuer, &pCertContext->pCertInfo->Subject);
971 ret = CertCompareIntegerBlob(&pCertContext->pCertInfo->SerialNumber,
972 &pCertInfo->SerialNumber);
975 /* failing that, if the serial number and issuer match, we match */
976 ret = CertCompareIntegerBlob(&pCertContext->pCertInfo->SerialNumber,
977 &pCertInfo->SerialNumber);
979 ret = CertCompareCertificateName(pCertContext->dwCertEncodingType,
980 &pCertInfo->Issuer, &pCertContext->pCertInfo->Issuer);
982 TRACE("returning %d\n", ret);
986 static BOOL compare_cert_by_cert_id(PCCERT_CONTEXT pCertContext, DWORD dwType,
987 DWORD dwFlags, const void *pvPara)
989 CERT_ID *id = (CERT_ID *)pvPara;
992 switch (id->dwIdChoice)
994 case CERT_ID_ISSUER_SERIAL_NUMBER:
995 ret = CertCompareCertificateName(pCertContext->dwCertEncodingType,
996 &pCertContext->pCertInfo->Issuer, &id->u.IssuerSerialNumber.Issuer);
998 ret = CertCompareIntegerBlob(&pCertContext->pCertInfo->SerialNumber,
999 &id->u.IssuerSerialNumber.SerialNumber);
1001 case CERT_ID_SHA1_HASH:
1002 ret = compare_cert_by_sha1_hash(pCertContext, dwType, dwFlags,
1005 case CERT_ID_KEY_IDENTIFIER:
1009 ret = CertGetCertificateContextProperty(pCertContext,
1010 CERT_KEY_IDENTIFIER_PROP_ID, NULL, &size);
1011 if (ret && size == id->u.KeyId.cbData)
1013 LPBYTE buf = CryptMemAlloc(size);
1017 CertGetCertificateContextProperty(pCertContext,
1018 CERT_KEY_IDENTIFIER_PROP_ID, buf, &size);
1019 ret = !memcmp(buf, id->u.KeyId.pbData, size);
1034 static BOOL compare_cert_by_issuer(PCCERT_CONTEXT pCertContext, DWORD dwType,
1035 DWORD dwFlags, const void *pvPara)
1038 PCCERT_CONTEXT subject = (PCCERT_CONTEXT)pvPara;
1039 PCERT_EXTENSION ext;
1042 if ((ext = CertFindExtension(szOID_AUTHORITY_KEY_IDENTIFIER,
1043 subject->pCertInfo->cExtension, subject->pCertInfo->rgExtension)))
1045 CERT_AUTHORITY_KEY_ID_INFO *info;
1047 ret = CryptDecodeObjectEx(subject->dwCertEncodingType,
1048 X509_AUTHORITY_KEY_ID, ext->Value.pbData, ext->Value.cbData,
1049 CRYPT_DECODE_ALLOC_FLAG | CRYPT_DECODE_NOCOPY_FLAG, NULL,
1055 if (info->CertIssuer.cbData && info->CertSerialNumber.cbData)
1057 id.dwIdChoice = CERT_ID_ISSUER_SERIAL_NUMBER;
1058 memcpy(&id.u.IssuerSerialNumber.Issuer, &info->CertIssuer,
1059 sizeof(CERT_NAME_BLOB));
1060 memcpy(&id.u.IssuerSerialNumber.SerialNumber,
1061 &info->CertSerialNumber, sizeof(CRYPT_INTEGER_BLOB));
1062 ret = compare_cert_by_cert_id(pCertContext, dwType, dwFlags,
1065 else if (info->KeyId.cbData)
1067 id.dwIdChoice = CERT_ID_KEY_IDENTIFIER;
1068 memcpy(&id.u.KeyId, &info->KeyId, sizeof(CRYPT_HASH_BLOB));
1069 ret = compare_cert_by_cert_id(pCertContext, dwType, dwFlags,
1077 else if ((ext = CertFindExtension(szOID_AUTHORITY_KEY_IDENTIFIER2,
1078 subject->pCertInfo->cExtension, subject->pCertInfo->rgExtension)))
1080 CERT_AUTHORITY_KEY_ID2_INFO *info;
1082 ret = CryptDecodeObjectEx(subject->dwCertEncodingType,
1083 X509_AUTHORITY_KEY_ID2, ext->Value.pbData, ext->Value.cbData,
1084 CRYPT_DECODE_ALLOC_FLAG | CRYPT_DECODE_NOCOPY_FLAG, NULL,
1090 if (info->AuthorityCertIssuer.cAltEntry &&
1091 info->AuthorityCertSerialNumber.cbData)
1093 PCERT_ALT_NAME_ENTRY directoryName = NULL;
1096 for (i = 0; !directoryName &&
1097 i < info->AuthorityCertIssuer.cAltEntry; i++)
1098 if (info->AuthorityCertIssuer.rgAltEntry[i].dwAltNameChoice
1099 == CERT_ALT_NAME_DIRECTORY_NAME)
1101 &info->AuthorityCertIssuer.rgAltEntry[i];
1104 id.dwIdChoice = CERT_ID_ISSUER_SERIAL_NUMBER;
1105 memcpy(&id.u.IssuerSerialNumber.Issuer,
1106 &directoryName->u.DirectoryName, sizeof(CERT_NAME_BLOB));
1107 memcpy(&id.u.IssuerSerialNumber.SerialNumber,
1108 &info->AuthorityCertSerialNumber,
1109 sizeof(CRYPT_INTEGER_BLOB));
1110 ret = compare_cert_by_cert_id(pCertContext, dwType, dwFlags,
1115 FIXME("no supported name type in authority key id2\n");
1119 else if (info->KeyId.cbData)
1121 id.dwIdChoice = CERT_ID_KEY_IDENTIFIER;
1122 memcpy(&id.u.KeyId, &info->KeyId, sizeof(CRYPT_HASH_BLOB));
1123 ret = compare_cert_by_cert_id(pCertContext, dwType, dwFlags,
1132 ret = compare_cert_by_name(pCertContext,
1133 CERT_COMPARE_NAME | CERT_COMPARE_SUBJECT_CERT, dwFlags,
1134 &subject->pCertInfo->Issuer);
1138 static BOOL compare_existing_cert(PCCERT_CONTEXT pCertContext, DWORD dwType,
1139 DWORD dwFlags, const void *pvPara)
1141 PCCERT_CONTEXT toCompare = (PCCERT_CONTEXT)pvPara;
1142 return CertCompareCertificate(pCertContext->dwCertEncodingType,
1143 pCertContext->pCertInfo, toCompare->pCertInfo);
1146 static BOOL compare_cert_by_signature_hash(PCCERT_CONTEXT pCertContext, DWORD dwType,
1147 DWORD dwFlags, const void *pvPara)
1149 const CRYPT_HASH_BLOB *hash = (const CRYPT_HASH_BLOB *)pvPara;
1153 ret = CertGetCertificateContextProperty(pCertContext,
1154 CERT_SIGNATURE_HASH_PROP_ID, NULL, &size);
1155 if (ret && size == hash->cbData)
1157 LPBYTE buf = CryptMemAlloc(size);
1161 CertGetCertificateContextProperty(pCertContext,
1162 CERT_SIGNATURE_HASH_PROP_ID, buf, &size);
1163 ret = !memcmp(buf, hash->pbData, size);
1172 PCCERT_CONTEXT WINAPI CertFindCertificateInStore(HCERTSTORE hCertStore,
1173 DWORD dwCertEncodingType, DWORD dwFlags, DWORD dwType, const void *pvPara,
1174 PCCERT_CONTEXT pPrevCertContext)
1177 CertCompareFunc compare;
1179 TRACE("(%p, %08x, %08x, %08x, %p, %p)\n", hCertStore, dwCertEncodingType,
1180 dwFlags, dwType, pvPara, pPrevCertContext);
1182 switch (dwType >> CERT_COMPARE_SHIFT)
1184 case CERT_COMPARE_ANY:
1185 compare = compare_cert_any;
1187 case CERT_COMPARE_MD5_HASH:
1188 compare = compare_cert_by_md5_hash;
1190 case CERT_COMPARE_SHA1_HASH:
1191 compare = compare_cert_by_sha1_hash;
1193 case CERT_COMPARE_NAME:
1194 compare = compare_cert_by_name;
1196 case CERT_COMPARE_SUBJECT_CERT:
1197 compare = compare_cert_by_subject_cert;
1199 case CERT_COMPARE_CERT_ID:
1200 compare = compare_cert_by_cert_id;
1202 case CERT_COMPARE_ISSUER_OF:
1203 compare = compare_cert_by_issuer;
1205 case CERT_COMPARE_EXISTING:
1206 compare = compare_existing_cert;
1208 case CERT_COMPARE_SIGNATURE_HASH:
1209 compare = compare_cert_by_signature_hash;
1212 FIXME("find type %08x unimplemented\n", dwType);
1218 BOOL matches = FALSE;
1220 ret = pPrevCertContext;
1222 ret = CertEnumCertificatesInStore(hCertStore, ret);
1224 matches = compare(ret, dwType, dwFlags, pvPara);
1225 } while (ret != NULL && !matches);
1227 SetLastError(CRYPT_E_NOT_FOUND);
1231 SetLastError(CRYPT_E_NOT_FOUND);
1234 TRACE("returning %p\n", ret);
1238 PCCERT_CONTEXT WINAPI CertGetSubjectCertificateFromStore(HCERTSTORE hCertStore,
1239 DWORD dwCertEncodingType, PCERT_INFO pCertId)
1241 TRACE("(%p, %08x, %p)\n", hCertStore, dwCertEncodingType, pCertId);
1245 SetLastError(E_INVALIDARG);
1248 return CertFindCertificateInStore(hCertStore, dwCertEncodingType, 0,
1249 CERT_FIND_SUBJECT_CERT, pCertId, NULL);
1252 BOOL WINAPI CertVerifySubjectCertificateContext(PCCERT_CONTEXT pSubject,
1253 PCCERT_CONTEXT pIssuer, DWORD *pdwFlags)
1255 static const DWORD supportedFlags = CERT_STORE_REVOCATION_FLAG |
1256 CERT_STORE_SIGNATURE_FLAG | CERT_STORE_TIME_VALIDITY_FLAG;
1258 if (*pdwFlags & ~supportedFlags)
1260 SetLastError(E_INVALIDARG);
1263 if (*pdwFlags & CERT_STORE_REVOCATION_FLAG)
1266 PCCRL_CONTEXT crl = CertGetCRLFromStore(pSubject->hCertStore, pSubject,
1269 /* FIXME: what if the CRL has expired? */
1272 if (CertVerifyCRLRevocation(pSubject->dwCertEncodingType,
1273 pSubject->pCertInfo, 1, (PCRL_INFO *)&crl->pCrlInfo))
1274 *pdwFlags &= CERT_STORE_REVOCATION_FLAG;
1277 *pdwFlags |= CERT_STORE_NO_CRL_FLAG;
1279 if (*pdwFlags & CERT_STORE_TIME_VALIDITY_FLAG)
1281 if (0 == CertVerifyTimeValidity(NULL, pSubject->pCertInfo))
1282 *pdwFlags &= ~CERT_STORE_TIME_VALIDITY_FLAG;
1284 if (*pdwFlags & CERT_STORE_SIGNATURE_FLAG)
1286 if (CryptVerifyCertificateSignatureEx(0, pSubject->dwCertEncodingType,
1287 CRYPT_VERIFY_CERT_SIGN_SUBJECT_CERT, (void *)pSubject,
1288 CRYPT_VERIFY_CERT_SIGN_ISSUER_CERT, (void *)pIssuer, 0, NULL))
1289 *pdwFlags &= ~CERT_STORE_SIGNATURE_FLAG;
1294 PCCERT_CONTEXT WINAPI CertGetIssuerCertificateFromStore(HCERTSTORE hCertStore,
1295 PCCERT_CONTEXT pSubjectContext, PCCERT_CONTEXT pPrevIssuerContext,
1300 TRACE("(%p, %p, %p, %08x)\n", hCertStore, pSubjectContext,
1301 pPrevIssuerContext, *pdwFlags);
1303 if (!pSubjectContext)
1305 SetLastError(E_INVALIDARG);
1309 ret = CertFindCertificateInStore(hCertStore,
1310 pSubjectContext->dwCertEncodingType, 0, CERT_FIND_ISSUER_OF,
1311 pSubjectContext, pPrevIssuerContext);
1314 if (!CertVerifySubjectCertificateContext(pSubjectContext, ret,
1317 CertFreeCertificateContext(ret);
1321 TRACE("returning %p\n", ret);
1325 typedef struct _OLD_CERT_REVOCATION_STATUS {
1330 } OLD_CERT_REVOCATION_STATUS, *POLD_CERT_REVOCATION_STATUS;
1332 typedef BOOL (WINAPI *CertVerifyRevocationFunc)(DWORD, DWORD, DWORD,
1333 void **, DWORD, PCERT_REVOCATION_PARA, PCERT_REVOCATION_STATUS);
1335 BOOL WINAPI CertVerifyRevocation(DWORD dwEncodingType, DWORD dwRevType,
1336 DWORD cContext, PVOID rgpvContext[], DWORD dwFlags,
1337 PCERT_REVOCATION_PARA pRevPara, PCERT_REVOCATION_STATUS pRevStatus)
1341 TRACE("(%08x, %d, %d, %p, %08x, %p, %p)\n", dwEncodingType, dwRevType,
1342 cContext, rgpvContext, dwFlags, pRevPara, pRevStatus);
1344 if (pRevStatus->cbSize != sizeof(OLD_CERT_REVOCATION_STATUS) &&
1345 pRevStatus->cbSize != sizeof(CERT_REVOCATION_STATUS))
1347 SetLastError(E_INVALIDARG);
1352 static HCRYPTOIDFUNCSET set = NULL;
1356 set = CryptInitOIDFunctionSet(CRYPT_OID_VERIFY_REVOCATION_FUNC, 0);
1357 ret = CryptGetDefaultOIDDllList(set, dwEncodingType, NULL, &size);
1363 SetLastError(CRYPT_E_NO_REVOCATION_DLL);
1368 LPWSTR dllList = CryptMemAlloc(size * sizeof(WCHAR)), ptr;
1372 ret = CryptGetDefaultOIDDllList(set, dwEncodingType,
1376 for (ptr = dllList; ret && *ptr;
1377 ptr += lstrlenW(ptr) + 1)
1379 CertVerifyRevocationFunc func;
1380 HCRYPTOIDFUNCADDR hFunc;
1382 ret = CryptGetDefaultOIDFunctionAddress(set,
1383 dwEncodingType, ptr, 0, (void **)&func, &hFunc);
1386 ret = func(dwEncodingType, dwRevType, cContext,
1387 rgpvContext, dwFlags, pRevPara, pRevStatus);
1388 CryptFreeOIDFunctionAddress(hFunc, 0);
1392 CryptMemFree(dllList);
1396 SetLastError(ERROR_OUTOFMEMORY);
1407 PCRYPT_ATTRIBUTE WINAPI CertFindAttribute(LPCSTR pszObjId, DWORD cAttr,
1408 CRYPT_ATTRIBUTE rgAttr[])
1410 PCRYPT_ATTRIBUTE ret = NULL;
1413 TRACE("%s %d %p\n", debugstr_a(pszObjId), cAttr, rgAttr);
1419 SetLastError(ERROR_INVALID_PARAMETER);
1423 for (i = 0; !ret && i < cAttr; i++)
1424 if (rgAttr[i].pszObjId && !strcmp(pszObjId, rgAttr[i].pszObjId))
1429 PCERT_EXTENSION WINAPI CertFindExtension(LPCSTR pszObjId, DWORD cExtensions,
1430 CERT_EXTENSION rgExtensions[])
1432 PCERT_EXTENSION ret = NULL;
1435 TRACE("%s %d %p\n", debugstr_a(pszObjId), cExtensions, rgExtensions);
1441 SetLastError(ERROR_INVALID_PARAMETER);
1445 for (i = 0; !ret && i < cExtensions; i++)
1446 if (rgExtensions[i].pszObjId && !strcmp(pszObjId,
1447 rgExtensions[i].pszObjId))
1448 ret = &rgExtensions[i];
1452 PCERT_RDN_ATTR WINAPI CertFindRDNAttr(LPCSTR pszObjId, PCERT_NAME_INFO pName)
1454 PCERT_RDN_ATTR ret = NULL;
1457 TRACE("%s %p\n", debugstr_a(pszObjId), pName);
1461 SetLastError(ERROR_INVALID_PARAMETER);
1465 for (i = 0; !ret && i < pName->cRDN; i++)
1466 for (j = 0; !ret && j < pName->rgRDN[i].cRDNAttr; j++)
1467 if (pName->rgRDN[i].rgRDNAttr[j].pszObjId && !strcmp(pszObjId,
1468 pName->rgRDN[i].rgRDNAttr[j].pszObjId))
1469 ret = &pName->rgRDN[i].rgRDNAttr[j];
1473 LONG WINAPI CertVerifyTimeValidity(LPFILETIME pTimeToVerify,
1474 PCERT_INFO pCertInfo)
1481 GetSystemTimeAsFileTime(&fileTime);
1482 pTimeToVerify = &fileTime;
1484 if ((ret = CompareFileTime(pTimeToVerify, &pCertInfo->NotBefore)) >= 0)
1486 ret = CompareFileTime(pTimeToVerify, &pCertInfo->NotAfter);
1493 BOOL WINAPI CertVerifyValidityNesting(PCERT_INFO pSubjectInfo,
1494 PCERT_INFO pIssuerInfo)
1496 TRACE("(%p, %p)\n", pSubjectInfo, pIssuerInfo);
1498 return CertVerifyTimeValidity(&pSubjectInfo->NotBefore, pIssuerInfo) == 0
1499 && CertVerifyTimeValidity(&pSubjectInfo->NotAfter, pIssuerInfo) == 0;
1502 BOOL WINAPI CryptHashCertificate(HCRYPTPROV_LEGACY hCryptProv, ALG_ID Algid,
1503 DWORD dwFlags, const BYTE *pbEncoded, DWORD cbEncoded, BYTE *pbComputedHash,
1504 DWORD *pcbComputedHash)
1507 HCRYPTHASH hHash = 0;
1509 TRACE("(%08lx, %d, %08x, %p, %d, %p, %p)\n", hCryptProv, Algid, dwFlags,
1510 pbEncoded, cbEncoded, pbComputedHash, pcbComputedHash);
1513 hCryptProv = CRYPT_GetDefaultProvider();
1518 ret = CryptCreateHash(hCryptProv, Algid, 0, 0, &hHash);
1521 ret = CryptHashData(hHash, pbEncoded, cbEncoded, 0);
1523 ret = CryptGetHashParam(hHash, HP_HASHVAL, pbComputedHash,
1524 pcbComputedHash, 0);
1525 CryptDestroyHash(hHash);
1531 BOOL WINAPI CryptHashPublicKeyInfo(HCRYPTPROV_LEGACY hCryptProv, ALG_ID Algid,
1532 DWORD dwFlags, DWORD dwCertEncodingType, PCERT_PUBLIC_KEY_INFO pInfo,
1533 BYTE *pbComputedHash, DWORD *pcbComputedHash)
1536 HCRYPTHASH hHash = 0;
1538 TRACE("(%08lx, %d, %08x, %d, %p, %p, %p)\n", hCryptProv, Algid, dwFlags,
1539 dwCertEncodingType, pInfo, pbComputedHash, pcbComputedHash);
1542 hCryptProv = CRYPT_GetDefaultProvider();
1550 ret = CryptEncodeObjectEx(dwCertEncodingType, X509_PUBLIC_KEY_INFO,
1551 pInfo, CRYPT_ENCODE_ALLOC_FLAG, NULL, &buf, &size);
1554 ret = CryptCreateHash(hCryptProv, Algid, 0, 0, &hHash);
1557 ret = CryptHashData(hHash, buf, size, 0);
1559 ret = CryptGetHashParam(hHash, HP_HASHVAL, pbComputedHash,
1560 pcbComputedHash, 0);
1561 CryptDestroyHash(hHash);
1569 BOOL WINAPI CryptHashToBeSigned(HCRYPTPROV_LEGACY hCryptProv,
1570 DWORD dwCertEncodingType, const BYTE *pbEncoded, DWORD cbEncoded,
1571 BYTE *pbComputedHash, DWORD *pcbComputedHash)
1574 CERT_SIGNED_CONTENT_INFO *info;
1577 TRACE("(%08lx, %08x, %p, %d, %p, %d)\n", hCryptProv, dwCertEncodingType,
1578 pbEncoded, cbEncoded, pbComputedHash, *pcbComputedHash);
1580 ret = CryptDecodeObjectEx(dwCertEncodingType, X509_CERT,
1581 pbEncoded, cbEncoded, CRYPT_DECODE_ALLOC_FLAG, NULL, (void *)&info, &size);
1584 PCCRYPT_OID_INFO oidInfo;
1588 hCryptProv = CRYPT_GetDefaultProvider();
1589 oidInfo = CryptFindOIDInfo(CRYPT_OID_INFO_OID_KEY,
1590 info->SignatureAlgorithm.pszObjId, 0);
1593 SetLastError(NTE_BAD_ALGID);
1598 ret = CryptCreateHash(hCryptProv, oidInfo->u.Algid, 0, 0, &hHash);
1601 ret = CryptHashData(hHash, info->ToBeSigned.pbData,
1602 info->ToBeSigned.cbData, 0);
1604 ret = CryptGetHashParam(hHash, HP_HASHVAL, pbComputedHash,
1605 pcbComputedHash, 0);
1606 CryptDestroyHash(hHash);
1614 BOOL WINAPI CryptSignCertificate(HCRYPTPROV_OR_NCRYPT_KEY_HANDLE hCryptProv,
1615 DWORD dwKeySpec, DWORD dwCertEncodingType, const BYTE *pbEncodedToBeSigned,
1616 DWORD cbEncodedToBeSigned, PCRYPT_ALGORITHM_IDENTIFIER pSignatureAlgorithm,
1617 const void *pvHashAuxInfo, BYTE *pbSignature, DWORD *pcbSignature)
1620 PCCRYPT_OID_INFO info;
1623 TRACE("(%08lx, %d, %d, %p, %d, %p, %p, %p, %p)\n", hCryptProv,
1624 dwKeySpec, dwCertEncodingType, pbEncodedToBeSigned, cbEncodedToBeSigned,
1625 pSignatureAlgorithm, pvHashAuxInfo, pbSignature, pcbSignature);
1627 info = CryptFindOIDInfo(CRYPT_OID_INFO_OID_KEY,
1628 pSignatureAlgorithm->pszObjId, 0);
1631 SetLastError(NTE_BAD_ALGID);
1634 if (info->dwGroupId == CRYPT_HASH_ALG_OID_GROUP_ID)
1637 hCryptProv = CRYPT_GetDefaultProvider();
1638 ret = CryptCreateHash(hCryptProv, info->u.Algid, 0, 0, &hHash);
1641 ret = CryptHashData(hHash, pbEncodedToBeSigned,
1642 cbEncodedToBeSigned, 0);
1644 ret = CryptGetHashParam(hHash, HP_HASHVAL, pbSignature,
1646 CryptDestroyHash(hHash);
1653 SetLastError(ERROR_INVALID_PARAMETER);
1658 ret = CryptCreateHash(hCryptProv, info->u.Algid, 0, 0, &hHash);
1661 ret = CryptHashData(hHash, pbEncodedToBeSigned,
1662 cbEncodedToBeSigned, 0);
1664 ret = CryptSignHashW(hHash, dwKeySpec, NULL, 0, pbSignature,
1666 CryptDestroyHash(hHash);
1673 BOOL WINAPI CryptSignAndEncodeCertificate(HCRYPTPROV_OR_NCRYPT_KEY_HANDLE hCryptProv,
1674 DWORD dwKeySpec, DWORD dwCertEncodingType, LPCSTR lpszStructType,
1675 const void *pvStructInfo, PCRYPT_ALGORITHM_IDENTIFIER pSignatureAlgorithm,
1676 const void *pvHashAuxInfo, BYTE *pbEncoded, DWORD *pcbEncoded)
1679 DWORD encodedSize, hashSize;
1681 TRACE("(%08lx, %d, %d, %s, %p, %p, %p, %p, %p)\n", hCryptProv, dwKeySpec,
1682 dwCertEncodingType, debugstr_a(lpszStructType), pvStructInfo,
1683 pSignatureAlgorithm, pvHashAuxInfo, pbEncoded, pcbEncoded);
1685 ret = CryptEncodeObject(dwCertEncodingType, lpszStructType, pvStructInfo,
1686 NULL, &encodedSize);
1689 PBYTE encoded = CryptMemAlloc(encodedSize);
1693 ret = CryptEncodeObject(dwCertEncodingType, lpszStructType,
1694 pvStructInfo, encoded, &encodedSize);
1697 ret = CryptSignCertificate(hCryptProv, dwKeySpec,
1698 dwCertEncodingType, encoded, encodedSize, pSignatureAlgorithm,
1699 pvHashAuxInfo, NULL, &hashSize);
1702 PBYTE hash = CryptMemAlloc(hashSize);
1706 ret = CryptSignCertificate(hCryptProv, dwKeySpec,
1707 dwCertEncodingType, encoded, encodedSize,
1708 pSignatureAlgorithm, pvHashAuxInfo, hash, &hashSize);
1711 CERT_SIGNED_CONTENT_INFO info = { { 0 } };
1713 info.ToBeSigned.cbData = encodedSize;
1714 info.ToBeSigned.pbData = encoded;
1715 memcpy(&info.SignatureAlgorithm,
1716 pSignatureAlgorithm,
1717 sizeof(info.SignatureAlgorithm));
1718 info.Signature.cbData = hashSize;
1719 info.Signature.pbData = hash;
1720 info.Signature.cUnusedBits = 0;
1721 ret = CryptEncodeObject(dwCertEncodingType,
1722 X509_CERT, &info, pbEncoded, pcbEncoded);
1728 CryptMemFree(encoded);
1734 BOOL WINAPI CryptVerifyCertificateSignature(HCRYPTPROV_LEGACY hCryptProv,
1735 DWORD dwCertEncodingType, const BYTE *pbEncoded, DWORD cbEncoded,
1736 PCERT_PUBLIC_KEY_INFO pPublicKey)
1738 return CryptVerifyCertificateSignatureEx(hCryptProv, dwCertEncodingType,
1739 CRYPT_VERIFY_CERT_SIGN_SUBJECT_BLOB, (void *)pbEncoded,
1740 CRYPT_VERIFY_CERT_SIGN_ISSUER_PUBKEY, pPublicKey, 0, NULL);
1743 static BOOL CRYPT_VerifyCertSignatureFromPublicKeyInfo(HCRYPTPROV_LEGACY hCryptProv,
1744 DWORD dwCertEncodingType, PCERT_PUBLIC_KEY_INFO pubKeyInfo,
1745 const CERT_SIGNED_CONTENT_INFO *signedCert)
1749 PCCRYPT_OID_INFO info;
1750 ALG_ID pubKeyID, hashID;
1752 info = CryptFindOIDInfo(CRYPT_OID_INFO_OID_KEY,
1753 signedCert->SignatureAlgorithm.pszObjId, 0);
1754 if (!info || info->dwGroupId != CRYPT_SIGN_ALG_OID_GROUP_ID)
1756 SetLastError(NTE_BAD_ALGID);
1759 hashID = info->u.Algid;
1760 if (info->ExtraInfo.cbData >= sizeof(ALG_ID))
1761 pubKeyID = *(ALG_ID *)info->ExtraInfo.pbData;
1764 /* Load the default provider if necessary */
1766 hCryptProv = CRYPT_GetDefaultProvider();
1767 ret = CryptImportPublicKeyInfoEx(hCryptProv, dwCertEncodingType,
1768 pubKeyInfo, pubKeyID, 0, NULL, &key);
1773 ret = CryptCreateHash(hCryptProv, hashID, 0, 0, &hash);
1776 ret = CryptHashData(hash, signedCert->ToBeSigned.pbData,
1777 signedCert->ToBeSigned.cbData, 0);
1779 ret = CryptVerifySignatureW(hash, signedCert->Signature.pbData,
1780 signedCert->Signature.cbData, key, NULL, 0);
1781 CryptDestroyHash(hash);
1783 CryptDestroyKey(key);
1788 BOOL WINAPI CryptVerifyCertificateSignatureEx(HCRYPTPROV_LEGACY hCryptProv,
1789 DWORD dwCertEncodingType, DWORD dwSubjectType, void *pvSubject,
1790 DWORD dwIssuerType, void *pvIssuer, DWORD dwFlags, void *pvReserved)
1793 CRYPT_DATA_BLOB subjectBlob;
1795 TRACE("(%08lx, %d, %d, %p, %d, %p, %08x, %p)\n", hCryptProv,
1796 dwCertEncodingType, dwSubjectType, pvSubject, dwIssuerType, pvIssuer,
1797 dwFlags, pvReserved);
1799 switch (dwSubjectType)
1801 case CRYPT_VERIFY_CERT_SIGN_SUBJECT_BLOB:
1803 PCRYPT_DATA_BLOB blob = (PCRYPT_DATA_BLOB)pvSubject;
1805 subjectBlob.pbData = blob->pbData;
1806 subjectBlob.cbData = blob->cbData;
1809 case CRYPT_VERIFY_CERT_SIGN_SUBJECT_CERT:
1811 PCERT_CONTEXT context = (PCERT_CONTEXT)pvSubject;
1813 subjectBlob.pbData = context->pbCertEncoded;
1814 subjectBlob.cbData = context->cbCertEncoded;
1817 case CRYPT_VERIFY_CERT_SIGN_SUBJECT_CRL:
1819 PCRL_CONTEXT context = (PCRL_CONTEXT)pvSubject;
1821 subjectBlob.pbData = context->pbCrlEncoded;
1822 subjectBlob.cbData = context->cbCrlEncoded;
1826 SetLastError(E_INVALIDARG);
1832 PCERT_SIGNED_CONTENT_INFO signedCert = NULL;
1835 ret = CryptDecodeObjectEx(dwCertEncodingType, X509_CERT,
1836 subjectBlob.pbData, subjectBlob.cbData,
1837 CRYPT_DECODE_ALLOC_FLAG | CRYPT_DECODE_NOCOPY_FLAG, NULL,
1838 (BYTE *)&signedCert, &size);
1841 switch (dwIssuerType)
1843 case CRYPT_VERIFY_CERT_SIGN_ISSUER_PUBKEY:
1844 ret = CRYPT_VerifyCertSignatureFromPublicKeyInfo(hCryptProv,
1845 dwCertEncodingType, (PCERT_PUBLIC_KEY_INFO)pvIssuer,
1848 case CRYPT_VERIFY_CERT_SIGN_ISSUER_CERT:
1849 ret = CRYPT_VerifyCertSignatureFromPublicKeyInfo(hCryptProv,
1851 &((PCCERT_CONTEXT)pvIssuer)->pCertInfo->SubjectPublicKeyInfo,
1854 case CRYPT_VERIFY_CERT_SIGN_ISSUER_CHAIN:
1855 FIXME("CRYPT_VERIFY_CERT_SIGN_ISSUER_CHAIN: stub\n");
1858 case CRYPT_VERIFY_CERT_SIGN_ISSUER_NULL:
1861 SetLastError(E_INVALIDARG);
1866 FIXME("unimplemented for NULL signer\n");
1867 SetLastError(E_INVALIDARG);
1872 SetLastError(E_INVALIDARG);
1875 LocalFree(signedCert);
1881 BOOL WINAPI CertGetEnhancedKeyUsage(PCCERT_CONTEXT pCertContext, DWORD dwFlags,
1882 PCERT_ENHKEY_USAGE pUsage, DWORD *pcbUsage)
1884 PCERT_ENHKEY_USAGE usage = NULL;
1888 if (!pCertContext || !pcbUsage)
1890 SetLastError(ERROR_INVALID_PARAMETER);
1894 TRACE("(%p, %08x, %p, %d)\n", pCertContext, dwFlags, pUsage, *pcbUsage);
1896 if (!(dwFlags & CERT_FIND_EXT_ONLY_ENHKEY_USAGE_FLAG))
1900 if (CertGetCertificateContextProperty(pCertContext,
1901 CERT_ENHKEY_USAGE_PROP_ID, NULL, &propSize))
1903 LPBYTE buf = CryptMemAlloc(propSize);
1907 if (CertGetCertificateContextProperty(pCertContext,
1908 CERT_ENHKEY_USAGE_PROP_ID, buf, &propSize))
1910 ret = CryptDecodeObjectEx(pCertContext->dwCertEncodingType,
1911 X509_ENHANCED_KEY_USAGE, buf, propSize,
1912 CRYPT_ENCODE_ALLOC_FLAG, NULL, &usage, &bytesNeeded);
1918 if (!usage && !(dwFlags & CERT_FIND_PROP_ONLY_ENHKEY_USAGE_FLAG))
1920 PCERT_EXTENSION ext = CertFindExtension(szOID_ENHANCED_KEY_USAGE,
1921 pCertContext->pCertInfo->cExtension,
1922 pCertContext->pCertInfo->rgExtension);
1926 ret = CryptDecodeObjectEx(pCertContext->dwCertEncodingType,
1927 X509_ENHANCED_KEY_USAGE, ext->Value.pbData, ext->Value.cbData,
1928 CRYPT_ENCODE_ALLOC_FLAG, NULL, &usage, &bytesNeeded);
1933 /* If a particular location is specified, this should fail. Otherwise
1934 * it should succeed with an empty usage. (This is true on Win2k and
1935 * later, which we emulate.)
1939 SetLastError(CRYPT_E_NOT_FOUND);
1943 bytesNeeded = sizeof(CERT_ENHKEY_USAGE);
1949 *pcbUsage = bytesNeeded;
1950 else if (*pcbUsage < bytesNeeded)
1952 SetLastError(ERROR_MORE_DATA);
1953 *pcbUsage = bytesNeeded;
1958 *pcbUsage = bytesNeeded;
1962 LPSTR nextOID = (LPSTR)((LPBYTE)pUsage +
1963 sizeof(CERT_ENHKEY_USAGE) +
1964 usage->cUsageIdentifier * sizeof(LPSTR));
1966 pUsage->cUsageIdentifier = usage->cUsageIdentifier;
1967 pUsage->rgpszUsageIdentifier = (LPSTR *)((LPBYTE)pUsage +
1968 sizeof(CERT_ENHKEY_USAGE));
1969 for (i = 0; i < usage->cUsageIdentifier; i++)
1971 pUsage->rgpszUsageIdentifier[i] = nextOID;
1972 strcpy(nextOID, usage->rgpszUsageIdentifier[i]);
1973 nextOID += strlen(nextOID) + 1;
1977 pUsage->cUsageIdentifier = 0;
1982 TRACE("returning %d\n", ret);
1986 BOOL WINAPI CertSetEnhancedKeyUsage(PCCERT_CONTEXT pCertContext,
1987 PCERT_ENHKEY_USAGE pUsage)
1991 TRACE("(%p, %p)\n", pCertContext, pUsage);
1995 CRYPT_DATA_BLOB blob = { 0, NULL };
1997 ret = CryptEncodeObjectEx(X509_ASN_ENCODING, X509_ENHANCED_KEY_USAGE,
1998 pUsage, CRYPT_ENCODE_ALLOC_FLAG, NULL, &blob.pbData, &blob.cbData);
2001 ret = CertSetCertificateContextProperty(pCertContext,
2002 CERT_ENHKEY_USAGE_PROP_ID, 0, &blob);
2003 LocalFree(blob.pbData);
2007 ret = CertSetCertificateContextProperty(pCertContext,
2008 CERT_ENHKEY_USAGE_PROP_ID, 0, NULL);
2012 BOOL WINAPI CertAddEnhancedKeyUsageIdentifier(PCCERT_CONTEXT pCertContext,
2013 LPCSTR pszUsageIdentifier)
2018 TRACE("(%p, %s)\n", pCertContext, debugstr_a(pszUsageIdentifier));
2020 if (CertGetEnhancedKeyUsage(pCertContext,
2021 CERT_FIND_PROP_ONLY_ENHKEY_USAGE_FLAG, NULL, &size))
2023 PCERT_ENHKEY_USAGE usage = CryptMemAlloc(size);
2027 ret = CertGetEnhancedKeyUsage(pCertContext,
2028 CERT_FIND_PROP_ONLY_ENHKEY_USAGE_FLAG, usage, &size);
2032 BOOL exists = FALSE;
2034 /* Make sure usage doesn't already exist */
2035 for (i = 0; !exists && i < usage->cUsageIdentifier; i++)
2037 if (!strcmp(usage->rgpszUsageIdentifier[i],
2038 pszUsageIdentifier))
2043 PCERT_ENHKEY_USAGE newUsage = CryptMemAlloc(size +
2044 sizeof(LPSTR) + strlen(pszUsageIdentifier) + 1);
2050 newUsage->rgpszUsageIdentifier = (LPSTR *)
2051 ((LPBYTE)newUsage + sizeof(CERT_ENHKEY_USAGE));
2052 nextOID = (LPSTR)((LPBYTE)newUsage->rgpszUsageIdentifier
2053 + (usage->cUsageIdentifier + 1) * sizeof(LPSTR));
2054 for (i = 0; i < usage->cUsageIdentifier; i++)
2056 newUsage->rgpszUsageIdentifier[i] = nextOID;
2057 strcpy(nextOID, usage->rgpszUsageIdentifier[i]);
2058 nextOID += strlen(nextOID) + 1;
2060 newUsage->rgpszUsageIdentifier[i] = nextOID;
2061 strcpy(nextOID, pszUsageIdentifier);
2062 newUsage->cUsageIdentifier = i + 1;
2063 ret = CertSetEnhancedKeyUsage(pCertContext, newUsage);
2064 CryptMemFree(newUsage);
2070 CryptMemFree(usage);
2077 PCERT_ENHKEY_USAGE usage = CryptMemAlloc(sizeof(CERT_ENHKEY_USAGE) +
2078 sizeof(LPSTR) + strlen(pszUsageIdentifier) + 1);
2082 usage->rgpszUsageIdentifier =
2083 (LPSTR *)((LPBYTE)usage + sizeof(CERT_ENHKEY_USAGE));
2084 usage->rgpszUsageIdentifier[0] = (LPSTR)((LPBYTE)usage +
2085 sizeof(CERT_ENHKEY_USAGE) + sizeof(LPSTR));
2086 strcpy(usage->rgpszUsageIdentifier[0], pszUsageIdentifier);
2087 usage->cUsageIdentifier = 1;
2088 ret = CertSetEnhancedKeyUsage(pCertContext, usage);
2089 CryptMemFree(usage);
2097 BOOL WINAPI CertRemoveEnhancedKeyUsageIdentifier(PCCERT_CONTEXT pCertContext,
2098 LPCSTR pszUsageIdentifier)
2102 CERT_ENHKEY_USAGE usage;
2104 TRACE("(%p, %s)\n", pCertContext, debugstr_a(pszUsageIdentifier));
2106 size = sizeof(usage);
2107 ret = CertGetEnhancedKeyUsage(pCertContext,
2108 CERT_FIND_PROP_ONLY_ENHKEY_USAGE_FLAG, &usage, &size);
2109 if (!ret && GetLastError() == ERROR_MORE_DATA)
2111 PCERT_ENHKEY_USAGE pUsage = CryptMemAlloc(size);
2115 ret = CertGetEnhancedKeyUsage(pCertContext,
2116 CERT_FIND_PROP_ONLY_ENHKEY_USAGE_FLAG, pUsage, &size);
2119 if (pUsage->cUsageIdentifier)
2124 for (i = 0; i < pUsage->cUsageIdentifier; i++)
2126 if (!strcmp(pUsage->rgpszUsageIdentifier[i],
2127 pszUsageIdentifier))
2129 if (found && i < pUsage->cUsageIdentifier - 1)
2130 pUsage->rgpszUsageIdentifier[i] =
2131 pUsage->rgpszUsageIdentifier[i + 1];
2133 pUsage->cUsageIdentifier--;
2134 /* Remove the usage if it's empty */
2135 if (pUsage->cUsageIdentifier)
2136 ret = CertSetEnhancedKeyUsage(pCertContext, pUsage);
2138 ret = CertSetEnhancedKeyUsage(pCertContext, NULL);
2141 CryptMemFree(pUsage);
2148 /* it fit in an empty usage, therefore there's nothing to remove */
2160 #define BITS_PER_DWORD (sizeof(DWORD) * 8)
2162 static void CRYPT_SetBitInField(struct BitField *field, DWORD bit)
2164 DWORD indexIndex = bit / BITS_PER_DWORD;
2166 if (indexIndex + 1 > field->cIndexes)
2168 if (field->cIndexes)
2169 field->indexes = CryptMemRealloc(field->indexes,
2170 (indexIndex + 1) * sizeof(DWORD));
2172 field->indexes = CryptMemAlloc(sizeof(DWORD));
2175 field->indexes[indexIndex] = 0;
2176 field->cIndexes = indexIndex + 1;
2180 field->indexes[indexIndex] |= 1 << (bit % BITS_PER_DWORD);
2183 static BOOL CRYPT_IsBitInFieldSet(struct BitField *field, DWORD bit)
2186 DWORD indexIndex = bit / BITS_PER_DWORD;
2188 assert(field->cIndexes);
2189 set = field->indexes[indexIndex] & (1 << (bit % BITS_PER_DWORD));
2193 BOOL WINAPI CertGetValidUsages(DWORD cCerts, PCCERT_CONTEXT *rghCerts,
2194 int *cNumOIDs, LPSTR *rghOIDs, DWORD *pcbOIDs)
2197 DWORD i, cbOIDs = 0;
2198 BOOL allUsagesValid = TRUE;
2199 CERT_ENHKEY_USAGE validUsages = { 0, NULL };
2201 TRACE("(%d, %p, %d, %p, %d)\n", cCerts, rghCerts, *cNumOIDs,
2204 for (i = 0; i < cCerts; i++)
2206 CERT_ENHKEY_USAGE usage;
2207 DWORD size = sizeof(usage);
2209 ret = CertGetEnhancedKeyUsage(rghCerts[i], 0, &usage, &size);
2210 /* Success is deliberately ignored: it implies all usages are valid */
2211 if (!ret && GetLastError() == ERROR_MORE_DATA)
2213 PCERT_ENHKEY_USAGE pUsage = CryptMemAlloc(size);
2215 allUsagesValid = FALSE;
2218 ret = CertGetEnhancedKeyUsage(rghCerts[i], 0, pUsage, &size);
2221 if (!validUsages.cUsageIdentifier)
2225 cbOIDs = pUsage->cUsageIdentifier * sizeof(LPSTR);
2226 validUsages.cUsageIdentifier = pUsage->cUsageIdentifier;
2227 for (j = 0; j < validUsages.cUsageIdentifier; j++)
2228 cbOIDs += lstrlenA(pUsage->rgpszUsageIdentifier[j])
2230 validUsages.rgpszUsageIdentifier =
2231 CryptMemAlloc(cbOIDs);
2232 if (validUsages.rgpszUsageIdentifier)
2234 LPSTR nextOID = (LPSTR)
2235 ((LPBYTE)validUsages.rgpszUsageIdentifier +
2236 validUsages.cUsageIdentifier * sizeof(LPSTR));
2238 for (j = 0; j < validUsages.cUsageIdentifier; j++)
2240 validUsages.rgpszUsageIdentifier[j] = nextOID;
2241 lstrcpyA(validUsages.rgpszUsageIdentifier[j],
2242 pUsage->rgpszUsageIdentifier[j]);
2243 nextOID += lstrlenA(nextOID) + 1;
2249 struct BitField validIndexes = { 0, NULL };
2250 DWORD j, k, numRemoved = 0;
2252 /* Merge: build a bitmap of all the indexes of
2253 * validUsages.rgpszUsageIdentifier that are in pUsage.
2255 for (j = 0; j < pUsage->cUsageIdentifier; j++)
2257 for (k = 0; k < validUsages.cUsageIdentifier; k++)
2259 if (!strcmp(pUsage->rgpszUsageIdentifier[j],
2260 validUsages.rgpszUsageIdentifier[k]))
2262 CRYPT_SetBitInField(&validIndexes, k);
2267 /* Merge by removing from validUsages those that are
2268 * not in the bitmap.
2270 for (j = 0; j < validUsages.cUsageIdentifier; j++)
2272 if (!CRYPT_IsBitInFieldSet(&validIndexes, j))
2274 if (j < validUsages.cUsageIdentifier - 1)
2276 memmove(&validUsages.rgpszUsageIdentifier[j],
2277 &validUsages.rgpszUsageIdentifier[j +
2279 (validUsages.cUsageIdentifier - numRemoved
2280 - j - 1) * sizeof(LPSTR));
2282 validUsages.rgpszUsageIdentifier[j]) + 1 +
2284 validUsages.cUsageIdentifier--;
2288 validUsages.cUsageIdentifier--;
2291 CryptMemFree(validIndexes.indexes);
2294 CryptMemFree(pUsage);
2306 *cNumOIDs = validUsages.cUsageIdentifier;
2309 else if (*pcbOIDs < cbOIDs)
2312 SetLastError(ERROR_MORE_DATA);
2317 LPSTR nextOID = (LPSTR)((LPBYTE)rghOIDs +
2318 validUsages.cUsageIdentifier * sizeof(LPSTR));
2321 for (i = 0; i < validUsages.cUsageIdentifier; i++)
2323 rghOIDs[i] = nextOID;
2324 lstrcpyA(nextOID, validUsages.rgpszUsageIdentifier[i]);
2325 nextOID += lstrlenA(nextOID) + 1;
2329 CryptMemFree(validUsages.rgpszUsageIdentifier);
2330 TRACE("cNumOIDs: %d\n", *cNumOIDs);
2331 TRACE("returning %d\n", ret);
2335 /* Sets the CERT_KEY_PROV_INFO_PROP_ID property of context from pInfo, or, if
2336 * pInfo is NULL, from the attributes of hProv.
2338 static void CertContext_SetKeyProvInfo(PCCERT_CONTEXT context,
2339 const CRYPT_KEY_PROV_INFO *pInfo, HCRYPTPROV hProv)
2341 CRYPT_KEY_PROV_INFO info = { 0 };
2349 ret = CryptGetProvParam(hProv, PP_CONTAINER, NULL, &size, 0);
2352 LPSTR szContainer = CryptMemAlloc(size);
2356 ret = CryptGetProvParam(hProv, PP_CONTAINER,
2357 (BYTE *)szContainer, &size, 0);
2360 len = MultiByteToWideChar(CP_ACP, 0, szContainer, -1,
2364 info.pwszContainerName = CryptMemAlloc(len *
2366 len = MultiByteToWideChar(CP_ACP, 0, szContainer, -1,
2367 info.pwszContainerName, len);
2370 CryptMemFree(szContainer);
2373 ret = CryptGetProvParam(hProv, PP_NAME, NULL, &size, 0);
2376 LPSTR szProvider = CryptMemAlloc(size);
2380 ret = CryptGetProvParam(hProv, PP_NAME, (BYTE *)szProvider,
2384 len = MultiByteToWideChar(CP_ACP, 0, szProvider, -1,
2388 info.pwszProvName = CryptMemAlloc(len *
2390 len = MultiByteToWideChar(CP_ACP, 0, szProvider, -1,
2391 info.pwszProvName, len);
2394 CryptMemFree(szProvider);
2397 size = sizeof(info.dwKeySpec);
2398 /* in case no CRYPT_KEY_PROV_INFO given,
2399 * we always use AT_SIGNATURE key spec
2401 info.dwKeySpec = AT_SIGNATURE;
2402 size = sizeof(info.dwProvType);
2403 ret = CryptGetProvParam(hProv, PP_PROVTYPE, (LPBYTE)&info.dwProvType,
2406 info.dwProvType = PROV_RSA_FULL;
2410 ret = CertSetCertificateContextProperty(context, CERT_KEY_PROV_INFO_PROP_ID,
2415 CryptMemFree(info.pwszContainerName);
2416 CryptMemFree(info.pwszProvName);
2420 /* Creates a signed certificate context from the unsigned, encoded certificate
2421 * in blob, using the crypto provider hProv and the signature algorithm sigAlgo.
2423 static PCCERT_CONTEXT CRYPT_CreateSignedCert(const CRYPT_DER_BLOB *blob,
2424 HCRYPTPROV hProv, DWORD dwKeySpec, PCRYPT_ALGORITHM_IDENTIFIER sigAlgo)
2426 PCCERT_CONTEXT context = NULL;
2430 ret = CryptSignCertificate(hProv, dwKeySpec, X509_ASN_ENCODING,
2431 blob->pbData, blob->cbData, sigAlgo, NULL, NULL, &sigSize);
2434 LPBYTE sig = CryptMemAlloc(sigSize);
2436 ret = CryptSignCertificate(hProv, dwKeySpec, X509_ASN_ENCODING,
2437 blob->pbData, blob->cbData, sigAlgo, NULL, sig, &sigSize);
2440 CERT_SIGNED_CONTENT_INFO signedInfo;
2441 BYTE *encodedSignedCert = NULL;
2442 DWORD encodedSignedCertSize = 0;
2444 signedInfo.ToBeSigned.cbData = blob->cbData;
2445 signedInfo.ToBeSigned.pbData = blob->pbData;
2446 memcpy(&signedInfo.SignatureAlgorithm, sigAlgo,
2447 sizeof(signedInfo.SignatureAlgorithm));
2448 signedInfo.Signature.cbData = sigSize;
2449 signedInfo.Signature.pbData = sig;
2450 signedInfo.Signature.cUnusedBits = 0;
2451 ret = CryptEncodeObjectEx(X509_ASN_ENCODING, X509_CERT,
2452 &signedInfo, CRYPT_ENCODE_ALLOC_FLAG, NULL,
2453 (BYTE *)&encodedSignedCert, &encodedSignedCertSize);
2456 context = CertCreateCertificateContext(X509_ASN_ENCODING,
2457 encodedSignedCert, encodedSignedCertSize);
2458 LocalFree(encodedSignedCert);
2466 /* Copies data from the parameters into info, where:
2467 * pSerialNumber: The serial number. Must not be NULL.
2468 * pSubjectIssuerBlob: Specifies both the subject and issuer for info.
2470 * pSignatureAlgorithm: Optional.
2471 * pStartTime: The starting time of the certificate. If NULL, the current
2472 * system time is used.
2473 * pEndTime: The ending time of the certificate. If NULL, one year past the
2474 * starting time is used.
2475 * pubKey: The public key of the certificate. Must not be NULL.
2476 * pExtensions: Extensions to be included with the certificate. Optional.
2478 static void CRYPT_MakeCertInfo(PCERT_INFO info, const CRYPT_DATA_BLOB *pSerialNumber,
2479 const CERT_NAME_BLOB *pSubjectIssuerBlob,
2480 const CRYPT_ALGORITHM_IDENTIFIER *pSignatureAlgorithm, const SYSTEMTIME *pStartTime,
2481 const SYSTEMTIME *pEndTime, const CERT_PUBLIC_KEY_INFO *pubKey,
2482 const CERT_EXTENSIONS *pExtensions)
2484 static CHAR oid[] = szOID_RSA_SHA1RSA;
2487 assert(pSerialNumber);
2488 assert(pSubjectIssuerBlob);
2491 info->dwVersion = CERT_V3;
2492 info->SerialNumber.cbData = pSerialNumber->cbData;
2493 info->SerialNumber.pbData = pSerialNumber->pbData;
2494 if (pSignatureAlgorithm)
2495 memcpy(&info->SignatureAlgorithm, pSignatureAlgorithm,
2496 sizeof(info->SignatureAlgorithm));
2499 info->SignatureAlgorithm.pszObjId = oid;
2500 info->SignatureAlgorithm.Parameters.cbData = 0;
2501 info->SignatureAlgorithm.Parameters.pbData = NULL;
2503 info->Issuer.cbData = pSubjectIssuerBlob->cbData;
2504 info->Issuer.pbData = pSubjectIssuerBlob->pbData;
2506 SystemTimeToFileTime(pStartTime, &info->NotBefore);
2508 GetSystemTimeAsFileTime(&info->NotBefore);
2510 SystemTimeToFileTime(pEndTime, &info->NotAfter);
2515 if (FileTimeToSystemTime(&info->NotBefore, &endTime))
2518 SystemTimeToFileTime(&endTime, &info->NotAfter);
2521 info->Subject.cbData = pSubjectIssuerBlob->cbData;
2522 info->Subject.pbData = pSubjectIssuerBlob->pbData;
2523 memcpy(&info->SubjectPublicKeyInfo, pubKey,
2524 sizeof(info->SubjectPublicKeyInfo));
2527 info->cExtension = pExtensions->cExtension;
2528 info->rgExtension = pExtensions->rgExtension;
2532 info->cExtension = 0;
2533 info->rgExtension = NULL;
2537 typedef RPC_STATUS (RPC_ENTRY *UuidCreateFunc)(UUID *);
2538 typedef RPC_STATUS (RPC_ENTRY *UuidToStringFunc)(UUID *, unsigned char **);
2539 typedef RPC_STATUS (RPC_ENTRY *RpcStringFreeFunc)(unsigned char **);
2541 static HCRYPTPROV CRYPT_CreateKeyProv(void)
2543 HCRYPTPROV hProv = 0;
2544 HMODULE rpcrt = LoadLibraryA("rpcrt4");
2548 UuidCreateFunc uuidCreate = (UuidCreateFunc)GetProcAddress(rpcrt,
2550 UuidToStringFunc uuidToString = (UuidToStringFunc)GetProcAddress(rpcrt,
2552 RpcStringFreeFunc rpcStringFree = (RpcStringFreeFunc)GetProcAddress(
2553 rpcrt, "RpcStringFreeA");
2555 if (uuidCreate && uuidToString && rpcStringFree)
2558 RPC_STATUS status = uuidCreate(&uuid);
2560 if (status == RPC_S_OK || status == RPC_S_UUID_LOCAL_ONLY)
2562 unsigned char *uuidStr;
2564 status = uuidToString(&uuid, &uuidStr);
2565 if (status == RPC_S_OK)
2567 BOOL ret = CryptAcquireContextA(&hProv, (LPCSTR)uuidStr,
2568 MS_DEF_PROV_A, PROV_RSA_FULL, CRYPT_NEWKEYSET);
2574 ret = CryptGenKey(hProv, AT_SIGNATURE, 0, &key);
2576 CryptDestroyKey(key);
2578 rpcStringFree(&uuidStr);
2587 PCCERT_CONTEXT WINAPI CertCreateSelfSignCertificate(HCRYPTPROV_OR_NCRYPT_KEY_HANDLE hProv,
2588 PCERT_NAME_BLOB pSubjectIssuerBlob, DWORD dwFlags,
2589 PCRYPT_KEY_PROV_INFO pKeyProvInfo,
2590 PCRYPT_ALGORITHM_IDENTIFIER pSignatureAlgorithm, PSYSTEMTIME pStartTime,
2591 PSYSTEMTIME pEndTime, PCERT_EXTENSIONS pExtensions)
2593 PCCERT_CONTEXT context = NULL;
2594 BOOL ret, releaseContext = FALSE;
2595 PCERT_PUBLIC_KEY_INFO pubKey = NULL;
2596 DWORD pubKeySize = 0,dwKeySpec = AT_SIGNATURE;
2598 TRACE("(%08lx, %p, %08x, %p, %p, %p, %p, %p)\n", hProv,
2599 pSubjectIssuerBlob, dwFlags, pKeyProvInfo, pSignatureAlgorithm, pStartTime,
2600 pExtensions, pExtensions);
2602 if(!pSubjectIssuerBlob)
2604 SetLastError(ERROR_INVALID_PARAMETER);
2612 hProv = CRYPT_CreateKeyProv();
2613 releaseContext = TRUE;
2615 else if (pKeyProvInfo->dwFlags & CERT_SET_KEY_PROV_HANDLE_PROP_ID)
2617 SetLastError(NTE_BAD_FLAGS);
2623 /* acquire the context using the given information*/
2624 ret = CryptAcquireContextW(&hProv,pKeyProvInfo->pwszContainerName,
2625 pKeyProvInfo->pwszProvName,pKeyProvInfo->dwProvType,
2626 pKeyProvInfo->dwFlags);
2629 if(GetLastError() != NTE_BAD_KEYSET)
2631 /* create the key set */
2632 ret = CryptAcquireContextW(&hProv,pKeyProvInfo->pwszContainerName,
2633 pKeyProvInfo->pwszProvName,pKeyProvInfo->dwProvType,
2634 pKeyProvInfo->dwFlags|CRYPT_NEWKEYSET);
2638 dwKeySpec = pKeyProvInfo->dwKeySpec;
2639 /* check if the key is here */
2640 ret = CryptGetUserKey(hProv,dwKeySpec,&hKey);
2643 if (NTE_NO_KEY == GetLastError())
2644 { /* generate the key */
2645 ret = CryptGenKey(hProv,dwKeySpec,0,&hKey);
2649 CryptReleaseContext(hProv,0);
2650 SetLastError(NTE_BAD_KEYSET);
2654 CryptDestroyKey(hKey);
2655 releaseContext = TRUE;
2658 else if (pKeyProvInfo)
2660 SetLastError(ERROR_INVALID_PARAMETER);
2664 CryptExportPublicKeyInfo(hProv, dwKeySpec, X509_ASN_ENCODING, NULL,
2666 pubKey = CryptMemAlloc(pubKeySize);
2669 ret = CryptExportPublicKeyInfo(hProv, dwKeySpec, X509_ASN_ENCODING,
2670 pubKey, &pubKeySize);
2673 CERT_INFO info = { 0 };
2674 CRYPT_DER_BLOB blob = { 0, NULL };
2676 CRYPT_DATA_BLOB serialBlob = { sizeof(serial), serial };
2678 CryptGenRandom(hProv, sizeof(serial), serial);
2679 CRYPT_MakeCertInfo(&info, &serialBlob, pSubjectIssuerBlob,
2680 pSignatureAlgorithm, pStartTime, pEndTime, pubKey, pExtensions);
2681 ret = CryptEncodeObjectEx(X509_ASN_ENCODING, X509_CERT_TO_BE_SIGNED,
2682 &info, CRYPT_ENCODE_ALLOC_FLAG, NULL, (BYTE *)&blob.pbData,
2686 if (!(dwFlags & CERT_CREATE_SELFSIGN_NO_SIGN))
2687 context = CRYPT_CreateSignedCert(&blob, hProv,dwKeySpec,
2688 &info.SignatureAlgorithm);
2690 context = CertCreateCertificateContext(X509_ASN_ENCODING,
2691 blob.pbData, blob.cbData);
2692 if (context && !(dwFlags & CERT_CREATE_SELFSIGN_NO_KEY_INFO))
2693 CertContext_SetKeyProvInfo(context, pKeyProvInfo, hProv);
2694 LocalFree(blob.pbData);
2697 CryptMemFree(pubKey);
2700 CryptReleaseContext(hProv, 0);
2704 BOOL WINAPI CertVerifyCTLUsage(DWORD dwEncodingType, DWORD dwSubjectType,
2705 void *pvSubject, PCTL_USAGE pSubjectUsage, DWORD dwFlags,
2706 PCTL_VERIFY_USAGE_PARA pVerifyUsagePara,
2707 PCTL_VERIFY_USAGE_STATUS pVerifyUsageStatus)
2709 FIXME("(0x%x, %d, %p, %p, 0x%x, %p, %p): stub\n", dwEncodingType,
2710 dwSubjectType, pvSubject, pSubjectUsage, dwFlags, pVerifyUsagePara,
2711 pVerifyUsageStatus);
2712 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);