2 * Copyright 2002 Mike McCormack for CodeWeavers
3 * Copyright 2005 Juan Lang
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
29 #include "crypt32_private.h"
30 #include "wine/debug.h"
32 WINE_DEFAULT_DEBUG_CHANNEL(crypt);
34 static HCRYPTPROV hDefProv;
36 BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD fdwReason, PVOID pvReserved)
40 case DLL_PROCESS_ATTACH:
41 DisableThreadLibraryCalls(hInstance);
42 crypt_oid_init(hInstance);
44 case DLL_PROCESS_DETACH:
47 default_chain_engine_free();
48 if (hDefProv) CryptReleaseContext(hDefProv, 0);
54 HCRYPTPROV CRYPT_GetDefaultProvider(void)
57 CryptAcquireContextW(&hDefProv, NULL, MS_ENHANCED_PROV_W,
58 PROV_RSA_FULL, CRYPT_VERIFYCONTEXT);
62 typedef void * HLRUCACHE;
64 /* this function is called by Internet Explorer when it is about to verify a
65 * downloaded component. The first parameter appears to be a pointer to an
66 * unknown type, native fails unless it points to a buffer of at least 20 bytes.
67 * The second parameter appears to be an out parameter, whatever it's set to is
68 * passed (by cryptnet.dll) to I_CryptFlushLruCache.
70 BOOL WINAPI I_CryptCreateLruCache(void *unknown, HLRUCACHE *out)
72 FIXME("(%p, %p): stub!\n", unknown, out);
73 *out = (void *)0xbaadf00d;
77 BOOL WINAPI I_CryptFindLruEntryData(DWORD unk0, DWORD unk1, DWORD unk2)
79 FIXME("(%08x, %08x, %08x): stub!\n", unk0, unk1, unk2);
83 DWORD WINAPI I_CryptFlushLruCache(HLRUCACHE h, DWORD unk0, DWORD unk1)
85 FIXME("(%p, %08x, %08x): stub!\n", h, unk0, unk1);
89 HLRUCACHE WINAPI I_CryptFreeLruCache(HLRUCACHE h, DWORD unk0, DWORD unk1)
91 FIXME("(%p, %08x, %08x): stub!\n", h, unk0, unk1);
95 LPVOID WINAPI CryptMemAlloc(ULONG cbSize)
97 return HeapAlloc(GetProcessHeap(), 0, cbSize);
100 LPVOID WINAPI CryptMemRealloc(LPVOID pv, ULONG cbSize)
102 return HeapReAlloc(GetProcessHeap(), 0, pv, cbSize);
105 VOID WINAPI CryptMemFree(LPVOID pv)
107 HeapFree(GetProcessHeap(), 0, pv);
110 DWORD WINAPI I_CryptAllocTls(void)
115 LPVOID WINAPI I_CryptDetachTls(DWORD dwTlsIndex)
119 ret = TlsGetValue(dwTlsIndex);
120 TlsSetValue(dwTlsIndex, NULL);
124 LPVOID WINAPI I_CryptGetTls(DWORD dwTlsIndex)
126 return TlsGetValue(dwTlsIndex);
129 BOOL WINAPI I_CryptSetTls(DWORD dwTlsIndex, LPVOID lpTlsValue)
131 return TlsSetValue(dwTlsIndex, lpTlsValue);
134 BOOL WINAPI I_CryptFreeTls(DWORD dwTlsIndex, DWORD unknown)
136 TRACE("(%d, %d)\n", dwTlsIndex, unknown);
137 return TlsFree(dwTlsIndex);
140 BOOL WINAPI I_CryptGetOssGlobal(DWORD x)
146 HCRYPTPROV WINAPI I_CryptGetDefaultCryptProv(DWORD reserved)
150 TRACE("(%08x)\n", reserved);
154 SetLastError(E_INVALIDARG);
155 return (HCRYPTPROV)0;
157 ret = CRYPT_GetDefaultProvider();
158 CryptContextAddRef(ret, NULL, 0);
162 BOOL WINAPI I_CryptReadTrustedPublisherDWORDValueFromRegistry(LPCWSTR name,
165 static const WCHAR safer[] = {
166 'S','o','f','t','w','a','r','e','\\','P','o','l','i','c','i','e','s','\\',
167 'M','i','c','r','o','s','o','f','t','\\','S','y','s','t','e','m',
168 'C','e','r','t','i','f','i','c','a','t','e','s','\\',
169 'T','r','u','s','t','e','d','P','u','b','l','i','s','h','e','r','\\',
170 'S','a','f','e','r',0 };
175 TRACE("(%s, %p)\n", debugstr_w(name), value);
178 rc = RegCreateKeyW(HKEY_LOCAL_MACHINE, safer, &key);
179 if (rc == ERROR_SUCCESS)
181 DWORD size = sizeof(DWORD);
183 if (!RegQueryValueExW(key, name, NULL, NULL, (LPBYTE)value, &size))
190 DWORD WINAPI I_CryptInstallOssGlobal(DWORD x, DWORD y, DWORD z)
194 FIXME("%08x %08x %08x, return value %d\n", x, y, z,ret);
198 BOOL WINAPI I_CryptInstallAsn1Module(void *x, DWORD y, DWORD z)
200 FIXME("%p %08x %08x\n", x, y, z);
204 BOOL WINAPI I_CryptUninstallAsn1Module(void *x)
210 void *WINAPI I_CryptGetAsn1Decoder(long x)
216 BOOL WINAPI CryptFormatObject(DWORD dwCertEncodingType, DWORD dwFormatType,
217 DWORD dwFormatStrType, void *pFormatStruct, LPCSTR lpszStructType,
218 const BYTE *pbEncoded, DWORD cbEncoded, void *pbFormat, DWORD *pcbFormat)
220 FIXME("(%08x, %d, %d, %p, %s, %p, %d, %p, %p): stub\n",
221 dwCertEncodingType, dwFormatType, dwFormatStrType, pFormatStruct,
222 debugstr_a(lpszStructType), pbEncoded, cbEncoded, pbFormat, pcbFormat);
226 BOOL WINAPI CryptQueryObject(DWORD dwObjectType, const void* pvObject,
227 DWORD dwExpectedContentTypeFlags, DWORD dwExpectedFormatTypeFlags,
228 DWORD dwFlags, DWORD* pdwMsgAndCertEncodingType, DWORD* pdwContentType,
229 DWORD* pdwFormatType, HCERTSTORE* phCertStore, HCRYPTMSG* phMsg,
230 const void** ppvContext)
232 FIXME( "%08x %p %08x %08x %08x %p %p %p %p %p %p\n", dwObjectType,
233 pvObject, dwExpectedContentTypeFlags, dwExpectedFormatTypeFlags,
234 dwFlags, pdwMsgAndCertEncodingType, pdwContentType, pdwFormatType,
235 phCertStore, phMsg, ppvContext);