blob: 17f717249f0820b47f86f05e6db79fea1a705b30 [file] [log] [blame]
Juan Lang02cb0c72005-08-25 09:51:59 +00001/*
2 * Copyright 2005 Juan Lang
3 *
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.
8 *
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.
13 *
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
Jonathan Ernst360a3f92006-05-18 14:49:52 +020016 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
Juan Lang02cb0c72005-08-25 09:51:59 +000017 */
18
19#ifndef __CRYPT32_PRIVATE_H__
20#define __CRYPT32_PRIVATE_H__
21
Juan Langf224b342006-05-15 17:01:28 -070022/* a few asn.1 tags we need */
23#define ASN_BOOL (ASN_UNIVERSAL | ASN_PRIMITIVE | 0x01)
24#define ASN_BITSTRING (ASN_UNIVERSAL | ASN_PRIMITIVE | 0x03)
25#define ASN_ENUMERATED (ASN_UNIVERSAL | ASN_PRIMITIVE | 0x0a)
Juan Langead21182006-07-19 07:44:48 -070026#define ASN_UTF8STRING (ASN_UNIVERSAL | ASN_PRIMITIVE | 0x0c)
Juan Langf224b342006-05-15 17:01:28 -070027#define ASN_SETOF (ASN_UNIVERSAL | ASN_PRIMITIVE | 0x11)
28#define ASN_NUMERICSTRING (ASN_UNIVERSAL | ASN_PRIMITIVE | 0x12)
29#define ASN_PRINTABLESTRING (ASN_UNIVERSAL | ASN_PRIMITIVE | 0x13)
Juan Langdd4bd4a2006-06-02 13:20:13 -070030#define ASN_T61STRING (ASN_UNIVERSAL | ASN_PRIMITIVE | 0x14)
Juan Langead21182006-07-19 07:44:48 -070031#define ASN_VIDEOTEXSTRING (ASN_UNIVERSAL | ASN_PRIMITIVE | 0x15)
Juan Langf224b342006-05-15 17:01:28 -070032#define ASN_IA5STRING (ASN_UNIVERSAL | ASN_PRIMITIVE | 0x16)
33#define ASN_UTCTIME (ASN_UNIVERSAL | ASN_PRIMITIVE | 0x17)
34#define ASN_GENERALTIME (ASN_UNIVERSAL | ASN_PRIMITIVE | 0x18)
Juan Langead21182006-07-19 07:44:48 -070035#define ASN_GRAPHICSTRING (ASN_UNIVERSAL | ASN_PRIMITIVE | 0x19)
36#define ASN_VISIBLESTRING (ASN_UNIVERSAL | ASN_PRIMITIVE | 0x1a)
37#define ASN_GENERALSTRING (ASN_UNIVERSAL | ASN_PRIMITIVE | 0x1b)
38#define ASN_UNIVERSALSTRING (ASN_UNIVERSAL | ASN_PRIMITIVE | 0x1c)
39#define ASN_BMPSTRING (ASN_UNIVERSAL | ASN_PRIMITIVE | 0x1e)
Juan Langf224b342006-05-15 17:01:28 -070040
Juan Lang48afa162007-07-12 14:09:00 -070041BOOL CRYPT_EncodeLen(DWORD len, BYTE *pbEncoded, DWORD *pcbEncoded);
42
43typedef BOOL (WINAPI *CryptEncodeObjectExFunc)(DWORD, LPCSTR, const void *,
44 DWORD, PCRYPT_ENCODE_PARA, BYTE *, DWORD *);
45
46struct AsnEncodeSequenceItem
47{
48 const void *pvStructInfo;
49 CryptEncodeObjectExFunc encodeFunc;
50 DWORD size; /* used during encoding, not for your use */
51};
52
53BOOL WINAPI CRYPT_AsnEncodeSequence(DWORD dwCertEncodingType,
54 struct AsnEncodeSequenceItem items[], DWORD cItem, DWORD dwFlags,
55 PCRYPT_ENCODE_PARA pEncodePara, BYTE *pbEncoded, DWORD *pcbEncoded);
56
57struct AsnConstructedItem
58{
59 BYTE tag;
60 const void *pvStructInfo;
61 CryptEncodeObjectExFunc encodeFunc;
62};
63
64BOOL WINAPI CRYPT_AsnEncodeConstructed(DWORD dwCertEncodingType,
65 LPCSTR lpszStructType, const void *pvStructInfo, DWORD dwFlags,
66 PCRYPT_ENCODE_PARA pEncodePara, BYTE *pbEncoded, DWORD *pcbEncoded);
67
68BOOL WINAPI CRYPT_AsnEncodeOid(DWORD dwCertEncodingType,
69 LPCSTR lpszStructType, const void *pvStructInfo, DWORD dwFlags,
70 PCRYPT_ENCODE_PARA pEncodePara, BYTE *pbEncoded, DWORD *pcbEncoded);
71
72/* Helper function to check *pcbEncoded, set it to the required size, and
73 * optionally to allocate memory. Assumes pbEncoded is not NULL.
74 * If CRYPT_ENCODE_ALLOC_FLAG is set in dwFlags, *pbEncoded will be set to a
75 * pointer to the newly allocated memory.
76 */
77BOOL CRYPT_EncodeEnsureSpace(DWORD dwFlags, PCRYPT_ENCODE_PARA pEncodePara,
78 BYTE *pbEncoded, DWORD *pcbEncoded, DWORD bytesNeeded);
79
Juan Langc3a12512006-03-03 10:48:52 -080080/* The following aren't defined in wincrypt.h, as they're "reserved" */
81#define CERT_CERT_PROP_ID 32
82#define CERT_CRL_PROP_ID 33
83#define CERT_CTL_PROP_ID 34
84
Juan Lang02cb0c72005-08-25 09:51:59 +000085/* Returns a handle to the default crypto provider; loads it if necessary.
86 * Returns NULL on failure.
87 */
88HCRYPTPROV CRYPT_GetDefaultProvider(void);
89
Juan Lang690f9842006-02-23 13:18:13 -080090void crypt_oid_init(HINSTANCE hinst);
91void crypt_oid_free(void);
Juan Lang19c3a092007-07-09 17:07:54 -070092void crypt_sip_free(void);
Juan Langf7027942005-12-02 11:28:09 +010093
Juan Langd9a02792006-05-18 07:31:53 -070094/* Some typedefs that make it easier to abstract which type of context we're
95 * working with.
96 */
97typedef const void *(WINAPI *CreateContextFunc)(DWORD dwCertEncodingType,
98 const BYTE *pbCertEncoded, DWORD cbCertEncoded);
99typedef BOOL (WINAPI *AddContextToStoreFunc)(HCERTSTORE hCertStore,
100 const void *context, DWORD dwAddDisposition, const void **ppStoreContext);
101typedef BOOL (WINAPI *AddEncodedContextToStoreFunc)(HCERTSTORE hCertStore,
102 DWORD dwCertEncodingType, const BYTE *pbEncoded, DWORD cbEncoded,
103 DWORD dwAddDisposition, const void **ppContext);
104typedef const void *(WINAPI *DuplicateContextFunc)(const void *context);
105typedef const void *(WINAPI *EnumContextsInStoreFunc)(HCERTSTORE hCertStore,
106 const void *pPrevContext);
Juan Langf94d49d2006-05-25 19:43:30 -0700107typedef DWORD (WINAPI *EnumPropertiesFunc)(const void *context, DWORD dwPropId);
Juan Langd9a02792006-05-18 07:31:53 -0700108typedef BOOL (WINAPI *GetContextPropertyFunc)(const void *context,
109 DWORD dwPropID, void *pvData, DWORD *pcbData);
110typedef BOOL (WINAPI *SetContextPropertyFunc)(const void *context,
111 DWORD dwPropID, DWORD dwFlags, const void *pvData);
112typedef BOOL (WINAPI *SerializeElementFunc)(const void *context, DWORD dwFlags,
113 BYTE *pbElement, DWORD *pcbElement);
114typedef BOOL (WINAPI *FreeContextFunc)(const void *context);
115typedef BOOL (WINAPI *DeleteContextFunc)(const void *context);
116
117/* An abstract context (certificate, CRL, or CTL) interface */
118typedef struct _WINE_CONTEXT_INTERFACE
119{
120 CreateContextFunc create;
121 AddContextToStoreFunc addContextToStore;
122 AddEncodedContextToStoreFunc addEncodedToStore;
123 DuplicateContextFunc duplicate;
124 EnumContextsInStoreFunc enumContextsInStore;
Juan Langf94d49d2006-05-25 19:43:30 -0700125 EnumPropertiesFunc enumProps;
Juan Langd9a02792006-05-18 07:31:53 -0700126 GetContextPropertyFunc getProp;
127 SetContextPropertyFunc setProp;
128 SerializeElementFunc serialize;
129 FreeContextFunc free;
130 DeleteContextFunc deleteFromStore;
131} WINE_CONTEXT_INTERFACE, *PWINE_CONTEXT_INTERFACE;
132typedef const WINE_CONTEXT_INTERFACE *PCWINE_CONTEXT_INTERFACE;
133
134extern PCWINE_CONTEXT_INTERFACE pCertInterface;
135extern PCWINE_CONTEXT_INTERFACE pCRLInterface;
136extern PCWINE_CONTEXT_INTERFACE pCTLInterface;
137
Juan Langc3a12512006-03-03 10:48:52 -0800138/* Helper function for store reading functions and
139 * CertAddSerializedElementToStore. Returns a context of the appropriate type
140 * if it can, or NULL otherwise. Doesn't validate any of the properties in
141 * the serialized context (for example, bad hashes are retained.)
142 * *pdwContentType is set to the type of the returned context.
143 */
144const void *CRYPT_ReadSerializedElement(const BYTE *pbElement,
145 DWORD cbElement, DWORD dwContextTypeFlags, DWORD *pdwContentType);
146
Juan Lang6e23b4a2006-07-25 16:29:50 -0700147/* Writes contexts from the memory store to the file. */
148BOOL CRYPT_WriteSerializedFile(HANDLE file, HCERTSTORE store);
149
150/* Reads contexts serialized in the file into the memory store. Returns FALSE
151 * if the file is not of the expected format.
152 */
153BOOL CRYPT_ReadSerializedFile(HANDLE file, HCERTSTORE store);
154
Juan Lang30bf5d92006-07-17 23:02:57 -0700155/* Fixes up the the pointers in info, where info is assumed to be a
156 * CRYPT_KEY_PROV_INFO, followed by its container name, provider name, and any
157 * provider parameters, in a contiguous buffer, but where info's pointers are
158 * assumed to be invalid. Upon return, info's pointers point to the
159 * appropriate memory locations.
160 */
161void CRYPT_FixKeyProvInfoPointers(PCRYPT_KEY_PROV_INFO info);
162
Juan Lang91b80fc2006-03-09 19:06:42 -0800163/**
Juan Lange48a0a32006-05-22 13:59:52 -0700164 * Context functions
Juan Lang91b80fc2006-03-09 19:06:42 -0800165 */
Juan Lange48a0a32006-05-22 13:59:52 -0700166
167/* Allocates a new data context, a context which owns properties directly.
168 * contextSize is the size of the public data type associated with context,
169 * which should be one of CERT_CONTEXT, CRL_CONTEXT, or CTL_CONTEXT.
170 * Free with Context_Release.
171 */
172void *Context_CreateDataContext(size_t contextSize);
173
174/* Creates a new link context with extra bytes. The context refers to linked
175 * rather than owning its own properties. If addRef is TRUE (which ordinarily
176 * it should be) linked is addref'd.
177 * Free with Context_Release.
178 */
Alexandre Julliarddbd473f2006-06-13 14:14:00 +0200179void *Context_CreateLinkContext(unsigned int contextSize, void *linked, unsigned int extra,
Juan Lange48a0a32006-05-22 13:59:52 -0700180 BOOL addRef);
181
182/* Returns a pointer to the extra bytes allocated with context, which must be
183 * a link context.
184 */
185void *Context_GetExtra(const void *context, size_t contextSize);
186
187/* Gets the context linked to by context, which must be a link context. */
188void *Context_GetLinkedContext(void *context, size_t contextSize);
189
Juan Langdc660a82006-05-26 09:41:37 -0700190/* Copies properties from fromContext to toContext. */
191void Context_CopyProperties(const void *to, const void *from,
192 size_t contextSize);
193
Juan Lang91b80fc2006-03-09 19:06:42 -0800194struct _CONTEXT_PROPERTY_LIST;
195typedef struct _CONTEXT_PROPERTY_LIST *PCONTEXT_PROPERTY_LIST;
196
Juan Lange48a0a32006-05-22 13:59:52 -0700197/* Returns context's properties, or the linked context's properties if context
198 * is a link context.
199 */
200PCONTEXT_PROPERTY_LIST Context_GetProperties(void *context, size_t contextSize);
201
202void Context_AddRef(void *context, size_t contextSize);
203
204typedef void (*ContextFreeFunc)(void *context);
205
206/* Decrements context's ref count. If context is a link context, releases its
207 * linked context as well.
208 * If a data context has its ref count reach 0, calls dataContextFree on it.
209 */
210void Context_Release(void *context, size_t contextSize,
211 ContextFreeFunc dataContextFree);
212
213/**
214 * Context property list functions
215 */
216
Juan Lang91b80fc2006-03-09 19:06:42 -0800217PCONTEXT_PROPERTY_LIST ContextPropertyList_Create(void);
218
219/* Searches for the property with ID id in the context. Returns TRUE if found,
220 * and copies the property's length and a pointer to its data to blob.
221 * Otherwise returns FALSE.
222 */
223BOOL ContextPropertyList_FindProperty(PCONTEXT_PROPERTY_LIST list, DWORD id,
224 PCRYPT_DATA_BLOB blob);
225
226BOOL ContextPropertyList_SetProperty(PCONTEXT_PROPERTY_LIST list, DWORD id,
227 const BYTE *pbData, size_t cbData);
228
229void ContextPropertyList_RemoveProperty(PCONTEXT_PROPERTY_LIST list, DWORD id);
230
231DWORD ContextPropertyList_EnumPropIDs(PCONTEXT_PROPERTY_LIST list, DWORD id);
232
233void ContextPropertyList_Copy(PCONTEXT_PROPERTY_LIST to,
234 PCONTEXT_PROPERTY_LIST from);
235
236void ContextPropertyList_Free(PCONTEXT_PROPERTY_LIST list);
237
Juan Lange48a0a32006-05-22 13:59:52 -0700238/**
239 * Context list functions. A context list is a simple list of link contexts.
240 */
241struct ContextList;
242
243struct ContextList *ContextList_Create(
244 PCWINE_CONTEXT_INTERFACE contextInterface, size_t contextSize);
245
246void *ContextList_Add(struct ContextList *list, void *toLink, void *toReplace);
247
248void *ContextList_Enum(struct ContextList *list, void *pPrev);
249
250void ContextList_Delete(struct ContextList *list, void *context);
251
252void ContextList_Empty(struct ContextList *list);
253
254void ContextList_Free(struct ContextList *list);
255
Juan Lang02cb0c72005-08-25 09:51:59 +0000256#endif