2 * Copyright 2006 Juan Lang for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 #define NONAMELESSUNION
27 #include "wine/debug.h"
28 #include "wine/unicode.h"
30 WINE_DEFAULT_DEBUG_CHANNEL(crypt
);
32 DWORD WINAPI
CertRDNValueToStrA(DWORD dwValueType
, PCERT_RDN_VALUE_BLOB pValue
,
37 TRACE("(%d, %p, %p, %d)\n", dwValueType
, pValue
, psz
, csz
);
41 case CERT_RDN_ANY_TYPE
:
43 case CERT_RDN_NUMERIC_STRING
:
44 case CERT_RDN_PRINTABLE_STRING
:
45 case CERT_RDN_TELETEX_STRING
:
46 case CERT_RDN_VIDEOTEX_STRING
:
47 case CERT_RDN_IA5_STRING
:
48 case CERT_RDN_GRAPHIC_STRING
:
49 case CERT_RDN_VISIBLE_STRING
:
50 case CERT_RDN_GENERAL_STRING
:
56 DWORD chars
= min(len
, csz
- 1);
60 memcpy(psz
, pValue
->pbData
, chars
);
66 case CERT_RDN_BMP_STRING
:
67 case CERT_RDN_UTF8_STRING
:
68 len
= WideCharToMultiByte(CP_ACP
, 0, (LPCWSTR
)pValue
->pbData
,
69 pValue
->cbData
/ sizeof(WCHAR
), NULL
, 0, NULL
, NULL
);
74 DWORD chars
= min(pValue
->cbData
/ sizeof(WCHAR
), csz
- 1);
78 ret
= WideCharToMultiByte(CP_ACP
, 0, (LPCWSTR
)pValue
->pbData
,
79 chars
, psz
, csz
- 1, NULL
, NULL
);
85 FIXME("string type %d unimplemented\n", dwValueType
);
95 TRACE("returning %d (%s)\n", ret
, debugstr_a(psz
));
99 DWORD WINAPI
CertRDNValueToStrW(DWORD dwValueType
, PCERT_RDN_VALUE_BLOB pValue
,
100 LPWSTR psz
, DWORD csz
)
102 DWORD ret
= 0, len
, i
, strLen
;
104 TRACE("(%d, %p, %p, %d)\n", dwValueType
, pValue
, psz
, csz
);
108 case CERT_RDN_ANY_TYPE
:
110 case CERT_RDN_NUMERIC_STRING
:
111 case CERT_RDN_PRINTABLE_STRING
:
112 case CERT_RDN_TELETEX_STRING
:
113 case CERT_RDN_VIDEOTEX_STRING
:
114 case CERT_RDN_IA5_STRING
:
115 case CERT_RDN_GRAPHIC_STRING
:
116 case CERT_RDN_VISIBLE_STRING
:
117 case CERT_RDN_GENERAL_STRING
:
118 len
= pValue
->cbData
;
125 for (i
= 0; i
< pValue
->cbData
&& ptr
- psz
< csz
; ptr
++, i
++)
126 *ptr
= pValue
->pbData
[i
];
130 case CERT_RDN_BMP_STRING
:
131 case CERT_RDN_UTF8_STRING
:
132 strLen
= len
= pValue
->cbData
/ sizeof(WCHAR
);
139 for (i
= 0; i
< strLen
&& ptr
- psz
< csz
; ptr
++, i
++)
140 *ptr
= ((LPCWSTR
)pValue
->pbData
)[i
];
145 FIXME("string type %d unimplemented\n", dwValueType
);
155 TRACE("returning %d (%s)\n", ret
, debugstr_w(psz
));
159 static inline BOOL
is_quotable_char(char c
)
178 static DWORD
quote_rdn_value_to_str_a(DWORD dwValueType
,
179 PCERT_RDN_VALUE_BLOB pValue
, LPSTR psz
, DWORD csz
)
181 DWORD ret
= 0, len
, i
;
182 BOOL needsQuotes
= FALSE
;
184 TRACE("(%d, %p, %p, %d)\n", dwValueType
, pValue
, psz
, csz
);
188 case CERT_RDN_ANY_TYPE
:
190 case CERT_RDN_NUMERIC_STRING
:
191 case CERT_RDN_PRINTABLE_STRING
:
192 case CERT_RDN_TELETEX_STRING
:
193 case CERT_RDN_VIDEOTEX_STRING
:
194 case CERT_RDN_IA5_STRING
:
195 case CERT_RDN_GRAPHIC_STRING
:
196 case CERT_RDN_VISIBLE_STRING
:
197 case CERT_RDN_GENERAL_STRING
:
198 len
= pValue
->cbData
;
199 if (pValue
->cbData
&& isspace(pValue
->pbData
[0]))
201 if (pValue
->cbData
&& isspace(pValue
->pbData
[pValue
->cbData
- 1]))
203 for (i
= 0; i
< pValue
->cbData
; i
++)
205 if (is_quotable_char(pValue
->pbData
[i
]))
207 if (pValue
->pbData
[i
] == '"')
220 for (i
= 0; i
< pValue
->cbData
&& ptr
- psz
< csz
; ptr
++, i
++)
222 *ptr
= pValue
->pbData
[i
];
223 if (pValue
->pbData
[i
] == '"' && ptr
- psz
< csz
- 1)
226 if (needsQuotes
&& ptr
- psz
< csz
)
231 case CERT_RDN_BMP_STRING
:
232 case CERT_RDN_UTF8_STRING
:
233 len
= WideCharToMultiByte(CP_ACP
, 0, (LPCWSTR
)pValue
->pbData
,
234 pValue
->cbData
/ sizeof(WCHAR
), NULL
, 0, NULL
, NULL
);
235 if (pValue
->cbData
&& isspaceW(((LPCWSTR
)pValue
->pbData
)[0]))
237 if (pValue
->cbData
&&
238 isspaceW(((LPCWSTR
)pValue
->pbData
)[pValue
->cbData
/ sizeof(WCHAR
)-1]))
240 for (i
= 0; i
< pValue
->cbData
/ sizeof(WCHAR
); i
++)
242 if (is_quotable_char(((LPCWSTR
)pValue
->pbData
)[i
]))
244 if (((LPCWSTR
)pValue
->pbData
)[i
] == '"')
257 for (i
= 0; i
< pValue
->cbData
/ sizeof(WCHAR
) &&
258 dst
- psz
< csz
; dst
++, i
++)
260 LPCWSTR src
= (LPCWSTR
)pValue
->pbData
+ i
;
262 WideCharToMultiByte(CP_ACP
, 0, src
, 1, dst
,
263 csz
- (dst
- psz
) - 1, NULL
, NULL
);
264 if (*src
== '"' && dst
- psz
< csz
- 1)
267 if (needsQuotes
&& dst
- psz
< csz
)
273 FIXME("string type %d unimplemented\n", dwValueType
);
283 TRACE("returning %d (%s)\n", ret
, debugstr_a(psz
));
287 static DWORD
quote_rdn_value_to_str_w(DWORD dwValueType
,
288 PCERT_RDN_VALUE_BLOB pValue
, LPWSTR psz
, DWORD csz
)
290 DWORD ret
= 0, len
, i
, strLen
;
291 BOOL needsQuotes
= FALSE
;
293 TRACE("(%d, %p, %p, %d)\n", dwValueType
, pValue
, psz
, csz
);
297 case CERT_RDN_ANY_TYPE
:
299 case CERT_RDN_NUMERIC_STRING
:
300 case CERT_RDN_PRINTABLE_STRING
:
301 case CERT_RDN_TELETEX_STRING
:
302 case CERT_RDN_VIDEOTEX_STRING
:
303 case CERT_RDN_IA5_STRING
:
304 case CERT_RDN_GRAPHIC_STRING
:
305 case CERT_RDN_VISIBLE_STRING
:
306 case CERT_RDN_GENERAL_STRING
:
307 len
= pValue
->cbData
;
308 if (pValue
->cbData
&& isspace(pValue
->pbData
[0]))
310 if (pValue
->cbData
&& isspace(pValue
->pbData
[pValue
->cbData
- 1]))
312 for (i
= 0; i
< pValue
->cbData
; i
++)
314 if (is_quotable_char(pValue
->pbData
[i
]))
316 if (pValue
->pbData
[i
] == '"')
329 for (i
= 0; i
< pValue
->cbData
&& ptr
- psz
< csz
; ptr
++, i
++)
331 *ptr
= pValue
->pbData
[i
];
332 if (pValue
->pbData
[i
] == '"' && ptr
- psz
< csz
- 1)
335 if (needsQuotes
&& ptr
- psz
< csz
)
340 case CERT_RDN_BMP_STRING
:
341 case CERT_RDN_UTF8_STRING
:
342 strLen
= len
= pValue
->cbData
/ sizeof(WCHAR
);
343 if (pValue
->cbData
&& isspace(pValue
->pbData
[0]))
345 if (pValue
->cbData
&& isspace(pValue
->pbData
[strLen
- 1]))
347 for (i
= 0; i
< strLen
; i
++)
349 if (is_quotable_char(((LPCWSTR
)pValue
->pbData
)[i
]))
351 if (((LPCWSTR
)pValue
->pbData
)[i
] == '"')
364 for (i
= 0; i
< strLen
&& ptr
- psz
< csz
; ptr
++, i
++)
366 *ptr
= ((LPCWSTR
)pValue
->pbData
)[i
];
367 if (((LPCWSTR
)pValue
->pbData
)[i
] == '"' && ptr
- psz
< csz
- 1)
370 if (needsQuotes
&& ptr
- psz
< csz
)
376 FIXME("string type %d unimplemented\n", dwValueType
);
386 TRACE("returning %d (%s)\n", ret
, debugstr_w(psz
));
390 /* Adds the prefix prefix to the string pointed to by psz, followed by the
391 * character '='. Copies no more than csz characters. Returns the number of
392 * characters copied. If psz is NULL, returns the number of characters that
395 static DWORD
CRYPT_AddPrefixA(LPCSTR prefix
, LPSTR psz
, DWORD csz
)
399 TRACE("(%s, %p, %d)\n", debugstr_a(prefix
), psz
, csz
);
403 chars
= min(strlen(prefix
), csz
);
404 memcpy(psz
, prefix
, chars
);
405 *(psz
+ chars
) = '=';
409 chars
= lstrlenA(prefix
) + 1;
413 DWORD WINAPI
CertNameToStrA(DWORD dwCertEncodingType
, PCERT_NAME_BLOB pName
,
414 DWORD dwStrType
, LPSTR psz
, DWORD csz
)
416 static const DWORD unsupportedFlags
= CERT_NAME_STR_NO_QUOTING_FLAG
|
417 CERT_NAME_STR_ENABLE_T61_UNICODE_FLAG
;
418 static const char commaSep
[] = ", ";
419 static const char semiSep
[] = "; ";
420 static const char crlfSep
[] = "\r\n";
421 static const char plusSep
[] = " + ";
422 static const char spaceSep
[] = " ";
423 DWORD ret
= 0, bytes
= 0;
425 CERT_NAME_INFO
*info
;
427 TRACE("(%d, %p, %08x, %p, %d)\n", dwCertEncodingType
, pName
, dwStrType
,
429 if (dwStrType
& unsupportedFlags
)
430 FIXME("unsupported flags: %08x\n", dwStrType
& unsupportedFlags
);
432 bRet
= CryptDecodeObjectEx(dwCertEncodingType
, X509_NAME
, pName
->pbData
,
433 pName
->cbData
, CRYPT_DECODE_ALLOC_FLAG
, NULL
, &info
, &bytes
);
436 DWORD i
, j
, sepLen
, rdnSepLen
;
438 BOOL reverse
= dwStrType
& CERT_NAME_STR_REVERSE_FLAG
;
439 const CERT_RDN
*rdn
= info
->rgRDN
;
441 if(reverse
&& info
->cRDN
> 1) rdn
+= (info
->cRDN
- 1);
443 if (dwStrType
& CERT_NAME_STR_SEMICOLON_FLAG
)
445 else if (dwStrType
& CERT_NAME_STR_CRLF_FLAG
)
449 sepLen
= strlen(sep
);
450 if (dwStrType
& CERT_NAME_STR_NO_PLUS_FLAG
)
454 rdnSepLen
= strlen(rdnSep
);
455 for (i
= 0; (!psz
|| ret
< csz
) && i
< info
->cRDN
; i
++)
457 for (j
= 0; (!psz
|| ret
< csz
) && j
< rdn
->cRDNAttr
; j
++)
460 char prefixBuf
[13]; /* big enough for SERIALNUMBER */
461 LPCSTR prefix
= NULL
;
463 if ((dwStrType
& 0x000000ff) == CERT_OID_NAME_STR
)
464 prefix
= rdn
->rgRDNAttr
[j
].pszObjId
;
465 else if ((dwStrType
& 0x000000ff) == CERT_X500_NAME_STR
)
467 PCCRYPT_OID_INFO oidInfo
= CryptFindOIDInfo(
468 CRYPT_OID_INFO_OID_KEY
,
469 rdn
->rgRDNAttr
[j
].pszObjId
,
470 CRYPT_RDN_ATTR_OID_GROUP_ID
);
474 WideCharToMultiByte(CP_ACP
, 0, oidInfo
->pwszName
, -1,
475 prefixBuf
, sizeof(prefixBuf
), NULL
, NULL
);
479 prefix
= rdn
->rgRDNAttr
[j
].pszObjId
;
483 /* - 1 is needed to account for the NULL terminator. */
484 chars
= CRYPT_AddPrefixA(prefix
,
485 psz
? psz
+ ret
: NULL
, psz
? csz
- ret
- 1 : 0);
488 chars
= quote_rdn_value_to_str_a(
489 rdn
->rgRDNAttr
[j
].dwValueType
,
490 &rdn
->rgRDNAttr
[j
].Value
, psz
? psz
+ ret
: NULL
,
491 psz
? csz
- ret
: 0);
494 if (j
< rdn
->cRDNAttr
- 1)
496 if (psz
&& ret
< csz
- rdnSepLen
- 1)
497 memcpy(psz
+ ret
, rdnSep
, rdnSepLen
);
501 if (i
< info
->cRDN
- 1)
503 if (psz
&& ret
< csz
- sepLen
- 1)
504 memcpy(psz
+ ret
, sep
, sepLen
);
519 TRACE("Returning %s\n", debugstr_a(psz
));
523 /* Adds the prefix prefix to the wide-character string pointed to by psz,
524 * followed by the character '='. Copies no more than csz characters. Returns
525 * the number of characters copied. If psz is NULL, returns the number of
526 * characters that would be copied.
527 * Assumes the characters in prefix are ASCII (not multibyte characters.)
529 static DWORD
CRYPT_AddPrefixAToW(LPCSTR prefix
, LPWSTR psz
, DWORD csz
)
533 TRACE("(%s, %p, %d)\n", debugstr_a(prefix
), psz
, csz
);
539 chars
= min(strlen(prefix
), csz
);
540 for (i
= 0; i
< chars
; i
++)
541 *(psz
+ i
) = prefix
[i
];
542 *(psz
+ chars
) = '=';
546 chars
= lstrlenA(prefix
) + 1;
550 /* Adds the prefix prefix to the string pointed to by psz, followed by the
551 * character '='. Copies no more than csz characters. Returns the number of
552 * characters copied. If psz is NULL, returns the number of characters that
555 static DWORD
CRYPT_AddPrefixW(LPCWSTR prefix
, LPWSTR psz
, DWORD csz
)
559 TRACE("(%s, %p, %d)\n", debugstr_w(prefix
), psz
, csz
);
563 chars
= min(strlenW(prefix
), csz
);
564 memcpy(psz
, prefix
, chars
* sizeof(WCHAR
));
565 *(psz
+ chars
) = '=';
569 chars
= lstrlenW(prefix
) + 1;
573 static const WCHAR indent
[] = { ' ',' ',' ',' ',' ',0 };
575 DWORD
cert_name_to_str_with_indent(DWORD dwCertEncodingType
, DWORD indentLevel
,
576 const CERT_NAME_BLOB
*pName
, DWORD dwStrType
, LPWSTR psz
, DWORD csz
)
578 static const DWORD unsupportedFlags
= CERT_NAME_STR_NO_QUOTING_FLAG
|
579 CERT_NAME_STR_ENABLE_T61_UNICODE_FLAG
;
580 static const WCHAR commaSep
[] = { ',',' ',0 };
581 static const WCHAR semiSep
[] = { ';',' ',0 };
582 static const WCHAR crlfSep
[] = { '\r','\n',0 };
583 static const WCHAR plusSep
[] = { ' ','+',' ',0 };
584 static const WCHAR spaceSep
[] = { ' ',0 };
585 DWORD ret
= 0, bytes
= 0;
587 CERT_NAME_INFO
*info
;
589 if (dwStrType
& unsupportedFlags
)
590 FIXME("unsupported flags: %08x\n", dwStrType
& unsupportedFlags
);
592 bRet
= CryptDecodeObjectEx(dwCertEncodingType
, X509_NAME
, pName
->pbData
,
593 pName
->cbData
, CRYPT_DECODE_ALLOC_FLAG
, NULL
, &info
, &bytes
);
596 DWORD i
, j
, sepLen
, rdnSepLen
;
598 BOOL reverse
= dwStrType
& CERT_NAME_STR_REVERSE_FLAG
;
599 const CERT_RDN
*rdn
= info
->rgRDN
;
601 if(reverse
&& info
->cRDN
> 1) rdn
+= (info
->cRDN
- 1);
603 if (dwStrType
& CERT_NAME_STR_SEMICOLON_FLAG
)
605 else if (dwStrType
& CERT_NAME_STR_CRLF_FLAG
)
609 sepLen
= lstrlenW(sep
);
610 if (dwStrType
& CERT_NAME_STR_NO_PLUS_FLAG
)
614 rdnSepLen
= lstrlenW(rdnSep
);
615 for (i
= 0; (!psz
|| ret
< csz
) && i
< info
->cRDN
; i
++)
617 for (j
= 0; (!psz
|| ret
< csz
) && j
< rdn
->cRDNAttr
; j
++)
620 LPCSTR prefixA
= NULL
;
621 LPCWSTR prefixW
= NULL
;
623 if ((dwStrType
& 0x000000ff) == CERT_OID_NAME_STR
)
624 prefixA
= rdn
->rgRDNAttr
[j
].pszObjId
;
625 else if ((dwStrType
& 0x000000ff) == CERT_X500_NAME_STR
)
627 PCCRYPT_OID_INFO oidInfo
= CryptFindOIDInfo(
628 CRYPT_OID_INFO_OID_KEY
,
629 rdn
->rgRDNAttr
[j
].pszObjId
,
630 CRYPT_RDN_ATTR_OID_GROUP_ID
);
633 prefixW
= oidInfo
->pwszName
;
635 prefixA
= rdn
->rgRDNAttr
[j
].pszObjId
;
637 if (dwStrType
& CERT_NAME_STR_CRLF_FLAG
)
641 for (k
= 0; k
< indentLevel
; k
++)
645 chars
= min(strlenW(indent
), csz
- ret
- 1);
646 memcpy(psz
+ ret
, indent
, chars
* sizeof(WCHAR
));
649 chars
= strlenW(indent
);
655 /* - 1 is needed to account for the NULL terminator. */
656 chars
= CRYPT_AddPrefixW(prefixW
,
657 psz
? psz
+ ret
: NULL
, psz
? csz
- ret
- 1 : 0);
662 /* - 1 is needed to account for the NULL terminator. */
663 chars
= CRYPT_AddPrefixAToW(prefixA
,
664 psz
? psz
+ ret
: NULL
, psz
? csz
- ret
- 1 : 0);
667 chars
= quote_rdn_value_to_str_w(
668 rdn
->rgRDNAttr
[j
].dwValueType
,
669 &rdn
->rgRDNAttr
[j
].Value
, psz
? psz
+ ret
: NULL
,
670 psz
? csz
- ret
: 0);
673 if (j
< rdn
->cRDNAttr
- 1)
675 if (psz
&& ret
< csz
- rdnSepLen
- 1)
676 memcpy(psz
+ ret
, rdnSep
, rdnSepLen
* sizeof(WCHAR
));
680 if (i
< info
->cRDN
- 1)
682 if (psz
&& ret
< csz
- sepLen
- 1)
683 memcpy(psz
+ ret
, sep
, sepLen
* sizeof(WCHAR
));
701 DWORD WINAPI
CertNameToStrW(DWORD dwCertEncodingType
, PCERT_NAME_BLOB pName
,
702 DWORD dwStrType
, LPWSTR psz
, DWORD csz
)
706 TRACE("(%d, %p, %08x, %p, %d)\n", dwCertEncodingType
, pName
, dwStrType
,
709 ret
= cert_name_to_str_with_indent(dwCertEncodingType
, 0, pName
, dwStrType
,
711 TRACE("Returning %s\n", debugstr_w(psz
));
715 BOOL WINAPI
CertStrToNameA(DWORD dwCertEncodingType
, LPCSTR pszX500
,
716 DWORD dwStrType
, void *pvReserved
, BYTE
*pbEncoded
, DWORD
*pcbEncoded
,
722 TRACE("(%08x, %s, %08x, %p, %p, %p, %p)\n", dwCertEncodingType
,
723 debugstr_a(pszX500
), dwStrType
, pvReserved
, pbEncoded
, pcbEncoded
,
726 len
= MultiByteToWideChar(CP_ACP
, 0, pszX500
, -1, NULL
, 0);
729 LPWSTR x500
, errorStr
;
731 if ((x500
= CryptMemAlloc(len
* sizeof(WCHAR
))))
733 MultiByteToWideChar(CP_ACP
, 0, pszX500
, -1, x500
, len
);
734 ret
= CertStrToNameW(dwCertEncodingType
, x500
, dwStrType
,
735 pvReserved
, pbEncoded
, pcbEncoded
,
736 ppszError
? (LPCWSTR
*)&errorStr
: NULL
);
743 *ppszError
= pszX500
;
744 for (i
= 0; i
< errorStr
- x500
; i
++)
745 *ppszError
= CharNextA(*ppszError
);
754 SetLastError(ERROR_OUTOFMEMORY
);
760 SetLastError(CRYPT_E_INVALID_X500_STRING
);
762 *ppszError
= pszX500
;
770 WCHAR buf
[10]; /* big enough for L"GivenName" */
771 LPWSTR keyName
; /* usually = buf, but may be allocated */
772 DWORD keyLen
; /* full available buffer size in WCHARs */
775 static void CRYPT_InitializeKeynameKeeper(struct KeynameKeeper
*keeper
)
777 keeper
->keyName
= keeper
->buf
;
778 keeper
->keyLen
= sizeof(keeper
->buf
) / sizeof(keeper
->buf
[0]);
781 static void CRYPT_FreeKeynameKeeper(struct KeynameKeeper
*keeper
)
783 if (keeper
->keyName
!= keeper
->buf
)
784 CryptMemFree(keeper
->keyName
);
793 static void CRYPT_KeynameKeeperFromTokenW(struct KeynameKeeper
*keeper
,
794 const struct X500TokenW
*key
)
796 DWORD len
= key
->end
- key
->start
;
798 if (len
>= keeper
->keyLen
)
800 CRYPT_FreeKeynameKeeper( keeper
);
801 keeper
->keyLen
= len
+ 1;
802 keeper
->keyName
= CryptMemAlloc(keeper
->keyLen
* sizeof(WCHAR
));
804 memcpy(keeper
->keyName
, key
->start
, len
* sizeof(WCHAR
));
805 keeper
->keyName
[len
] = '\0';
806 TRACE("Keyname is %s\n", debugstr_w(keeper
->keyName
));
809 static BOOL
CRYPT_GetNextKeyW(LPCWSTR str
, struct X500TokenW
*token
,
814 while (*str
&& isspaceW(*str
))
819 while (*str
&& *str
!= '=' && !isspaceW(*str
))
821 if (*str
&& (*str
== '=' || isspaceW(*str
)))
825 TRACE("missing equals char at %s\n", debugstr_w(token
->start
));
827 *ppszError
= token
->start
;
828 SetLastError(CRYPT_E_INVALID_X500_STRING
);
837 /* Assumes separators are characters in the 0-255 range */
838 static BOOL
CRYPT_GetNextValueW(LPCWSTR str
, DWORD dwFlags
, LPCWSTR separators
,
839 WCHAR
*separator_used
, struct X500TokenW
*token
, LPCWSTR
*ppszError
)
843 TRACE("(%s, %s, %p, %p)\n", debugstr_w(str
), debugstr_w(separators
), token
,
847 while (*str
&& isspaceW(*str
))
852 if (!(dwFlags
& CERT_NAME_STR_NO_QUOTING_FLAG
) && *str
== '"')
856 while (!token
->end
&& ret
)
858 while (*str
&& *str
!= '"')
862 if (*(str
+ 1) != '"')
863 token
->end
= str
+ 1;
869 TRACE("unterminated quote at %s\n", debugstr_w(str
));
872 SetLastError(CRYPT_E_INVALID_X500_STRING
);
879 WCHAR map
[256] = { 0 };
882 map
[*separators
++] = 1;
883 while (*str
&& (*str
>= 0xff || !map
[*str
]))
886 if (map
[*str
]) *separator_used
= *str
;
891 TRACE("missing value at %s\n", debugstr_w(str
));
894 SetLastError(CRYPT_E_INVALID_X500_STRING
);
900 /* Encodes the string represented by value as the string type type into the
901 * CERT_NAME_BLOB output. If there is an error and ppszError is not NULL,
902 * *ppszError is set to the first failing character. If there is no error,
903 * output's pbData must be freed with LocalFree.
905 static BOOL
CRYPT_EncodeValueWithType(DWORD dwCertEncodingType
,
906 const struct X500TokenW
*value
, PCERT_NAME_BLOB output
, DWORD type
,
909 CERT_NAME_VALUE nameValue
= { type
, { 0, NULL
} };
912 if (value
->end
> value
->start
)
917 nameValue
.Value
.pbData
= CryptMemAlloc((value
->end
- value
->start
+ 1) *
919 if (!nameValue
.Value
.pbData
)
921 SetLastError(ERROR_OUTOFMEMORY
);
924 ptr
= (LPWSTR
)nameValue
.Value
.pbData
;
925 for (i
= 0; i
< value
->end
- value
->start
; i
++)
927 *ptr
++ = value
->start
[i
];
928 if (value
->start
[i
] == '"')
931 /* The string is NULL terminated because of a quirk in encoding
932 * unicode names values: if the length is given as 0, the value is
933 * assumed to be a NULL-terminated string.
936 nameValue
.Value
.cbData
= (LPBYTE
)ptr
- nameValue
.Value
.pbData
;
938 ret
= CryptEncodeObjectEx(dwCertEncodingType
, X509_UNICODE_NAME_VALUE
,
939 &nameValue
, CRYPT_ENCODE_ALLOC_FLAG
, NULL
, &output
->pbData
,
941 if (!ret
&& ppszError
)
943 if (type
== CERT_RDN_NUMERIC_STRING
&&
944 GetLastError() == CRYPT_E_INVALID_NUMERIC_STRING
)
945 *ppszError
= value
->start
+ output
->cbData
;
946 else if (type
== CERT_RDN_PRINTABLE_STRING
&&
947 GetLastError() == CRYPT_E_INVALID_PRINTABLE_STRING
)
948 *ppszError
= value
->start
+ output
->cbData
;
949 else if (type
== CERT_RDN_IA5_STRING
&&
950 GetLastError() == CRYPT_E_INVALID_IA5_STRING
)
951 *ppszError
= value
->start
+ output
->cbData
;
953 CryptMemFree(nameValue
.Value
.pbData
);
957 static BOOL
CRYPT_EncodeValue(DWORD dwCertEncodingType
,
958 const struct X500TokenW
*value
, PCERT_NAME_BLOB output
, const DWORD
*types
,
965 for (i
= 0; !ret
&& types
[i
]; i
++)
966 ret
= CRYPT_EncodeValueWithType(dwCertEncodingType
, value
, output
,
967 types
[i
], ppszError
);
971 static BOOL
CRYPT_ValueToRDN(DWORD dwCertEncodingType
, PCERT_NAME_INFO info
,
972 PCCRYPT_OID_INFO keyOID
, struct X500TokenW
*value
, DWORD dwStrType
, LPCWSTR
*ppszError
)
976 TRACE("OID %s, value %s\n", debugstr_a(keyOID
->pszOID
),
977 debugstr_wn(value
->start
, value
->end
- value
->start
));
980 info
->rgRDN
= CryptMemAlloc(sizeof(CERT_RDN
));
982 info
->rgRDN
= CryptMemRealloc(info
->rgRDN
,
983 (info
->cRDN
+ 1) * sizeof(CERT_RDN
));
986 /* FIXME: support multiple RDN attrs */
987 info
->rgRDN
[info
->cRDN
].rgRDNAttr
=
988 CryptMemAlloc(sizeof(CERT_RDN_ATTR
));
989 if (info
->rgRDN
[info
->cRDN
].rgRDNAttr
)
991 static const DWORD defaultTypes
[] = { CERT_RDN_PRINTABLE_STRING
,
992 CERT_RDN_BMP_STRING
, 0 };
995 info
->rgRDN
[info
->cRDN
].cRDNAttr
= 1;
996 info
->rgRDN
[info
->cRDN
].rgRDNAttr
[0].pszObjId
=
997 (LPSTR
)keyOID
->pszOID
;
998 info
->rgRDN
[info
->cRDN
].rgRDNAttr
[0].dwValueType
=
999 CERT_RDN_ENCODED_BLOB
;
1000 if (keyOID
->ExtraInfo
.cbData
)
1001 types
= (const DWORD
*)keyOID
->ExtraInfo
.pbData
;
1003 types
= defaultTypes
;
1005 /* Remove surrounding quotes */
1006 if (value
->start
[0] == '"' && !(dwStrType
& CERT_NAME_STR_NO_QUOTING_FLAG
))
1011 ret
= CRYPT_EncodeValue(dwCertEncodingType
, value
,
1012 &info
->rgRDN
[info
->cRDN
].rgRDNAttr
[0].Value
, types
, ppszError
);
1015 SetLastError(ERROR_OUTOFMEMORY
);
1019 SetLastError(ERROR_OUTOFMEMORY
);
1023 BOOL WINAPI
CertStrToNameW(DWORD dwCertEncodingType
, LPCWSTR pszX500
,
1024 DWORD dwStrType
, void *pvReserved
, BYTE
*pbEncoded
, DWORD
*pcbEncoded
,
1027 CERT_NAME_INFO info
= { 0, NULL
};
1029 struct KeynameKeeper keeper
;
1033 TRACE("(%08x, %s, %08x, %p, %p, %p, %p)\n", dwCertEncodingType
,
1034 debugstr_w(pszX500
), dwStrType
, pvReserved
, pbEncoded
, pcbEncoded
,
1037 CRYPT_InitializeKeynameKeeper(&keeper
);
1039 while (str
&& *str
&& ret
)
1041 struct X500TokenW token
;
1043 ret
= CRYPT_GetNextKeyW(str
, &token
, ppszError
);
1044 if (ret
&& token
.start
)
1046 PCCRYPT_OID_INFO keyOID
;
1048 CRYPT_KeynameKeeperFromTokenW(&keeper
, &token
);
1049 keyOID
= CryptFindOIDInfo(CRYPT_OID_INFO_NAME_KEY
, keeper
.keyName
,
1050 CRYPT_RDN_ATTR_OID_GROUP_ID
);
1054 *ppszError
= token
.start
;
1055 SetLastError(CRYPT_E_INVALID_X500_STRING
);
1061 while (isspaceW(*str
))
1067 SetLastError(CRYPT_E_INVALID_X500_STRING
);
1072 static const WCHAR commaSep
[] = { ',',0 };
1073 static const WCHAR semiSep
[] = { ';',0 };
1074 static const WCHAR crlfSep
[] = { '\r','\n',0 };
1075 static const WCHAR allSepsWithoutPlus
[] = { ',',';','\r','\n',0 };
1076 static const WCHAR allSeps
[] = { '+',',',';','\r','\n',0 };
1081 if (dwStrType
& CERT_NAME_STR_COMMA_FLAG
)
1083 else if (dwStrType
& CERT_NAME_STR_SEMICOLON_FLAG
)
1085 else if (dwStrType
& CERT_NAME_STR_CRLF_FLAG
)
1087 else if (dwStrType
& CERT_NAME_STR_NO_PLUS_FLAG
)
1088 sep
= allSepsWithoutPlus
;
1091 ret
= CRYPT_GetNextValueW(str
, dwStrType
, sep
, &sep_used
, &token
,
1096 /* if token.end points to the separator, skip it */
1097 if (str
&& sep_used
&& *str
== sep_used
) str
++;
1099 ret
= CRYPT_ValueToRDN(dwCertEncodingType
, &info
,
1100 keyOID
, &token
, dwStrType
, ppszError
);
1106 CRYPT_FreeKeynameKeeper(&keeper
);
1111 ret
= CryptEncodeObjectEx(dwCertEncodingType
, X509_NAME
, &info
,
1112 0, NULL
, pbEncoded
, pcbEncoded
);
1114 for (i
= 0; i
< info
.cRDN
; i
++)
1118 for (j
= 0; j
< info
.rgRDN
[i
].cRDNAttr
; j
++)
1119 LocalFree(info
.rgRDN
[i
].rgRDNAttr
[j
].Value
.pbData
);
1120 CryptMemFree(info
.rgRDN
[i
].rgRDNAttr
);
1122 CryptMemFree(info
.rgRDN
);
1126 DWORD WINAPI
CertGetNameStringA(PCCERT_CONTEXT pCertContext
, DWORD dwType
,
1127 DWORD dwFlags
, void *pvTypePara
, LPSTR pszNameString
, DWORD cchNameString
)
1131 TRACE("(%p, %d, %08x, %p, %p, %d)\n", pCertContext
, dwType
, dwFlags
,
1132 pvTypePara
, pszNameString
, cchNameString
);
1139 nameLen
= CertGetNameStringW(pCertContext
, dwType
, dwFlags
, pvTypePara
,
1141 wideName
= CryptMemAlloc(nameLen
* sizeof(WCHAR
));
1144 CertGetNameStringW(pCertContext
, dwType
, dwFlags
, pvTypePara
,
1146 nameLen
= WideCharToMultiByte(CP_ACP
, 0, wideName
, nameLen
,
1147 pszNameString
, cchNameString
, NULL
, NULL
);
1148 if (nameLen
<= cchNameString
)
1152 pszNameString
[cchNameString
- 1] = '\0';
1153 ret
= cchNameString
;
1155 CryptMemFree(wideName
);
1159 *pszNameString
= '\0';
1164 ret
= CertGetNameStringW(pCertContext
, dwType
, dwFlags
, pvTypePara
,
1169 /* Searches cert's extensions for the alternate name extension with OID
1170 * altNameOID, and if found, searches it for the alternate name type entryType.
1171 * If found, returns a pointer to the entry, otherwise returns NULL.
1172 * Regardless of whether an entry of the desired type is found, if the
1173 * alternate name extension is present, sets *info to the decoded alternate
1174 * name extension, which you must free using LocalFree.
1175 * The return value is a pointer within *info, so don't free *info before
1176 * you're done with the return value.
1178 static PCERT_ALT_NAME_ENTRY
cert_find_alt_name_entry(PCCERT_CONTEXT cert
,
1179 LPCSTR altNameOID
, DWORD entryType
, PCERT_ALT_NAME_INFO
*info
)
1181 PCERT_ALT_NAME_ENTRY entry
= NULL
;
1182 PCERT_EXTENSION ext
= CertFindExtension(altNameOID
,
1183 cert
->pCertInfo
->cExtension
, cert
->pCertInfo
->rgExtension
);
1189 if (CryptDecodeObjectEx(cert
->dwCertEncodingType
, X509_ALTERNATE_NAME
,
1190 ext
->Value
.pbData
, ext
->Value
.cbData
, CRYPT_DECODE_ALLOC_FLAG
, NULL
,
1195 for (i
= 0; !entry
&& i
< (*info
)->cAltEntry
; i
++)
1196 if ((*info
)->rgAltEntry
[i
].dwAltNameChoice
== entryType
)
1197 entry
= &(*info
)->rgAltEntry
[i
];
1205 static DWORD
cert_get_name_from_rdn_attr(DWORD encodingType
,
1206 const CERT_NAME_BLOB
*name
, LPCSTR oid
, LPWSTR pszNameString
, DWORD cchNameString
)
1208 CERT_NAME_INFO
*nameInfo
;
1209 DWORD bytes
= 0, ret
= 0;
1211 if (CryptDecodeObjectEx(encodingType
, X509_NAME
, name
->pbData
,
1212 name
->cbData
, CRYPT_DECODE_ALLOC_FLAG
, NULL
, &nameInfo
, &bytes
))
1214 PCERT_RDN_ATTR nameAttr
;
1217 oid
= szOID_RSA_emailAddr
;
1218 nameAttr
= CertFindRDNAttr(oid
, nameInfo
);
1220 ret
= CertRDNValueToStrW(nameAttr
->dwValueType
, &nameAttr
->Value
,
1221 pszNameString
, cchNameString
);
1222 LocalFree(nameInfo
);
1227 DWORD WINAPI
CertGetNameStringW(PCCERT_CONTEXT pCertContext
, DWORD dwType
,
1228 DWORD dwFlags
, void *pvTypePara
, LPWSTR pszNameString
, DWORD cchNameString
)
1231 PCERT_NAME_BLOB name
;
1234 TRACE("(%p, %d, %08x, %p, %p, %d)\n", pCertContext
, dwType
,
1235 dwFlags
, pvTypePara
, pszNameString
, cchNameString
);
1240 if (dwFlags
& CERT_NAME_ISSUER_FLAG
)
1242 name
= &pCertContext
->pCertInfo
->Issuer
;
1243 altNameOID
= szOID_ISSUER_ALT_NAME
;
1247 name
= &pCertContext
->pCertInfo
->Subject
;
1248 altNameOID
= szOID_SUBJECT_ALT_NAME
;
1253 case CERT_NAME_EMAIL_TYPE
:
1255 CERT_ALT_NAME_INFO
*info
;
1256 PCERT_ALT_NAME_ENTRY entry
= cert_find_alt_name_entry(pCertContext
,
1257 altNameOID
, CERT_ALT_NAME_RFC822_NAME
, &info
);
1262 ret
= strlenW(entry
->u
.pwszRfc822Name
) + 1;
1263 else if (cchNameString
)
1265 ret
= min(strlenW(entry
->u
.pwszRfc822Name
), cchNameString
- 1);
1266 memcpy(pszNameString
, entry
->u
.pwszRfc822Name
,
1267 ret
* sizeof(WCHAR
));
1268 pszNameString
[ret
++] = 0;
1274 ret
= cert_get_name_from_rdn_attr(pCertContext
->dwCertEncodingType
,
1275 name
, szOID_RSA_emailAddr
, pszNameString
, cchNameString
);
1278 case CERT_NAME_RDN_TYPE
:
1280 DWORD type
= pvTypePara
? *(DWORD
*)pvTypePara
: 0;
1283 ret
= CertNameToStrW(pCertContext
->dwCertEncodingType
, name
,
1284 type
, pszNameString
, cchNameString
);
1287 CERT_ALT_NAME_INFO
*info
;
1288 PCERT_ALT_NAME_ENTRY entry
= cert_find_alt_name_entry(pCertContext
,
1289 altNameOID
, CERT_ALT_NAME_DIRECTORY_NAME
, &info
);
1292 ret
= CertNameToStrW(pCertContext
->dwCertEncodingType
,
1293 &entry
->u
.DirectoryName
, type
, pszNameString
, cchNameString
);
1299 case CERT_NAME_ATTR_TYPE
:
1300 ret
= cert_get_name_from_rdn_attr(pCertContext
->dwCertEncodingType
,
1301 name
, pvTypePara
, pszNameString
, cchNameString
);
1304 CERT_ALT_NAME_INFO
*altInfo
;
1305 PCERT_ALT_NAME_ENTRY entry
= cert_find_alt_name_entry(pCertContext
,
1306 altNameOID
, CERT_ALT_NAME_DIRECTORY_NAME
, &altInfo
);
1309 ret
= cert_name_to_str_with_indent(X509_ASN_ENCODING
, 0,
1310 &entry
->u
.DirectoryName
, 0, pszNameString
, cchNameString
);
1315 case CERT_NAME_SIMPLE_DISPLAY_TYPE
:
1317 static const LPCSTR simpleAttributeOIDs
[] = { szOID_COMMON_NAME
,
1318 szOID_ORGANIZATIONAL_UNIT_NAME
, szOID_ORGANIZATION_NAME
,
1319 szOID_RSA_emailAddr
};
1320 CERT_NAME_INFO
*nameInfo
= NULL
;
1323 if (CryptDecodeObjectEx(pCertContext
->dwCertEncodingType
, X509_NAME
,
1324 name
->pbData
, name
->cbData
, CRYPT_DECODE_ALLOC_FLAG
, NULL
, &nameInfo
,
1327 PCERT_RDN_ATTR nameAttr
= NULL
;
1329 for (i
= 0; !nameAttr
&& i
< sizeof(simpleAttributeOIDs
) /
1330 sizeof(simpleAttributeOIDs
[0]); i
++)
1331 nameAttr
= CertFindRDNAttr(simpleAttributeOIDs
[i
], nameInfo
);
1333 ret
= CertRDNValueToStrW(nameAttr
->dwValueType
,
1334 &nameAttr
->Value
, pszNameString
, cchNameString
);
1335 LocalFree(nameInfo
);
1339 CERT_ALT_NAME_INFO
*altInfo
;
1340 PCERT_ALT_NAME_ENTRY entry
= cert_find_alt_name_entry(pCertContext
,
1341 altNameOID
, CERT_ALT_NAME_RFC822_NAME
, &altInfo
);
1345 if (!entry
&& altInfo
->cAltEntry
)
1346 entry
= &altInfo
->rgAltEntry
[0];
1350 ret
= strlenW(entry
->u
.pwszRfc822Name
) + 1;
1351 else if (cchNameString
)
1353 ret
= min(strlenW(entry
->u
.pwszRfc822Name
),
1355 memcpy(pszNameString
, entry
->u
.pwszRfc822Name
,
1356 ret
* sizeof(WCHAR
));
1357 pszNameString
[ret
++] = 0;
1365 case CERT_NAME_FRIENDLY_DISPLAY_TYPE
:
1367 DWORD cch
= cchNameString
;
1369 if (CertGetCertificateContextProperty(pCertContext
,
1370 CERT_FRIENDLY_NAME_PROP_ID
, pszNameString
, &cch
))
1373 ret
= CertGetNameStringW(pCertContext
,
1374 CERT_NAME_SIMPLE_DISPLAY_TYPE
, dwFlags
, pvTypePara
, pszNameString
,
1378 case CERT_NAME_DNS_TYPE
:
1380 CERT_ALT_NAME_INFO
*info
;
1381 PCERT_ALT_NAME_ENTRY entry
= cert_find_alt_name_entry(pCertContext
,
1382 altNameOID
, CERT_ALT_NAME_DNS_NAME
, &info
);
1387 ret
= strlenW(entry
->u
.pwszDNSName
) + 1;
1388 else if (cchNameString
)
1390 ret
= min(strlenW(entry
->u
.pwszDNSName
), cchNameString
- 1);
1391 memcpy(pszNameString
, entry
->u
.pwszDNSName
, ret
* sizeof(WCHAR
));
1392 pszNameString
[ret
++] = 0;
1398 ret
= cert_get_name_from_rdn_attr(pCertContext
->dwCertEncodingType
,
1399 name
, szOID_COMMON_NAME
, pszNameString
, cchNameString
);
1402 case CERT_NAME_URL_TYPE
:
1404 CERT_ALT_NAME_INFO
*info
;
1405 PCERT_ALT_NAME_ENTRY entry
= cert_find_alt_name_entry(pCertContext
,
1406 altNameOID
, CERT_ALT_NAME_URL
, &info
);
1411 ret
= strlenW(entry
->u
.pwszURL
) + 1;
1412 else if (cchNameString
)
1414 ret
= min(strlenW(entry
->u
.pwszURL
), cchNameString
- 1);
1415 memcpy(pszNameString
, entry
->u
.pwszURL
, ret
* sizeof(WCHAR
));
1416 pszNameString
[ret
++] = 0;
1424 FIXME("unimplemented for type %d\n", dwType
);
1432 else if (cchNameString
)
1434 pszNameString
[0] = 0;