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 FIXME("CERT_SIGNATURE_HASH_PROP_ID unimplemented\n");
243 SetLastError(CRYPT_E_NOT_FOUND
);
245 case CERT_KEY_IDENTIFIER_PROP_ID
:
247 PCERT_EXTENSION ext
= CertFindExtension(
248 szOID_SUBJECT_KEY_IDENTIFIER
, pCertContext
->pCertInfo
->cExtension
,
249 pCertContext
->pCertInfo
->rgExtension
);
253 CRYPT_DATA_BLOB value
;
254 DWORD size
= sizeof(value
);
256 ret
= CryptDecodeObjectEx(X509_ASN_ENCODING
,
257 szOID_SUBJECT_KEY_IDENTIFIER
, ext
->Value
.pbData
,
258 ext
->Value
.cbData
, CRYPT_DECODE_NOCOPY_FLAG
, NULL
, &value
,
262 ret
= CertContext_CopyParam(pvData
, pcbData
, value
.pbData
,
264 CertContext_SetProperty(context
, dwPropId
, 0, &value
);
268 SetLastError(ERROR_INVALID_DATA
);
272 SetLastError(CRYPT_E_NOT_FOUND
);
275 TRACE("returning %d\n", ret
);
279 void CRYPT_FixKeyProvInfoPointers(PCRYPT_KEY_PROV_INFO info
)
281 DWORD i
, containerLen
, provNameLen
;
282 LPBYTE data
= (LPBYTE
)info
+ sizeof(CRYPT_KEY_PROV_INFO
);
284 info
->pwszContainerName
= (LPWSTR
)data
;
285 containerLen
= (lstrlenW(info
->pwszContainerName
) + 1) * sizeof(WCHAR
);
286 data
+= containerLen
;
288 info
->pwszProvName
= (LPWSTR
)data
;
289 provNameLen
= (lstrlenW(info
->pwszProvName
) + 1) * sizeof(WCHAR
);
292 info
->rgProvParam
= (PCRYPT_KEY_PROV_PARAM
)data
;
293 data
+= info
->cProvParam
* sizeof(CRYPT_KEY_PROV_PARAM
);
295 for (i
= 0; i
< info
->cProvParam
; i
++)
297 info
->rgProvParam
[i
].pbData
= data
;
298 data
+= info
->rgProvParam
[i
].cbData
;
302 BOOL WINAPI
CertGetCertificateContextProperty(PCCERT_CONTEXT pCertContext
,
303 DWORD dwPropId
, void *pvData
, DWORD
*pcbData
)
307 TRACE("(%p, %d, %p, %p)\n", pCertContext
, dwPropId
, pvData
, pcbData
);
312 case CERT_CERT_PROP_ID
:
313 case CERT_CRL_PROP_ID
:
314 case CERT_CTL_PROP_ID
:
315 SetLastError(E_INVALIDARG
);
318 case CERT_ACCESS_STATE_PROP_ID
:
319 if (pCertContext
->hCertStore
)
320 ret
= CertGetStoreProperty(pCertContext
->hCertStore
, dwPropId
,
326 ret
= CertContext_CopyParam(pvData
, pcbData
, &state
, sizeof(state
));
329 case CERT_KEY_PROV_HANDLE_PROP_ID
:
331 CERT_KEY_CONTEXT keyContext
;
332 DWORD size
= sizeof(keyContext
);
334 ret
= CertContext_GetProperty((void *)pCertContext
,
335 CERT_KEY_CONTEXT_PROP_ID
, &keyContext
, &size
);
337 ret
= CertContext_CopyParam(pvData
, pcbData
, &keyContext
.hCryptProv
,
338 sizeof(keyContext
.hCryptProv
));
341 case CERT_KEY_PROV_INFO_PROP_ID
:
342 ret
= CertContext_GetProperty((void *)pCertContext
, dwPropId
, pvData
,
345 CRYPT_FixKeyProvInfoPointers((PCRYPT_KEY_PROV_INFO
)pvData
);
348 ret
= CertContext_GetProperty((void *)pCertContext
, dwPropId
, pvData
,
352 TRACE("returning %d\n", ret
);
356 /* Copies key provider info from from into to, where to is assumed to be a
357 * contiguous buffer of memory large enough for from and all its associated
358 * data, but whose pointers are uninitialized.
359 * Upon return, to contains a contiguous copy of from, packed in the following
361 * - CRYPT_KEY_PROV_INFO
362 * - pwszContainerName
364 * - rgProvParam[0]...
366 static void CRYPT_CopyKeyProvInfo(PCRYPT_KEY_PROV_INFO to
,
367 const CRYPT_KEY_PROV_INFO
*from
)
370 LPBYTE nextData
= (LPBYTE
)to
+ sizeof(CRYPT_KEY_PROV_INFO
);
372 if (from
->pwszContainerName
)
374 to
->pwszContainerName
= (LPWSTR
)nextData
;
375 lstrcpyW(to
->pwszContainerName
, from
->pwszContainerName
);
376 nextData
+= (lstrlenW(from
->pwszContainerName
) + 1) * sizeof(WCHAR
);
379 to
->pwszContainerName
= NULL
;
380 if (from
->pwszProvName
)
382 to
->pwszProvName
= (LPWSTR
)nextData
;
383 lstrcpyW(to
->pwszProvName
, from
->pwszProvName
);
384 nextData
+= (lstrlenW(from
->pwszProvName
) + 1) * sizeof(WCHAR
);
387 to
->pwszProvName
= NULL
;
388 to
->dwProvType
= from
->dwProvType
;
389 to
->dwFlags
= from
->dwFlags
;
390 to
->cProvParam
= from
->cProvParam
;
391 to
->rgProvParam
= (PCRYPT_KEY_PROV_PARAM
)nextData
;
392 nextData
+= to
->cProvParam
* sizeof(CRYPT_KEY_PROV_PARAM
);
393 to
->dwKeySpec
= from
->dwKeySpec
;
394 for (i
= 0; i
< to
->cProvParam
; i
++)
396 memcpy(&to
->rgProvParam
[i
], &from
->rgProvParam
[i
],
397 sizeof(CRYPT_KEY_PROV_PARAM
));
398 to
->rgProvParam
[i
].pbData
= nextData
;
399 memcpy(to
->rgProvParam
[i
].pbData
, from
->rgProvParam
[i
].pbData
,
400 from
->rgProvParam
[i
].cbData
);
401 nextData
+= from
->rgProvParam
[i
].cbData
;
405 static BOOL
CertContext_SetKeyProvInfoProperty(PCONTEXT_PROPERTY_LIST properties
,
406 const CRYPT_KEY_PROV_INFO
*info
)
410 DWORD size
= sizeof(CRYPT_KEY_PROV_INFO
), i
, containerSize
, provNameSize
;
412 if (info
->pwszContainerName
)
413 containerSize
= (lstrlenW(info
->pwszContainerName
) + 1) * sizeof(WCHAR
);
416 if (info
->pwszProvName
)
417 provNameSize
= (lstrlenW(info
->pwszProvName
) + 1) * sizeof(WCHAR
);
420 size
+= containerSize
+ provNameSize
;
421 for (i
= 0; i
< info
->cProvParam
; i
++)
422 size
+= sizeof(CRYPT_KEY_PROV_PARAM
) + info
->rgProvParam
[i
].cbData
;
423 buf
= CryptMemAlloc(size
);
426 CRYPT_CopyKeyProvInfo((PCRYPT_KEY_PROV_INFO
)buf
, info
);
427 ret
= ContextPropertyList_SetProperty(properties
,
428 CERT_KEY_PROV_INFO_PROP_ID
, buf
, size
);
436 static BOOL WINAPI
CertContext_SetProperty(void *context
, DWORD dwPropId
,
437 DWORD dwFlags
, const void *pvData
)
439 PCONTEXT_PROPERTY_LIST properties
=
440 Context_GetProperties(context
, sizeof(CERT_CONTEXT
));
443 TRACE("(%p, %d, %08x, %p)\n", context
, dwPropId
, dwFlags
, pvData
);
451 case CERT_AUTO_ENROLL_PROP_ID
:
452 case CERT_CTL_USAGE_PROP_ID
: /* same as CERT_ENHKEY_USAGE_PROP_ID */
453 case CERT_DESCRIPTION_PROP_ID
:
454 case CERT_FRIENDLY_NAME_PROP_ID
:
455 case CERT_HASH_PROP_ID
:
456 case CERT_KEY_IDENTIFIER_PROP_ID
:
457 case CERT_MD5_HASH_PROP_ID
:
458 case CERT_NEXT_UPDATE_LOCATION_PROP_ID
:
459 case CERT_PUBKEY_ALG_PARA_PROP_ID
:
460 case CERT_PVK_FILE_PROP_ID
:
461 case CERT_SIGNATURE_HASH_PROP_ID
:
462 case CERT_ISSUER_PUBLIC_KEY_MD5_HASH_PROP_ID
:
463 case CERT_SUBJECT_NAME_MD5_HASH_PROP_ID
:
464 case CERT_SUBJECT_PUBLIC_KEY_MD5_HASH_PROP_ID
:
465 case CERT_ENROLLMENT_PROP_ID
:
466 case CERT_CROSS_CERT_DIST_POINTS_PROP_ID
:
467 case CERT_RENEWAL_PROP_ID
:
471 const CRYPT_DATA_BLOB
*blob
= (const CRYPT_DATA_BLOB
*)pvData
;
473 ret
= ContextPropertyList_SetProperty(properties
, dwPropId
,
474 blob
->pbData
, blob
->cbData
);
478 ContextPropertyList_RemoveProperty(properties
, dwPropId
);
483 case CERT_DATE_STAMP_PROP_ID
:
485 ret
= ContextPropertyList_SetProperty(properties
, dwPropId
,
486 (const BYTE
*)pvData
, sizeof(FILETIME
));
489 ContextPropertyList_RemoveProperty(properties
, dwPropId
);
493 case CERT_KEY_CONTEXT_PROP_ID
:
497 const CERT_KEY_CONTEXT
*keyContext
= (const CERT_KEY_CONTEXT
*)pvData
;
499 if (keyContext
->cbSize
!= sizeof(CERT_KEY_CONTEXT
))
501 SetLastError(E_INVALIDARG
);
505 ret
= ContextPropertyList_SetProperty(properties
, dwPropId
,
506 (const BYTE
*)keyContext
, keyContext
->cbSize
);
510 ContextPropertyList_RemoveProperty(properties
, dwPropId
);
515 case CERT_KEY_PROV_INFO_PROP_ID
:
517 ret
= CertContext_SetKeyProvInfoProperty(properties
,
518 (const CRYPT_KEY_PROV_INFO
*)pvData
);
521 ContextPropertyList_RemoveProperty(properties
, dwPropId
);
525 case CERT_KEY_PROV_HANDLE_PROP_ID
:
527 CERT_KEY_CONTEXT keyContext
;
528 DWORD size
= sizeof(keyContext
);
530 ret
= CertContext_GetProperty(context
, CERT_KEY_CONTEXT_PROP_ID
,
534 if (!(dwFlags
& CERT_STORE_NO_CRYPT_RELEASE_FLAG
))
535 CryptReleaseContext(keyContext
.hCryptProv
, 0);
537 keyContext
.hCryptProv
= *(const HCRYPTPROV
*)pvData
;
539 keyContext
.hCryptProv
= 0;
540 ret
= CertContext_SetProperty(context
, CERT_KEY_CONTEXT_PROP_ID
,
546 FIXME("%d: stub\n", dwPropId
);
550 TRACE("returning %d\n", ret
);
554 BOOL WINAPI
CertSetCertificateContextProperty(PCCERT_CONTEXT pCertContext
,
555 DWORD dwPropId
, DWORD dwFlags
, const void *pvData
)
559 TRACE("(%p, %d, %08x, %p)\n", pCertContext
, dwPropId
, dwFlags
, pvData
);
561 /* Handle special cases for "read-only"/invalid prop IDs. Windows just
562 * crashes on most of these, I'll be safer.
567 case CERT_ACCESS_STATE_PROP_ID
:
568 case CERT_CERT_PROP_ID
:
569 case CERT_CRL_PROP_ID
:
570 case CERT_CTL_PROP_ID
:
571 SetLastError(E_INVALIDARG
);
574 ret
= CertContext_SetProperty((void *)pCertContext
, dwPropId
, dwFlags
,
576 TRACE("returning %d\n", ret
);
580 /* Acquires the private key using the key provider info, retrieving info from
581 * the certificate if info is NULL. The acquired provider is returned in
582 * *phCryptProv, and the key spec for the provider is returned in *pdwKeySpec.
584 static BOOL
CRYPT_AcquirePrivateKeyFromProvInfo(PCCERT_CONTEXT pCert
,
585 PCRYPT_KEY_PROV_INFO info
, HCRYPTPROV
*phCryptProv
, DWORD
*pdwKeySpec
)
588 BOOL allocated
= FALSE
, ret
= TRUE
;
592 ret
= CertGetCertificateContextProperty(pCert
,
593 CERT_KEY_PROV_INFO_PROP_ID
, 0, &size
);
596 info
= (PCRYPT_KEY_PROV_INFO
)HeapAlloc(GetProcessHeap(), 0, size
);
599 ret
= CertGetCertificateContextProperty(pCert
,
600 CERT_KEY_PROV_INFO_PROP_ID
, info
, &size
);
605 SetLastError(CRYPT_E_NO_KEY_PROPERTY
);
609 ret
= CryptAcquireContextW(phCryptProv
, info
->pwszContainerName
,
610 info
->pwszProvName
, info
->dwProvType
, 0);
615 for (i
= 0; i
< info
->cProvParam
; i
++)
617 CryptSetProvParam(*phCryptProv
,
618 info
->rgProvParam
[i
].dwParam
, info
->rgProvParam
[i
].pbData
,
619 info
->rgProvParam
[i
].dwFlags
);
621 *pdwKeySpec
= info
->dwKeySpec
;
624 SetLastError(CRYPT_E_NO_KEY_PROPERTY
);
627 HeapFree(GetProcessHeap(), 0, info
);
631 BOOL WINAPI
CryptAcquireCertificatePrivateKey(PCCERT_CONTEXT pCert
,
632 DWORD dwFlags
, void *pvReserved
, HCRYPTPROV_OR_NCRYPT_KEY_HANDLE
*phCryptProv
,
633 DWORD
*pdwKeySpec
, BOOL
*pfCallerFreeProv
)
635 BOOL ret
= FALSE
, cache
= FALSE
;
636 PCRYPT_KEY_PROV_INFO info
= NULL
;
637 CERT_KEY_CONTEXT keyContext
;
640 TRACE("(%p, %08x, %p, %p, %p, %p)\n", pCert
, dwFlags
, pvReserved
,
641 phCryptProv
, pdwKeySpec
, pfCallerFreeProv
);
643 if (dwFlags
& CRYPT_ACQUIRE_USE_PROV_INFO_FLAG
)
647 ret
= CertGetCertificateContextProperty(pCert
,
648 CERT_KEY_PROV_INFO_PROP_ID
, 0, &size
);
651 info
= (PCRYPT_KEY_PROV_INFO
)HeapAlloc(
652 GetProcessHeap(), 0, size
);
653 ret
= CertGetCertificateContextProperty(pCert
,
654 CERT_KEY_PROV_INFO_PROP_ID
, info
, &size
);
656 cache
= info
->dwFlags
& CERT_SET_KEY_CONTEXT_PROP_ID
;
659 else if (dwFlags
& CRYPT_ACQUIRE_CACHE_FLAG
)
664 size
= sizeof(keyContext
);
665 ret
= CertGetCertificateContextProperty(pCert
, CERT_KEY_CONTEXT_PROP_ID
,
669 *phCryptProv
= keyContext
.hCryptProv
;
671 *pdwKeySpec
= keyContext
.dwKeySpec
;
672 if (pfCallerFreeProv
)
673 *pfCallerFreeProv
= !cache
;
678 ret
= CRYPT_AcquirePrivateKeyFromProvInfo(pCert
, info
,
679 &keyContext
.hCryptProv
, &keyContext
.dwKeySpec
);
682 *phCryptProv
= keyContext
.hCryptProv
;
684 *pdwKeySpec
= keyContext
.dwKeySpec
;
687 keyContext
.cbSize
= sizeof(keyContext
);
688 if (CertSetCertificateContextProperty(pCert
,
689 CERT_KEY_CONTEXT_PROP_ID
, 0, &keyContext
))
691 if (pfCallerFreeProv
)
692 *pfCallerFreeProv
= FALSE
;
697 if (pfCallerFreeProv
)
698 *pfCallerFreeProv
= TRUE
;
702 HeapFree(GetProcessHeap(), 0, info
);
706 BOOL WINAPI
CertCompareCertificate(DWORD dwCertEncodingType
,
707 PCERT_INFO pCertId1
, PCERT_INFO pCertId2
)
711 TRACE("(%08x, %p, %p)\n", dwCertEncodingType
, pCertId1
, pCertId2
);
713 ret
= CertCompareCertificateName(dwCertEncodingType
, &pCertId1
->Issuer
,
714 &pCertId2
->Issuer
) && CertCompareIntegerBlob(&pCertId1
->SerialNumber
,
715 &pCertId2
->SerialNumber
);
716 TRACE("returning %d\n", ret
);
720 BOOL WINAPI
CertCompareCertificateName(DWORD dwCertEncodingType
,
721 PCERT_NAME_BLOB pCertName1
, PCERT_NAME_BLOB pCertName2
)
725 TRACE("(%08x, %p, %p)\n", dwCertEncodingType
, pCertName1
, pCertName2
);
727 if (pCertName1
->cbData
== pCertName2
->cbData
)
729 if (pCertName1
->cbData
)
730 ret
= !memcmp(pCertName1
->pbData
, pCertName2
->pbData
,
737 TRACE("returning %d\n", ret
);
741 /* Returns the number of significant bytes in pInt, where a byte is
742 * insignificant if it's a leading 0 for positive numbers or a leading 0xff
743 * for negative numbers. pInt is assumed to be little-endian.
745 static DWORD
CRYPT_significantBytes(const CRYPT_INTEGER_BLOB
*pInt
)
747 DWORD ret
= pInt
->cbData
;
751 if (pInt
->pbData
[ret
- 2] <= 0x7f && pInt
->pbData
[ret
- 1] == 0)
753 else if (pInt
->pbData
[ret
- 2] >= 0x80 && pInt
->pbData
[ret
- 1] == 0xff)
761 BOOL WINAPI
CertCompareIntegerBlob(PCRYPT_INTEGER_BLOB pInt1
,
762 PCRYPT_INTEGER_BLOB pInt2
)
767 TRACE("(%p, %p)\n", pInt1
, pInt2
);
769 cb1
= CRYPT_significantBytes(pInt1
);
770 cb2
= CRYPT_significantBytes(pInt2
);
774 ret
= !memcmp(pInt1
->pbData
, pInt2
->pbData
, cb1
);
780 TRACE("returning %d\n", ret
);
784 BOOL WINAPI
CertComparePublicKeyInfo(DWORD dwCertEncodingType
,
785 PCERT_PUBLIC_KEY_INFO pPublicKey1
, PCERT_PUBLIC_KEY_INFO pPublicKey2
)
789 TRACE("(%08x, %p, %p)\n", dwCertEncodingType
, pPublicKey1
, pPublicKey2
);
791 if (pPublicKey1
->PublicKey
.cbData
== pPublicKey2
->PublicKey
.cbData
&&
792 pPublicKey1
->PublicKey
.cUnusedBits
== pPublicKey2
->PublicKey
.cUnusedBits
)
794 if (pPublicKey2
->PublicKey
.cbData
)
795 ret
= !memcmp(pPublicKey1
->PublicKey
.pbData
,
796 pPublicKey2
->PublicKey
.pbData
, pPublicKey1
->PublicKey
.cbData
);
805 DWORD WINAPI
CertGetPublicKeyLength(DWORD dwCertEncodingType
,
806 PCERT_PUBLIC_KEY_INFO pPublicKey
)
810 TRACE("(%08x, %p)\n", dwCertEncodingType
, pPublicKey
);
812 if (dwCertEncodingType
!= X509_ASN_ENCODING
)
814 SetLastError(ERROR_FILE_NOT_FOUND
);
817 if (pPublicKey
->Algorithm
.pszObjId
&&
818 !strcmp(pPublicKey
->Algorithm
.pszObjId
, szOID_RSA_DH
))
820 FIXME("unimplemented for DH public keys\n");
821 SetLastError(CRYPT_E_ASN1_BADTAG
);
827 BOOL ret
= CryptDecodeObjectEx(dwCertEncodingType
,
828 RSA_CSP_PUBLICKEYBLOB
, pPublicKey
->PublicKey
.pbData
,
829 pPublicKey
->PublicKey
.cbData
, CRYPT_DECODE_ALLOC_FLAG
, NULL
, &buf
,
834 RSAPUBKEY
*rsaPubKey
= (RSAPUBKEY
*)(buf
+ sizeof(BLOBHEADER
));
836 len
= rsaPubKey
->bitlen
;
843 typedef BOOL (*CertCompareFunc
)(PCCERT_CONTEXT pCertContext
, DWORD dwType
,
844 DWORD dwFlags
, const void *pvPara
);
846 static BOOL
compare_cert_any(PCCERT_CONTEXT pCertContext
, DWORD dwType
,
847 DWORD dwFlags
, const void *pvPara
)
852 static BOOL
compare_cert_by_md5_hash(PCCERT_CONTEXT pCertContext
, DWORD dwType
,
853 DWORD dwFlags
, const void *pvPara
)
857 DWORD size
= sizeof(hash
);
859 ret
= CertGetCertificateContextProperty(pCertContext
,
860 CERT_MD5_HASH_PROP_ID
, hash
, &size
);
863 const CRYPT_HASH_BLOB
*pHash
= (const CRYPT_HASH_BLOB
*)pvPara
;
865 if (size
== pHash
->cbData
)
866 ret
= !memcmp(pHash
->pbData
, hash
, size
);
873 static BOOL
compare_cert_by_sha1_hash(PCCERT_CONTEXT pCertContext
, DWORD dwType
,
874 DWORD dwFlags
, const void *pvPara
)
878 DWORD size
= sizeof(hash
);
880 ret
= CertGetCertificateContextProperty(pCertContext
,
881 CERT_SHA1_HASH_PROP_ID
, hash
, &size
);
884 const CRYPT_HASH_BLOB
*pHash
= (const CRYPT_HASH_BLOB
*)pvPara
;
886 if (size
== pHash
->cbData
)
887 ret
= !memcmp(pHash
->pbData
, hash
, size
);
894 static BOOL
compare_cert_by_name(PCCERT_CONTEXT pCertContext
, DWORD dwType
,
895 DWORD dwFlags
, const void *pvPara
)
897 CERT_NAME_BLOB
*blob
= (CERT_NAME_BLOB
*)pvPara
, *toCompare
;
900 if (dwType
& CERT_INFO_SUBJECT_FLAG
)
901 toCompare
= &pCertContext
->pCertInfo
->Subject
;
903 toCompare
= &pCertContext
->pCertInfo
->Issuer
;
904 ret
= CertCompareCertificateName(pCertContext
->dwCertEncodingType
,
909 static BOOL
compare_cert_by_subject_cert(PCCERT_CONTEXT pCertContext
,
910 DWORD dwType
, DWORD dwFlags
, const void *pvPara
)
912 CERT_INFO
*pCertInfo
= (CERT_INFO
*)pvPara
;
915 /* Matching serial number and subject match.. */
916 ret
= CertCompareCertificateName(pCertContext
->dwCertEncodingType
,
917 &pCertInfo
->Issuer
, &pCertContext
->pCertInfo
->Subject
);
919 ret
= CertCompareIntegerBlob(&pCertContext
->pCertInfo
->SerialNumber
,
920 &pCertInfo
->SerialNumber
);
923 /* failing that, if the serial number and issuer match, we match */
924 ret
= CertCompareIntegerBlob(&pCertContext
->pCertInfo
->SerialNumber
,
925 &pCertInfo
->SerialNumber
);
927 ret
= CertCompareCertificateName(pCertContext
->dwCertEncodingType
,
928 &pCertInfo
->Issuer
, &pCertContext
->pCertInfo
->Issuer
);
930 TRACE("returning %d\n", ret
);
934 static BOOL
compare_cert_by_cert_id(PCCERT_CONTEXT pCertContext
, DWORD dwType
,
935 DWORD dwFlags
, const void *pvPara
)
937 CERT_ID
*id
= (CERT_ID
*)pvPara
;
940 switch (id
->dwIdChoice
)
942 case CERT_ID_ISSUER_SERIAL_NUMBER
:
943 ret
= CertCompareCertificateName(pCertContext
->dwCertEncodingType
,
944 &pCertContext
->pCertInfo
->Issuer
, &id
->u
.IssuerSerialNumber
.Issuer
);
946 ret
= CertCompareIntegerBlob(&pCertContext
->pCertInfo
->SerialNumber
,
947 &id
->u
.IssuerSerialNumber
.SerialNumber
);
949 case CERT_ID_SHA1_HASH
:
950 ret
= compare_cert_by_sha1_hash(pCertContext
, dwType
, dwFlags
,
953 case CERT_ID_KEY_IDENTIFIER
:
957 ret
= CertGetCertificateContextProperty(pCertContext
,
958 CERT_KEY_IDENTIFIER_PROP_ID
, NULL
, &size
);
959 if (ret
&& size
== id
->u
.KeyId
.cbData
)
961 LPBYTE buf
= CryptMemAlloc(size
);
965 CertGetCertificateContextProperty(pCertContext
,
966 CERT_KEY_IDENTIFIER_PROP_ID
, buf
, &size
);
967 ret
= !memcmp(buf
, id
->u
.KeyId
.pbData
, size
);
982 static BOOL
compare_cert_by_issuer(PCCERT_CONTEXT pCertContext
, DWORD dwType
,
983 DWORD dwFlags
, const void *pvPara
)
986 PCCERT_CONTEXT subject
= (PCCERT_CONTEXT
)pvPara
;
990 if ((ext
= CertFindExtension(szOID_AUTHORITY_KEY_IDENTIFIER
,
991 subject
->pCertInfo
->cExtension
, subject
->pCertInfo
->rgExtension
)))
993 CERT_AUTHORITY_KEY_ID_INFO
*info
;
995 ret
= CryptDecodeObjectEx(subject
->dwCertEncodingType
,
996 X509_AUTHORITY_KEY_ID
, ext
->Value
.pbData
, ext
->Value
.cbData
,
997 CRYPT_DECODE_ALLOC_FLAG
| CRYPT_DECODE_NOCOPY_FLAG
, NULL
,
1003 if (info
->CertIssuer
.cbData
&& info
->CertSerialNumber
.cbData
)
1005 id
.dwIdChoice
= CERT_ID_ISSUER_SERIAL_NUMBER
;
1006 memcpy(&id
.u
.IssuerSerialNumber
.Issuer
, &info
->CertIssuer
,
1007 sizeof(CERT_NAME_BLOB
));
1008 memcpy(&id
.u
.IssuerSerialNumber
.SerialNumber
,
1009 &info
->CertSerialNumber
, sizeof(CRYPT_INTEGER_BLOB
));
1010 ret
= compare_cert_by_cert_id(pCertContext
, dwType
, dwFlags
,
1013 else if (info
->KeyId
.cbData
)
1015 id
.dwIdChoice
= CERT_ID_KEY_IDENTIFIER
;
1016 memcpy(&id
.u
.KeyId
, &info
->KeyId
, sizeof(CRYPT_HASH_BLOB
));
1017 ret
= compare_cert_by_cert_id(pCertContext
, dwType
, dwFlags
,
1025 else if ((ext
= CertFindExtension(szOID_AUTHORITY_KEY_IDENTIFIER2
,
1026 subject
->pCertInfo
->cExtension
, subject
->pCertInfo
->rgExtension
)))
1028 CERT_AUTHORITY_KEY_ID2_INFO
*info
;
1030 ret
= CryptDecodeObjectEx(subject
->dwCertEncodingType
,
1031 X509_AUTHORITY_KEY_ID2
, ext
->Value
.pbData
, ext
->Value
.cbData
,
1032 CRYPT_DECODE_ALLOC_FLAG
| CRYPT_DECODE_NOCOPY_FLAG
, NULL
,
1038 if (info
->AuthorityCertIssuer
.cAltEntry
&&
1039 info
->AuthorityCertSerialNumber
.cbData
)
1041 PCERT_ALT_NAME_ENTRY directoryName
= NULL
;
1044 for (i
= 0; !directoryName
&&
1045 i
< info
->AuthorityCertIssuer
.cAltEntry
; i
++)
1046 if (info
->AuthorityCertIssuer
.rgAltEntry
[i
].dwAltNameChoice
1047 == CERT_ALT_NAME_DIRECTORY_NAME
)
1049 &info
->AuthorityCertIssuer
.rgAltEntry
[i
];
1052 id
.dwIdChoice
= CERT_ID_ISSUER_SERIAL_NUMBER
;
1053 memcpy(&id
.u
.IssuerSerialNumber
.Issuer
,
1054 &directoryName
->u
.DirectoryName
, sizeof(CERT_NAME_BLOB
));
1055 memcpy(&id
.u
.IssuerSerialNumber
.SerialNumber
,
1056 &info
->AuthorityCertSerialNumber
,
1057 sizeof(CRYPT_INTEGER_BLOB
));
1058 ret
= compare_cert_by_cert_id(pCertContext
, dwType
, dwFlags
,
1063 FIXME("no supported name type in authority key id2\n");
1067 else if (info
->KeyId
.cbData
)
1069 id
.dwIdChoice
= CERT_ID_KEY_IDENTIFIER
;
1070 memcpy(&id
.u
.KeyId
, &info
->KeyId
, sizeof(CRYPT_HASH_BLOB
));
1071 ret
= compare_cert_by_cert_id(pCertContext
, dwType
, dwFlags
,
1080 ret
= compare_cert_by_name(pCertContext
,
1081 CERT_COMPARE_NAME
| CERT_COMPARE_SUBJECT_CERT
, dwFlags
,
1082 &subject
->pCertInfo
->Issuer
);
1086 static BOOL
compare_existing_cert(PCCERT_CONTEXT pCertContext
, DWORD dwType
,
1087 DWORD dwFlags
, const void *pvPara
)
1089 PCCERT_CONTEXT toCompare
= (PCCERT_CONTEXT
)pvPara
;
1090 return CertCompareCertificate(pCertContext
->dwCertEncodingType
,
1091 pCertContext
->pCertInfo
, toCompare
->pCertInfo
);
1094 PCCERT_CONTEXT WINAPI
CertFindCertificateInStore(HCERTSTORE hCertStore
,
1095 DWORD dwCertEncodingType
, DWORD dwFlags
, DWORD dwType
, const void *pvPara
,
1096 PCCERT_CONTEXT pPrevCertContext
)
1099 CertCompareFunc compare
;
1101 TRACE("(%p, %08x, %08x, %08x, %p, %p)\n", hCertStore
, dwCertEncodingType
,
1102 dwFlags
, dwType
, pvPara
, pPrevCertContext
);
1104 switch (dwType
>> CERT_COMPARE_SHIFT
)
1106 case CERT_COMPARE_ANY
:
1107 compare
= compare_cert_any
;
1109 case CERT_COMPARE_MD5_HASH
:
1110 compare
= compare_cert_by_md5_hash
;
1112 case CERT_COMPARE_SHA1_HASH
:
1113 compare
= compare_cert_by_sha1_hash
;
1115 case CERT_COMPARE_NAME
:
1116 compare
= compare_cert_by_name
;
1118 case CERT_COMPARE_SUBJECT_CERT
:
1119 compare
= compare_cert_by_subject_cert
;
1121 case CERT_COMPARE_CERT_ID
:
1122 compare
= compare_cert_by_cert_id
;
1124 case CERT_COMPARE_ISSUER_OF
:
1125 compare
= compare_cert_by_issuer
;
1127 case CERT_COMPARE_EXISTING
:
1128 compare
= compare_existing_cert
;
1131 FIXME("find type %08x unimplemented\n", dwType
);
1137 BOOL matches
= FALSE
;
1139 ret
= pPrevCertContext
;
1141 ret
= CertEnumCertificatesInStore(hCertStore
, ret
);
1143 matches
= compare(ret
, dwType
, dwFlags
, pvPara
);
1144 } while (ret
!= NULL
&& !matches
);
1146 SetLastError(CRYPT_E_NOT_FOUND
);
1150 SetLastError(CRYPT_E_NOT_FOUND
);
1153 TRACE("returning %p\n", ret
);
1157 PCCERT_CONTEXT WINAPI
CertGetSubjectCertificateFromStore(HCERTSTORE hCertStore
,
1158 DWORD dwCertEncodingType
, PCERT_INFO pCertId
)
1160 TRACE("(%p, %08x, %p)\n", hCertStore
, dwCertEncodingType
, pCertId
);
1164 SetLastError(E_INVALIDARG
);
1167 return CertFindCertificateInStore(hCertStore
, dwCertEncodingType
, 0,
1168 CERT_FIND_SUBJECT_CERT
, pCertId
, NULL
);
1171 BOOL WINAPI
CertVerifySubjectCertificateContext(PCCERT_CONTEXT pSubject
,
1172 PCCERT_CONTEXT pIssuer
, DWORD
*pdwFlags
)
1174 static const DWORD supportedFlags
= CERT_STORE_REVOCATION_FLAG
|
1175 CERT_STORE_SIGNATURE_FLAG
| CERT_STORE_TIME_VALIDITY_FLAG
;
1177 if (*pdwFlags
& ~supportedFlags
)
1179 SetLastError(E_INVALIDARG
);
1182 if (*pdwFlags
& CERT_STORE_REVOCATION_FLAG
)
1185 PCCRL_CONTEXT crl
= CertGetCRLFromStore(pSubject
->hCertStore
, pSubject
,
1188 /* FIXME: what if the CRL has expired? */
1191 if (CertVerifyCRLRevocation(pSubject
->dwCertEncodingType
,
1192 pSubject
->pCertInfo
, 1, (PCRL_INFO
*)&crl
->pCrlInfo
))
1193 *pdwFlags
&= CERT_STORE_REVOCATION_FLAG
;
1196 *pdwFlags
|= CERT_STORE_NO_CRL_FLAG
;
1198 if (*pdwFlags
& CERT_STORE_TIME_VALIDITY_FLAG
)
1200 if (0 == CertVerifyTimeValidity(NULL
, pSubject
->pCertInfo
))
1201 *pdwFlags
&= ~CERT_STORE_TIME_VALIDITY_FLAG
;
1203 if (*pdwFlags
& CERT_STORE_SIGNATURE_FLAG
)
1205 if (CryptVerifyCertificateSignatureEx(0, pSubject
->dwCertEncodingType
,
1206 CRYPT_VERIFY_CERT_SIGN_SUBJECT_CERT
, (void *)pSubject
,
1207 CRYPT_VERIFY_CERT_SIGN_ISSUER_CERT
, (void *)pIssuer
, 0, NULL
))
1208 *pdwFlags
&= ~CERT_STORE_SIGNATURE_FLAG
;
1213 PCCERT_CONTEXT WINAPI
CertGetIssuerCertificateFromStore(HCERTSTORE hCertStore
,
1214 PCCERT_CONTEXT pSubjectContext
, PCCERT_CONTEXT pPrevIssuerContext
,
1219 TRACE("(%p, %p, %p, %08x)\n", hCertStore
, pSubjectContext
,
1220 pPrevIssuerContext
, *pdwFlags
);
1222 if (!pSubjectContext
)
1224 SetLastError(E_INVALIDARG
);
1228 ret
= CertFindCertificateInStore(hCertStore
,
1229 pSubjectContext
->dwCertEncodingType
, 0, CERT_FIND_ISSUER_OF
,
1230 pSubjectContext
, pPrevIssuerContext
);
1233 if (!CertVerifySubjectCertificateContext(pSubjectContext
, ret
,
1236 CertFreeCertificateContext(ret
);
1240 TRACE("returning %p\n", ret
);
1244 typedef struct _OLD_CERT_REVOCATION_STATUS
{
1249 } OLD_CERT_REVOCATION_STATUS
, *POLD_CERT_REVOCATION_STATUS
;
1251 typedef BOOL (WINAPI
*CertVerifyRevocationFunc
)(DWORD
, DWORD
, DWORD
,
1252 void **, DWORD
, PCERT_REVOCATION_PARA
, PCERT_REVOCATION_STATUS
);
1254 BOOL WINAPI
CertVerifyRevocation(DWORD dwEncodingType
, DWORD dwRevType
,
1255 DWORD cContext
, PVOID rgpvContext
[], DWORD dwFlags
,
1256 PCERT_REVOCATION_PARA pRevPara
, PCERT_REVOCATION_STATUS pRevStatus
)
1260 TRACE("(%08x, %d, %d, %p, %08x, %p, %p)\n", dwEncodingType
, dwRevType
,
1261 cContext
, rgpvContext
, dwFlags
, pRevPara
, pRevStatus
);
1263 if (pRevStatus
->cbSize
!= sizeof(OLD_CERT_REVOCATION_STATUS
) &&
1264 pRevStatus
->cbSize
!= sizeof(CERT_REVOCATION_STATUS
))
1266 SetLastError(E_INVALIDARG
);
1271 static HCRYPTOIDFUNCSET set
= NULL
;
1275 set
= CryptInitOIDFunctionSet(CRYPT_OID_VERIFY_REVOCATION_FUNC
, 0);
1276 ret
= CryptGetDefaultOIDDllList(set
, dwEncodingType
, NULL
, &size
);
1282 SetLastError(CRYPT_E_NO_REVOCATION_DLL
);
1287 LPWSTR dllList
= CryptMemAlloc(size
* sizeof(WCHAR
)), ptr
;
1291 ret
= CryptGetDefaultOIDDllList(set
, dwEncodingType
,
1295 for (ptr
= dllList
; ret
&& *ptr
;
1296 ptr
+= lstrlenW(ptr
) + 1)
1298 CertVerifyRevocationFunc func
;
1299 HCRYPTOIDFUNCADDR hFunc
;
1301 ret
= CryptGetDefaultOIDFunctionAddress(set
,
1302 dwEncodingType
, ptr
, 0, (void **)&func
, &hFunc
);
1305 ret
= func(dwEncodingType
, dwRevType
, cContext
,
1306 rgpvContext
, dwFlags
, pRevPara
, pRevStatus
);
1307 CryptFreeOIDFunctionAddress(hFunc
, 0);
1311 CryptMemFree(dllList
);
1315 SetLastError(ERROR_OUTOFMEMORY
);
1326 PCRYPT_ATTRIBUTE WINAPI
CertFindAttribute(LPCSTR pszObjId
, DWORD cAttr
,
1327 CRYPT_ATTRIBUTE rgAttr
[])
1329 PCRYPT_ATTRIBUTE ret
= NULL
;
1332 TRACE("%s %d %p\n", debugstr_a(pszObjId
), cAttr
, rgAttr
);
1338 SetLastError(ERROR_INVALID_PARAMETER
);
1342 for (i
= 0; !ret
&& i
< cAttr
; i
++)
1343 if (rgAttr
[i
].pszObjId
&& !strcmp(pszObjId
, rgAttr
[i
].pszObjId
))
1348 PCERT_EXTENSION WINAPI
CertFindExtension(LPCSTR pszObjId
, DWORD cExtensions
,
1349 CERT_EXTENSION rgExtensions
[])
1351 PCERT_EXTENSION ret
= NULL
;
1354 TRACE("%s %d %p\n", debugstr_a(pszObjId
), cExtensions
, rgExtensions
);
1360 SetLastError(ERROR_INVALID_PARAMETER
);
1364 for (i
= 0; !ret
&& i
< cExtensions
; i
++)
1365 if (rgExtensions
[i
].pszObjId
&& !strcmp(pszObjId
,
1366 rgExtensions
[i
].pszObjId
))
1367 ret
= &rgExtensions
[i
];
1371 PCERT_RDN_ATTR WINAPI
CertFindRDNAttr(LPCSTR pszObjId
, PCERT_NAME_INFO pName
)
1373 PCERT_RDN_ATTR ret
= NULL
;
1376 TRACE("%s %p\n", debugstr_a(pszObjId
), pName
);
1380 SetLastError(ERROR_INVALID_PARAMETER
);
1384 for (i
= 0; !ret
&& i
< pName
->cRDN
; i
++)
1385 for (j
= 0; !ret
&& j
< pName
->rgRDN
[i
].cRDNAttr
; j
++)
1386 if (pName
->rgRDN
[i
].rgRDNAttr
[j
].pszObjId
&& !strcmp(pszObjId
,
1387 pName
->rgRDN
[i
].rgRDNAttr
[j
].pszObjId
))
1388 ret
= &pName
->rgRDN
[i
].rgRDNAttr
[j
];
1392 LONG WINAPI
CertVerifyTimeValidity(LPFILETIME pTimeToVerify
,
1393 PCERT_INFO pCertInfo
)
1400 GetSystemTimeAsFileTime(&fileTime
);
1401 pTimeToVerify
= &fileTime
;
1403 if ((ret
= CompareFileTime(pTimeToVerify
, &pCertInfo
->NotBefore
)) >= 0)
1405 ret
= CompareFileTime(pTimeToVerify
, &pCertInfo
->NotAfter
);
1412 BOOL WINAPI
CertVerifyValidityNesting(PCERT_INFO pSubjectInfo
,
1413 PCERT_INFO pIssuerInfo
)
1415 TRACE("(%p, %p)\n", pSubjectInfo
, pIssuerInfo
);
1417 return CertVerifyTimeValidity(&pSubjectInfo
->NotBefore
, pIssuerInfo
) == 0
1418 && CertVerifyTimeValidity(&pSubjectInfo
->NotAfter
, pIssuerInfo
) == 0;
1421 BOOL WINAPI
CryptHashCertificate(HCRYPTPROV_LEGACY hCryptProv
, ALG_ID Algid
,
1422 DWORD dwFlags
, const BYTE
*pbEncoded
, DWORD cbEncoded
, BYTE
*pbComputedHash
,
1423 DWORD
*pcbComputedHash
)
1426 HCRYPTHASH hHash
= 0;
1428 TRACE("(%08lx, %d, %08x, %p, %d, %p, %p)\n", hCryptProv
, Algid
, dwFlags
,
1429 pbEncoded
, cbEncoded
, pbComputedHash
, pcbComputedHash
);
1432 hCryptProv
= CRYPT_GetDefaultProvider();
1437 ret
= CryptCreateHash(hCryptProv
, Algid
, 0, 0, &hHash
);
1440 ret
= CryptHashData(hHash
, pbEncoded
, cbEncoded
, 0);
1442 ret
= CryptGetHashParam(hHash
, HP_HASHVAL
, pbComputedHash
,
1443 pcbComputedHash
, 0);
1444 CryptDestroyHash(hHash
);
1450 BOOL WINAPI
CryptHashPublicKeyInfo(HCRYPTPROV_LEGACY hCryptProv
, ALG_ID Algid
,
1451 DWORD dwFlags
, DWORD dwCertEncodingType
, PCERT_PUBLIC_KEY_INFO pInfo
,
1452 BYTE
*pbComputedHash
, DWORD
*pcbComputedHash
)
1455 HCRYPTHASH hHash
= 0;
1457 TRACE("(%08lx, %d, %08x, %d, %p, %p, %p)\n", hCryptProv
, Algid
, dwFlags
,
1458 dwCertEncodingType
, pInfo
, pbComputedHash
, pcbComputedHash
);
1461 hCryptProv
= CRYPT_GetDefaultProvider();
1469 ret
= CryptEncodeObjectEx(dwCertEncodingType
, X509_PUBLIC_KEY_INFO
,
1470 pInfo
, CRYPT_ENCODE_ALLOC_FLAG
, NULL
, &buf
, &size
);
1473 ret
= CryptCreateHash(hCryptProv
, Algid
, 0, 0, &hHash
);
1476 ret
= CryptHashData(hHash
, buf
, size
, 0);
1478 ret
= CryptGetHashParam(hHash
, HP_HASHVAL
, pbComputedHash
,
1479 pcbComputedHash
, 0);
1480 CryptDestroyHash(hHash
);
1488 BOOL WINAPI
CryptSignCertificate(HCRYPTPROV_OR_NCRYPT_KEY_HANDLE hCryptProv
,
1489 DWORD dwKeySpec
, DWORD dwCertEncodingType
, const BYTE
*pbEncodedToBeSigned
,
1490 DWORD cbEncodedToBeSigned
, PCRYPT_ALGORITHM_IDENTIFIER pSignatureAlgorithm
,
1491 const void *pvHashAuxInfo
, BYTE
*pbSignature
, DWORD
*pcbSignature
)
1494 PCCRYPT_OID_INFO info
;
1497 TRACE("(%08lx, %d, %d, %p, %d, %p, %p, %p, %p)\n", hCryptProv
,
1498 dwKeySpec
, dwCertEncodingType
, pbEncodedToBeSigned
, cbEncodedToBeSigned
,
1499 pSignatureAlgorithm
, pvHashAuxInfo
, pbSignature
, pcbSignature
);
1501 info
= CryptFindOIDInfo(CRYPT_OID_INFO_OID_KEY
,
1502 pSignatureAlgorithm
->pszObjId
, 0);
1505 SetLastError(NTE_BAD_ALGID
);
1508 if (info
->dwGroupId
== CRYPT_HASH_ALG_OID_GROUP_ID
)
1511 hCryptProv
= CRYPT_GetDefaultProvider();
1512 ret
= CryptCreateHash(hCryptProv
, info
->u
.Algid
, 0, 0, &hHash
);
1515 ret
= CryptHashData(hHash
, pbEncodedToBeSigned
,
1516 cbEncodedToBeSigned
, 0);
1518 ret
= CryptGetHashParam(hHash
, HP_HASHVAL
, pbSignature
,
1520 CryptDestroyHash(hHash
);
1527 SetLastError(ERROR_INVALID_PARAMETER
);
1532 ret
= CryptCreateHash(hCryptProv
, info
->u
.Algid
, 0, 0, &hHash
);
1535 ret
= CryptHashData(hHash
, pbEncodedToBeSigned
,
1536 cbEncodedToBeSigned
, 0);
1538 ret
= CryptSignHashW(hHash
, dwKeySpec
, NULL
, 0, pbSignature
,
1540 CryptDestroyHash(hHash
);
1547 BOOL WINAPI
CryptSignAndEncodeCertificate(HCRYPTPROV_OR_NCRYPT_KEY_HANDLE hCryptProv
,
1548 DWORD dwKeySpec
, DWORD dwCertEncodingType
, LPCSTR lpszStructType
,
1549 const void *pvStructInfo
, PCRYPT_ALGORITHM_IDENTIFIER pSignatureAlgorithm
,
1550 const void *pvHashAuxInfo
, BYTE
*pbEncoded
, DWORD
*pcbEncoded
)
1553 DWORD encodedSize
, hashSize
;
1555 TRACE("(%08lx, %d, %d, %s, %p, %p, %p, %p, %p)\n", hCryptProv
, dwKeySpec
,
1556 dwCertEncodingType
, debugstr_a(lpszStructType
), pvStructInfo
,
1557 pSignatureAlgorithm
, pvHashAuxInfo
, pbEncoded
, pcbEncoded
);
1559 ret
= CryptEncodeObject(dwCertEncodingType
, lpszStructType
, pvStructInfo
,
1560 NULL
, &encodedSize
);
1563 PBYTE encoded
= CryptMemAlloc(encodedSize
);
1567 ret
= CryptEncodeObject(dwCertEncodingType
, lpszStructType
,
1568 pvStructInfo
, encoded
, &encodedSize
);
1571 ret
= CryptSignCertificate(hCryptProv
, dwKeySpec
,
1572 dwCertEncodingType
, encoded
, encodedSize
, pSignatureAlgorithm
,
1573 pvHashAuxInfo
, NULL
, &hashSize
);
1576 PBYTE hash
= CryptMemAlloc(hashSize
);
1580 ret
= CryptSignCertificate(hCryptProv
, dwKeySpec
,
1581 dwCertEncodingType
, encoded
, encodedSize
,
1582 pSignatureAlgorithm
, pvHashAuxInfo
, hash
, &hashSize
);
1585 CERT_SIGNED_CONTENT_INFO info
= { { 0 } };
1587 info
.ToBeSigned
.cbData
= encodedSize
;
1588 info
.ToBeSigned
.pbData
= encoded
;
1589 memcpy(&info
.SignatureAlgorithm
,
1590 pSignatureAlgorithm
,
1591 sizeof(info
.SignatureAlgorithm
));
1592 info
.Signature
.cbData
= hashSize
;
1593 info
.Signature
.pbData
= hash
;
1594 info
.Signature
.cUnusedBits
= 0;
1595 ret
= CryptEncodeObject(dwCertEncodingType
,
1596 X509_CERT
, &info
, pbEncoded
, pcbEncoded
);
1602 CryptMemFree(encoded
);
1608 BOOL WINAPI
CryptVerifyCertificateSignature(HCRYPTPROV_LEGACY hCryptProv
,
1609 DWORD dwCertEncodingType
, const BYTE
*pbEncoded
, DWORD cbEncoded
,
1610 PCERT_PUBLIC_KEY_INFO pPublicKey
)
1612 return CryptVerifyCertificateSignatureEx(hCryptProv
, dwCertEncodingType
,
1613 CRYPT_VERIFY_CERT_SIGN_SUBJECT_BLOB
, (void *)pbEncoded
,
1614 CRYPT_VERIFY_CERT_SIGN_ISSUER_PUBKEY
, pPublicKey
, 0, NULL
);
1617 static BOOL
CRYPT_VerifyCertSignatureFromPublicKeyInfo(HCRYPTPROV_LEGACY hCryptProv
,
1618 DWORD dwCertEncodingType
, PCERT_PUBLIC_KEY_INFO pubKeyInfo
,
1619 const CERT_SIGNED_CONTENT_INFO
*signedCert
)
1623 PCCRYPT_OID_INFO info
;
1624 ALG_ID pubKeyID
, hashID
;
1626 info
= CryptFindOIDInfo(CRYPT_OID_INFO_OID_KEY
,
1627 signedCert
->SignatureAlgorithm
.pszObjId
, 0);
1628 if (!info
|| info
->dwGroupId
!= CRYPT_SIGN_ALG_OID_GROUP_ID
)
1630 SetLastError(NTE_BAD_ALGID
);
1633 hashID
= info
->u
.Algid
;
1634 if (info
->ExtraInfo
.cbData
>= sizeof(ALG_ID
))
1635 pubKeyID
= *(ALG_ID
*)info
->ExtraInfo
.pbData
;
1638 /* Load the default provider if necessary */
1640 hCryptProv
= CRYPT_GetDefaultProvider();
1641 ret
= CryptImportPublicKeyInfoEx(hCryptProv
, dwCertEncodingType
,
1642 pubKeyInfo
, pubKeyID
, 0, NULL
, &key
);
1647 ret
= CryptCreateHash(hCryptProv
, hashID
, 0, 0, &hash
);
1650 ret
= CryptHashData(hash
, signedCert
->ToBeSigned
.pbData
,
1651 signedCert
->ToBeSigned
.cbData
, 0);
1653 ret
= CryptVerifySignatureW(hash
, signedCert
->Signature
.pbData
,
1654 signedCert
->Signature
.cbData
, key
, NULL
, 0);
1655 CryptDestroyHash(hash
);
1657 CryptDestroyKey(key
);
1662 BOOL WINAPI
CryptVerifyCertificateSignatureEx(HCRYPTPROV_LEGACY hCryptProv
,
1663 DWORD dwCertEncodingType
, DWORD dwSubjectType
, void *pvSubject
,
1664 DWORD dwIssuerType
, void *pvIssuer
, DWORD dwFlags
, void *pvReserved
)
1667 CRYPT_DATA_BLOB subjectBlob
;
1669 TRACE("(%08lx, %d, %d, %p, %d, %p, %08x, %p)\n", hCryptProv
,
1670 dwCertEncodingType
, dwSubjectType
, pvSubject
, dwIssuerType
, pvIssuer
,
1671 dwFlags
, pvReserved
);
1673 switch (dwSubjectType
)
1675 case CRYPT_VERIFY_CERT_SIGN_SUBJECT_BLOB
:
1677 PCRYPT_DATA_BLOB blob
= (PCRYPT_DATA_BLOB
)pvSubject
;
1679 subjectBlob
.pbData
= blob
->pbData
;
1680 subjectBlob
.cbData
= blob
->cbData
;
1683 case CRYPT_VERIFY_CERT_SIGN_SUBJECT_CERT
:
1685 PCERT_CONTEXT context
= (PCERT_CONTEXT
)pvSubject
;
1687 subjectBlob
.pbData
= context
->pbCertEncoded
;
1688 subjectBlob
.cbData
= context
->cbCertEncoded
;
1691 case CRYPT_VERIFY_CERT_SIGN_SUBJECT_CRL
:
1693 PCRL_CONTEXT context
= (PCRL_CONTEXT
)pvSubject
;
1695 subjectBlob
.pbData
= context
->pbCrlEncoded
;
1696 subjectBlob
.cbData
= context
->cbCrlEncoded
;
1700 SetLastError(E_INVALIDARG
);
1706 PCERT_SIGNED_CONTENT_INFO signedCert
= NULL
;
1709 ret
= CryptDecodeObjectEx(dwCertEncodingType
, X509_CERT
,
1710 subjectBlob
.pbData
, subjectBlob
.cbData
,
1711 CRYPT_DECODE_ALLOC_FLAG
| CRYPT_DECODE_NOCOPY_FLAG
, NULL
,
1712 (BYTE
*)&signedCert
, &size
);
1715 switch (dwIssuerType
)
1717 case CRYPT_VERIFY_CERT_SIGN_ISSUER_PUBKEY
:
1718 ret
= CRYPT_VerifyCertSignatureFromPublicKeyInfo(hCryptProv
,
1719 dwCertEncodingType
, (PCERT_PUBLIC_KEY_INFO
)pvIssuer
,
1722 case CRYPT_VERIFY_CERT_SIGN_ISSUER_CERT
:
1723 ret
= CRYPT_VerifyCertSignatureFromPublicKeyInfo(hCryptProv
,
1725 &((PCCERT_CONTEXT
)pvIssuer
)->pCertInfo
->SubjectPublicKeyInfo
,
1728 case CRYPT_VERIFY_CERT_SIGN_ISSUER_CHAIN
:
1729 FIXME("CRYPT_VERIFY_CERT_SIGN_ISSUER_CHAIN: stub\n");
1732 case CRYPT_VERIFY_CERT_SIGN_ISSUER_NULL
:
1735 SetLastError(E_INVALIDARG
);
1740 FIXME("unimplemented for NULL signer\n");
1741 SetLastError(E_INVALIDARG
);
1746 SetLastError(E_INVALIDARG
);
1749 LocalFree(signedCert
);
1755 BOOL WINAPI
CertGetEnhancedKeyUsage(PCCERT_CONTEXT pCertContext
, DWORD dwFlags
,
1756 PCERT_ENHKEY_USAGE pUsage
, DWORD
*pcbUsage
)
1758 PCERT_ENHKEY_USAGE usage
= NULL
;
1762 if (!pCertContext
|| !pcbUsage
)
1764 SetLastError(ERROR_INVALID_PARAMETER
);
1768 TRACE("(%p, %08x, %p, %d)\n", pCertContext
, dwFlags
, pUsage
, *pcbUsage
);
1770 if (!(dwFlags
& CERT_FIND_EXT_ONLY_ENHKEY_USAGE_FLAG
))
1774 if (CertGetCertificateContextProperty(pCertContext
,
1775 CERT_ENHKEY_USAGE_PROP_ID
, NULL
, &propSize
))
1777 LPBYTE buf
= CryptMemAlloc(propSize
);
1781 if (CertGetCertificateContextProperty(pCertContext
,
1782 CERT_ENHKEY_USAGE_PROP_ID
, buf
, &propSize
))
1784 ret
= CryptDecodeObjectEx(pCertContext
->dwCertEncodingType
,
1785 X509_ENHANCED_KEY_USAGE
, buf
, propSize
,
1786 CRYPT_ENCODE_ALLOC_FLAG
, NULL
, &usage
, &bytesNeeded
);
1792 if (!usage
&& !(dwFlags
& CERT_FIND_PROP_ONLY_ENHKEY_USAGE_FLAG
))
1794 PCERT_EXTENSION ext
= CertFindExtension(szOID_ENHANCED_KEY_USAGE
,
1795 pCertContext
->pCertInfo
->cExtension
,
1796 pCertContext
->pCertInfo
->rgExtension
);
1800 ret
= CryptDecodeObjectEx(pCertContext
->dwCertEncodingType
,
1801 X509_ENHANCED_KEY_USAGE
, ext
->Value
.pbData
, ext
->Value
.cbData
,
1802 CRYPT_ENCODE_ALLOC_FLAG
, NULL
, &usage
, &bytesNeeded
);
1807 /* If a particular location is specified, this should fail. Otherwise
1808 * it should succeed with an empty usage. (This is true on Win2k and
1809 * later, which we emulate.)
1813 SetLastError(CRYPT_E_NOT_FOUND
);
1817 bytesNeeded
= sizeof(CERT_ENHKEY_USAGE
);
1823 *pcbUsage
= bytesNeeded
;
1824 else if (*pcbUsage
< bytesNeeded
)
1826 SetLastError(ERROR_MORE_DATA
);
1827 *pcbUsage
= bytesNeeded
;
1832 *pcbUsage
= bytesNeeded
;
1836 LPSTR nextOID
= (LPSTR
)((LPBYTE
)pUsage
+
1837 sizeof(CERT_ENHKEY_USAGE
) +
1838 usage
->cUsageIdentifier
* sizeof(LPSTR
));
1840 pUsage
->cUsageIdentifier
= usage
->cUsageIdentifier
;
1841 pUsage
->rgpszUsageIdentifier
= (LPSTR
*)((LPBYTE
)pUsage
+
1842 sizeof(CERT_ENHKEY_USAGE
));
1843 for (i
= 0; i
< usage
->cUsageIdentifier
; i
++)
1845 pUsage
->rgpszUsageIdentifier
[i
] = nextOID
;
1846 strcpy(nextOID
, usage
->rgpszUsageIdentifier
[i
]);
1847 nextOID
+= strlen(nextOID
) + 1;
1851 pUsage
->cUsageIdentifier
= 0;
1856 TRACE("returning %d\n", ret
);
1860 BOOL WINAPI
CertSetEnhancedKeyUsage(PCCERT_CONTEXT pCertContext
,
1861 PCERT_ENHKEY_USAGE pUsage
)
1865 TRACE("(%p, %p)\n", pCertContext
, pUsage
);
1869 CRYPT_DATA_BLOB blob
= { 0, NULL
};
1871 ret
= CryptEncodeObjectEx(X509_ASN_ENCODING
, X509_ENHANCED_KEY_USAGE
,
1872 pUsage
, CRYPT_ENCODE_ALLOC_FLAG
, NULL
, &blob
.pbData
, &blob
.cbData
);
1875 ret
= CertSetCertificateContextProperty(pCertContext
,
1876 CERT_ENHKEY_USAGE_PROP_ID
, 0, &blob
);
1877 LocalFree(blob
.pbData
);
1881 ret
= CertSetCertificateContextProperty(pCertContext
,
1882 CERT_ENHKEY_USAGE_PROP_ID
, 0, NULL
);
1886 BOOL WINAPI
CertAddEnhancedKeyUsageIdentifier(PCCERT_CONTEXT pCertContext
,
1887 LPCSTR pszUsageIdentifier
)
1892 TRACE("(%p, %s)\n", pCertContext
, debugstr_a(pszUsageIdentifier
));
1894 if (CertGetEnhancedKeyUsage(pCertContext
,
1895 CERT_FIND_PROP_ONLY_ENHKEY_USAGE_FLAG
, NULL
, &size
))
1897 PCERT_ENHKEY_USAGE usage
= CryptMemAlloc(size
);
1901 ret
= CertGetEnhancedKeyUsage(pCertContext
,
1902 CERT_FIND_PROP_ONLY_ENHKEY_USAGE_FLAG
, usage
, &size
);
1906 BOOL exists
= FALSE
;
1908 /* Make sure usage doesn't already exist */
1909 for (i
= 0; !exists
&& i
< usage
->cUsageIdentifier
; i
++)
1911 if (!strcmp(usage
->rgpszUsageIdentifier
[i
],
1912 pszUsageIdentifier
))
1917 PCERT_ENHKEY_USAGE newUsage
= CryptMemAlloc(size
+
1918 sizeof(LPSTR
) + strlen(pszUsageIdentifier
) + 1);
1924 newUsage
->rgpszUsageIdentifier
= (LPSTR
*)
1925 ((LPBYTE
)newUsage
+ sizeof(CERT_ENHKEY_USAGE
));
1926 nextOID
= (LPSTR
)((LPBYTE
)newUsage
->rgpszUsageIdentifier
1927 + (usage
->cUsageIdentifier
+ 1) * sizeof(LPSTR
));
1928 for (i
= 0; i
< usage
->cUsageIdentifier
; i
++)
1930 newUsage
->rgpszUsageIdentifier
[i
] = nextOID
;
1931 strcpy(nextOID
, usage
->rgpszUsageIdentifier
[i
]);
1932 nextOID
+= strlen(nextOID
) + 1;
1934 newUsage
->rgpszUsageIdentifier
[i
] = nextOID
;
1935 strcpy(nextOID
, pszUsageIdentifier
);
1936 newUsage
->cUsageIdentifier
= i
+ 1;
1937 ret
= CertSetEnhancedKeyUsage(pCertContext
, newUsage
);
1938 CryptMemFree(newUsage
);
1944 CryptMemFree(usage
);
1951 PCERT_ENHKEY_USAGE usage
= CryptMemAlloc(sizeof(CERT_ENHKEY_USAGE
) +
1952 sizeof(LPSTR
) + strlen(pszUsageIdentifier
) + 1);
1956 usage
->rgpszUsageIdentifier
=
1957 (LPSTR
*)((LPBYTE
)usage
+ sizeof(CERT_ENHKEY_USAGE
));
1958 usage
->rgpszUsageIdentifier
[0] = (LPSTR
)((LPBYTE
)usage
+
1959 sizeof(CERT_ENHKEY_USAGE
) + sizeof(LPSTR
));
1960 strcpy(usage
->rgpszUsageIdentifier
[0], pszUsageIdentifier
);
1961 usage
->cUsageIdentifier
= 1;
1962 ret
= CertSetEnhancedKeyUsage(pCertContext
, usage
);
1963 CryptMemFree(usage
);
1971 BOOL WINAPI
CertRemoveEnhancedKeyUsageIdentifier(PCCERT_CONTEXT pCertContext
,
1972 LPCSTR pszUsageIdentifier
)
1976 CERT_ENHKEY_USAGE usage
;
1978 TRACE("(%p, %s)\n", pCertContext
, debugstr_a(pszUsageIdentifier
));
1980 size
= sizeof(usage
);
1981 ret
= CertGetEnhancedKeyUsage(pCertContext
,
1982 CERT_FIND_PROP_ONLY_ENHKEY_USAGE_FLAG
, &usage
, &size
);
1983 if (!ret
&& GetLastError() == ERROR_MORE_DATA
)
1985 PCERT_ENHKEY_USAGE pUsage
= CryptMemAlloc(size
);
1989 ret
= CertGetEnhancedKeyUsage(pCertContext
,
1990 CERT_FIND_PROP_ONLY_ENHKEY_USAGE_FLAG
, pUsage
, &size
);
1993 if (pUsage
->cUsageIdentifier
)
1998 for (i
= 0; i
< pUsage
->cUsageIdentifier
; i
++)
2000 if (!strcmp(pUsage
->rgpszUsageIdentifier
[i
],
2001 pszUsageIdentifier
))
2003 if (found
&& i
< pUsage
->cUsageIdentifier
- 1)
2004 pUsage
->rgpszUsageIdentifier
[i
] =
2005 pUsage
->rgpszUsageIdentifier
[i
+ 1];
2007 pUsage
->cUsageIdentifier
--;
2008 /* Remove the usage if it's empty */
2009 if (pUsage
->cUsageIdentifier
)
2010 ret
= CertSetEnhancedKeyUsage(pCertContext
, pUsage
);
2012 ret
= CertSetEnhancedKeyUsage(pCertContext
, NULL
);
2015 CryptMemFree(pUsage
);
2022 /* it fit in an empty usage, therefore there's nothing to remove */
2034 #define BITS_PER_DWORD (sizeof(DWORD) * 8)
2036 static void CRYPT_SetBitInField(struct BitField
*field
, DWORD bit
)
2038 DWORD indexIndex
= bit
/ BITS_PER_DWORD
;
2040 if (indexIndex
+ 1 > field
->cIndexes
)
2042 if (field
->cIndexes
)
2043 field
->indexes
= CryptMemRealloc(field
->indexes
,
2044 (indexIndex
+ 1) * sizeof(DWORD
));
2046 field
->indexes
= CryptMemAlloc(sizeof(DWORD
));
2049 field
->indexes
[indexIndex
] = 0;
2050 field
->cIndexes
= indexIndex
+ 1;
2054 field
->indexes
[indexIndex
] |= 1 << (bit
% BITS_PER_DWORD
);
2057 static BOOL
CRYPT_IsBitInFieldSet(struct BitField
*field
, DWORD bit
)
2060 DWORD indexIndex
= bit
/ BITS_PER_DWORD
;
2062 assert(field
->cIndexes
);
2063 set
= field
->indexes
[indexIndex
] & (1 << (bit
% BITS_PER_DWORD
));
2067 BOOL WINAPI
CertGetValidUsages(DWORD cCerts
, PCCERT_CONTEXT
*rghCerts
,
2068 int *cNumOIDs
, LPSTR
*rghOIDs
, DWORD
*pcbOIDs
)
2071 DWORD i
, cbOIDs
= 0;
2072 BOOL allUsagesValid
= TRUE
;
2073 CERT_ENHKEY_USAGE validUsages
= { 0, NULL
};
2075 TRACE("(%d, %p, %d, %p, %d)\n", cCerts
, rghCerts
, *cNumOIDs
,
2078 for (i
= 0; i
< cCerts
; i
++)
2080 CERT_ENHKEY_USAGE usage
;
2081 DWORD size
= sizeof(usage
);
2083 ret
= CertGetEnhancedKeyUsage(rghCerts
[i
], 0, &usage
, &size
);
2084 /* Success is deliberately ignored: it implies all usages are valid */
2085 if (!ret
&& GetLastError() == ERROR_MORE_DATA
)
2087 PCERT_ENHKEY_USAGE pUsage
= CryptMemAlloc(size
);
2089 allUsagesValid
= FALSE
;
2092 ret
= CertGetEnhancedKeyUsage(rghCerts
[i
], 0, pUsage
, &size
);
2095 if (!validUsages
.cUsageIdentifier
)
2099 cbOIDs
= pUsage
->cUsageIdentifier
* sizeof(LPSTR
);
2100 validUsages
.cUsageIdentifier
= pUsage
->cUsageIdentifier
;
2101 for (j
= 0; j
< validUsages
.cUsageIdentifier
; j
++)
2102 cbOIDs
+= lstrlenA(pUsage
->rgpszUsageIdentifier
[j
])
2104 validUsages
.rgpszUsageIdentifier
=
2105 CryptMemAlloc(cbOIDs
);
2106 if (validUsages
.rgpszUsageIdentifier
)
2108 LPSTR nextOID
= (LPSTR
)
2109 ((LPBYTE
)validUsages
.rgpszUsageIdentifier
+
2110 validUsages
.cUsageIdentifier
* sizeof(LPSTR
));
2112 for (j
= 0; j
< validUsages
.cUsageIdentifier
; j
++)
2114 validUsages
.rgpszUsageIdentifier
[j
] = nextOID
;
2115 lstrcpyA(validUsages
.rgpszUsageIdentifier
[j
],
2116 pUsage
->rgpszUsageIdentifier
[j
]);
2117 nextOID
+= lstrlenA(nextOID
) + 1;
2123 struct BitField validIndexes
= { 0, NULL
};
2124 DWORD j
, k
, numRemoved
= 0;
2126 /* Merge: build a bitmap of all the indexes of
2127 * validUsages.rgpszUsageIdentifier that are in pUsage.
2129 for (j
= 0; j
< pUsage
->cUsageIdentifier
; j
++)
2131 for (k
= 0; k
< validUsages
.cUsageIdentifier
; k
++)
2133 if (!strcmp(pUsage
->rgpszUsageIdentifier
[j
],
2134 validUsages
.rgpszUsageIdentifier
[k
]))
2136 CRYPT_SetBitInField(&validIndexes
, k
);
2141 /* Merge by removing from validUsages those that are
2142 * not in the bitmap.
2144 for (j
= 0; j
< validUsages
.cUsageIdentifier
; j
++)
2146 if (!CRYPT_IsBitInFieldSet(&validIndexes
, j
))
2148 if (j
< validUsages
.cUsageIdentifier
- 1)
2150 memmove(&validUsages
.rgpszUsageIdentifier
[j
],
2151 &validUsages
.rgpszUsageIdentifier
[j
+
2153 (validUsages
.cUsageIdentifier
- numRemoved
2154 - j
- 1) * sizeof(LPSTR
));
2156 validUsages
.rgpszUsageIdentifier
[j
]) + 1 +
2158 validUsages
.cUsageIdentifier
--;
2162 validUsages
.cUsageIdentifier
--;
2165 CryptMemFree(validIndexes
.indexes
);
2168 CryptMemFree(pUsage
);
2180 *cNumOIDs
= validUsages
.cUsageIdentifier
;
2183 else if (*pcbOIDs
< cbOIDs
)
2186 SetLastError(ERROR_MORE_DATA
);
2191 LPSTR nextOID
= (LPSTR
)((LPBYTE
)rghOIDs
+
2192 validUsages
.cUsageIdentifier
* sizeof(LPSTR
));
2195 for (i
= 0; i
< validUsages
.cUsageIdentifier
; i
++)
2197 rghOIDs
[i
] = nextOID
;
2198 lstrcpyA(nextOID
, validUsages
.rgpszUsageIdentifier
[i
]);
2199 nextOID
+= lstrlenA(nextOID
) + 1;
2203 CryptMemFree(validUsages
.rgpszUsageIdentifier
);
2204 TRACE("cNumOIDs: %d\n", *cNumOIDs
);
2205 TRACE("returning %d\n", ret
);
2209 /* Sets the CERT_KEY_PROV_INFO_PROP_ID property of context from pInfo, or, if
2210 * pInfo is NULL, from the attributes of hProv.
2212 static void CertContext_SetKeyProvInfo(PCCERT_CONTEXT context
,
2213 const CRYPT_KEY_PROV_INFO
*pInfo
, HCRYPTPROV hProv
)
2215 CRYPT_KEY_PROV_INFO info
= { 0 };
2223 ret
= CryptGetProvParam(hProv
, PP_CONTAINER
, NULL
, &size
, 0);
2226 LPSTR szContainer
= CryptMemAlloc(size
);
2230 ret
= CryptGetProvParam(hProv
, PP_CONTAINER
,
2231 (BYTE
*)szContainer
, &size
, 0);
2234 len
= MultiByteToWideChar(CP_ACP
, 0, szContainer
, -1,
2238 info
.pwszContainerName
= CryptMemAlloc(len
*
2240 len
= MultiByteToWideChar(CP_ACP
, 0, szContainer
, -1,
2241 info
.pwszContainerName
, len
);
2244 CryptMemFree(szContainer
);
2247 ret
= CryptGetProvParam(hProv
, PP_NAME
, NULL
, &size
, 0);
2250 LPSTR szProvider
= CryptMemAlloc(size
);
2254 ret
= CryptGetProvParam(hProv
, PP_NAME
, (BYTE
*)szProvider
,
2258 len
= MultiByteToWideChar(CP_ACP
, 0, szProvider
, -1,
2262 info
.pwszProvName
= CryptMemAlloc(len
*
2264 len
= MultiByteToWideChar(CP_ACP
, 0, szProvider
, -1,
2265 info
.pwszProvName
, len
);
2268 CryptMemFree(szProvider
);
2271 size
= sizeof(info
.dwKeySpec
);
2272 /* in case no CRYPT_KEY_PROV_INFO given,
2273 * we always use AT_SIGNATURE key spec
2275 info
.dwKeySpec
= AT_SIGNATURE
;
2276 size
= sizeof(info
.dwProvType
);
2277 ret
= CryptGetProvParam(hProv
, PP_PROVTYPE
, (LPBYTE
)&info
.dwProvType
,
2280 info
.dwProvType
= PROV_RSA_FULL
;
2284 ret
= CertSetCertificateContextProperty(context
, CERT_KEY_PROV_INFO_PROP_ID
,
2289 CryptMemFree(info
.pwszContainerName
);
2290 CryptMemFree(info
.pwszProvName
);
2294 /* Creates a signed certificate context from the unsigned, encoded certificate
2295 * in blob, using the crypto provider hProv and the signature algorithm sigAlgo.
2297 static PCCERT_CONTEXT
CRYPT_CreateSignedCert(const CRYPT_DER_BLOB
*blob
,
2298 HCRYPTPROV hProv
, DWORD dwKeySpec
, PCRYPT_ALGORITHM_IDENTIFIER sigAlgo
)
2300 PCCERT_CONTEXT context
= NULL
;
2304 ret
= CryptSignCertificate(hProv
, dwKeySpec
, X509_ASN_ENCODING
,
2305 blob
->pbData
, blob
->cbData
, sigAlgo
, NULL
, NULL
, &sigSize
);
2308 LPBYTE sig
= CryptMemAlloc(sigSize
);
2310 ret
= CryptSignCertificate(hProv
, dwKeySpec
, X509_ASN_ENCODING
,
2311 blob
->pbData
, blob
->cbData
, sigAlgo
, NULL
, sig
, &sigSize
);
2314 CERT_SIGNED_CONTENT_INFO signedInfo
;
2315 BYTE
*encodedSignedCert
= NULL
;
2316 DWORD encodedSignedCertSize
= 0;
2318 signedInfo
.ToBeSigned
.cbData
= blob
->cbData
;
2319 signedInfo
.ToBeSigned
.pbData
= blob
->pbData
;
2320 memcpy(&signedInfo
.SignatureAlgorithm
, sigAlgo
,
2321 sizeof(signedInfo
.SignatureAlgorithm
));
2322 signedInfo
.Signature
.cbData
= sigSize
;
2323 signedInfo
.Signature
.pbData
= sig
;
2324 signedInfo
.Signature
.cUnusedBits
= 0;
2325 ret
= CryptEncodeObjectEx(X509_ASN_ENCODING
, X509_CERT
,
2326 &signedInfo
, CRYPT_ENCODE_ALLOC_FLAG
, NULL
,
2327 (BYTE
*)&encodedSignedCert
, &encodedSignedCertSize
);
2330 context
= CertCreateCertificateContext(X509_ASN_ENCODING
,
2331 encodedSignedCert
, encodedSignedCertSize
);
2332 LocalFree(encodedSignedCert
);
2340 /* Copies data from the parameters into info, where:
2341 * pSerialNumber: The serial number. Must not be NULL.
2342 * pSubjectIssuerBlob: Specifies both the subject and issuer for info.
2344 * pSignatureAlgorithm: Optional.
2345 * pStartTime: The starting time of the certificate. If NULL, the current
2346 * system time is used.
2347 * pEndTime: The ending time of the certificate. If NULL, one year past the
2348 * starting time is used.
2349 * pubKey: The public key of the certificate. Must not be NULL.
2350 * pExtensions: Extensions to be included with the certificate. Optional.
2352 static void CRYPT_MakeCertInfo(PCERT_INFO info
, const CRYPT_DATA_BLOB
*pSerialNumber
,
2353 const CERT_NAME_BLOB
*pSubjectIssuerBlob
,
2354 const CRYPT_ALGORITHM_IDENTIFIER
*pSignatureAlgorithm
, const SYSTEMTIME
*pStartTime
,
2355 const SYSTEMTIME
*pEndTime
, const CERT_PUBLIC_KEY_INFO
*pubKey
,
2356 const CERT_EXTENSIONS
*pExtensions
)
2358 static CHAR oid
[] = szOID_RSA_SHA1RSA
;
2361 assert(pSerialNumber
);
2362 assert(pSubjectIssuerBlob
);
2365 info
->dwVersion
= CERT_V3
;
2366 info
->SerialNumber
.cbData
= pSerialNumber
->cbData
;
2367 info
->SerialNumber
.pbData
= pSerialNumber
->pbData
;
2368 if (pSignatureAlgorithm
)
2369 memcpy(&info
->SignatureAlgorithm
, pSignatureAlgorithm
,
2370 sizeof(info
->SignatureAlgorithm
));
2373 info
->SignatureAlgorithm
.pszObjId
= oid
;
2374 info
->SignatureAlgorithm
.Parameters
.cbData
= 0;
2375 info
->SignatureAlgorithm
.Parameters
.pbData
= NULL
;
2377 info
->Issuer
.cbData
= pSubjectIssuerBlob
->cbData
;
2378 info
->Issuer
.pbData
= pSubjectIssuerBlob
->pbData
;
2380 SystemTimeToFileTime(pStartTime
, &info
->NotBefore
);
2382 GetSystemTimeAsFileTime(&info
->NotBefore
);
2384 SystemTimeToFileTime(pEndTime
, &info
->NotAfter
);
2389 if (FileTimeToSystemTime(&info
->NotBefore
, &endTime
))
2392 SystemTimeToFileTime(&endTime
, &info
->NotAfter
);
2395 info
->Subject
.cbData
= pSubjectIssuerBlob
->cbData
;
2396 info
->Subject
.pbData
= pSubjectIssuerBlob
->pbData
;
2397 memcpy(&info
->SubjectPublicKeyInfo
, pubKey
,
2398 sizeof(info
->SubjectPublicKeyInfo
));
2401 info
->cExtension
= pExtensions
->cExtension
;
2402 info
->rgExtension
= pExtensions
->rgExtension
;
2406 info
->cExtension
= 0;
2407 info
->rgExtension
= NULL
;
2411 typedef RPC_STATUS (RPC_ENTRY
*UuidCreateFunc
)(UUID
*);
2412 typedef RPC_STATUS (RPC_ENTRY
*UuidToStringFunc
)(UUID
*, unsigned char **);
2413 typedef RPC_STATUS (RPC_ENTRY
*RpcStringFreeFunc
)(unsigned char **);
2415 static HCRYPTPROV
CRYPT_CreateKeyProv(void)
2417 HCRYPTPROV hProv
= 0;
2418 HMODULE rpcrt
= LoadLibraryA("rpcrt4");
2422 UuidCreateFunc uuidCreate
= (UuidCreateFunc
)GetProcAddress(rpcrt
,
2424 UuidToStringFunc uuidToString
= (UuidToStringFunc
)GetProcAddress(rpcrt
,
2426 RpcStringFreeFunc rpcStringFree
= (RpcStringFreeFunc
)GetProcAddress(
2427 rpcrt
, "RpcStringFreeA");
2429 if (uuidCreate
&& uuidToString
&& rpcStringFree
)
2432 RPC_STATUS status
= uuidCreate(&uuid
);
2434 if (status
== RPC_S_OK
|| status
== RPC_S_UUID_LOCAL_ONLY
)
2436 unsigned char *uuidStr
;
2438 status
= uuidToString(&uuid
, &uuidStr
);
2439 if (status
== RPC_S_OK
)
2441 BOOL ret
= CryptAcquireContextA(&hProv
, (LPCSTR
)uuidStr
,
2442 MS_DEF_PROV_A
, PROV_RSA_FULL
, CRYPT_NEWKEYSET
);
2448 ret
= CryptGenKey(hProv
, AT_SIGNATURE
, 0, &key
);
2450 CryptDestroyKey(key
);
2452 rpcStringFree(&uuidStr
);
2461 PCCERT_CONTEXT WINAPI
CertCreateSelfSignCertificate(HCRYPTPROV_OR_NCRYPT_KEY_HANDLE hProv
,
2462 PCERT_NAME_BLOB pSubjectIssuerBlob
, DWORD dwFlags
,
2463 PCRYPT_KEY_PROV_INFO pKeyProvInfo
,
2464 PCRYPT_ALGORITHM_IDENTIFIER pSignatureAlgorithm
, PSYSTEMTIME pStartTime
,
2465 PSYSTEMTIME pEndTime
, PCERT_EXTENSIONS pExtensions
)
2467 PCCERT_CONTEXT context
= NULL
;
2468 BOOL ret
, releaseContext
= FALSE
;
2469 PCERT_PUBLIC_KEY_INFO pubKey
= NULL
;
2470 DWORD pubKeySize
= 0,dwKeySpec
= AT_SIGNATURE
;
2472 TRACE("(%08lx, %p, %08x, %p, %p, %p, %p, %p)\n", hProv
,
2473 pSubjectIssuerBlob
, dwFlags
, pKeyProvInfo
, pSignatureAlgorithm
, pStartTime
,
2474 pExtensions
, pExtensions
);
2476 if(!pSubjectIssuerBlob
)
2478 SetLastError(ERROR_INVALID_PARAMETER
);
2486 hProv
= CRYPT_CreateKeyProv();
2487 releaseContext
= TRUE
;
2489 else if (pKeyProvInfo
->dwFlags
& CERT_SET_KEY_PROV_HANDLE_PROP_ID
)
2491 SetLastError(NTE_BAD_FLAGS
);
2497 /* acquire the context using the given information*/
2498 ret
= CryptAcquireContextW(&hProv
,pKeyProvInfo
->pwszContainerName
,
2499 pKeyProvInfo
->pwszProvName
,pKeyProvInfo
->dwProvType
,
2500 pKeyProvInfo
->dwFlags
);
2503 if(GetLastError() != NTE_BAD_KEYSET
)
2505 /* create the key set */
2506 ret
= CryptAcquireContextW(&hProv
,pKeyProvInfo
->pwszContainerName
,
2507 pKeyProvInfo
->pwszProvName
,pKeyProvInfo
->dwProvType
,
2508 pKeyProvInfo
->dwFlags
|CRYPT_NEWKEYSET
);
2512 dwKeySpec
= pKeyProvInfo
->dwKeySpec
;
2513 /* check if the key is here */
2514 ret
= CryptGetUserKey(hProv
,dwKeySpec
,&hKey
);
2517 if (NTE_NO_KEY
== GetLastError())
2518 { /* generate the key */
2519 ret
= CryptGenKey(hProv
,dwKeySpec
,0,&hKey
);
2523 CryptReleaseContext(hProv
,0);
2524 SetLastError(NTE_BAD_KEYSET
);
2528 CryptDestroyKey(hKey
);
2529 releaseContext
= TRUE
;
2532 else if (pKeyProvInfo
)
2534 SetLastError(ERROR_INVALID_PARAMETER
);
2538 CryptExportPublicKeyInfo(hProv
, dwKeySpec
, X509_ASN_ENCODING
, NULL
,
2540 pubKey
= CryptMemAlloc(pubKeySize
);
2543 ret
= CryptExportPublicKeyInfo(hProv
, dwKeySpec
, X509_ASN_ENCODING
,
2544 pubKey
, &pubKeySize
);
2547 CERT_INFO info
= { 0 };
2548 CRYPT_DER_BLOB blob
= { 0, NULL
};
2550 CRYPT_DATA_BLOB serialBlob
= { sizeof(serial
), serial
};
2552 CryptGenRandom(hProv
, sizeof(serial
), serial
);
2553 CRYPT_MakeCertInfo(&info
, &serialBlob
, pSubjectIssuerBlob
,
2554 pSignatureAlgorithm
, pStartTime
, pEndTime
, pubKey
, pExtensions
);
2555 ret
= CryptEncodeObjectEx(X509_ASN_ENCODING
, X509_CERT_TO_BE_SIGNED
,
2556 &info
, CRYPT_ENCODE_ALLOC_FLAG
, NULL
, (BYTE
*)&blob
.pbData
,
2560 if (!(dwFlags
& CERT_CREATE_SELFSIGN_NO_SIGN
))
2561 context
= CRYPT_CreateSignedCert(&blob
, hProv
,dwKeySpec
,
2562 &info
.SignatureAlgorithm
);
2564 context
= CertCreateCertificateContext(X509_ASN_ENCODING
,
2565 blob
.pbData
, blob
.cbData
);
2566 if (context
&& !(dwFlags
& CERT_CREATE_SELFSIGN_NO_KEY_INFO
))
2567 CertContext_SetKeyProvInfo(context
, pKeyProvInfo
, hProv
);
2568 LocalFree(blob
.pbData
);
2571 CryptMemFree(pubKey
);
2574 CryptReleaseContext(hProv
, 0);