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
32 #include "crypt32_private.h"
33 #include "wine/debug.h"
35 WINE_DEFAULT_DEBUG_CHANNEL(crypt);
37 static HCRYPTPROV hDefProv;
39 BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD fdwReason, PVOID pvReserved)
43 case DLL_PROCESS_ATTACH:
44 DisableThreadLibraryCalls(hInstance);
45 crypt_oid_init(hInstance);
47 case DLL_PROCESS_DETACH:
49 if (hDefProv) CryptReleaseContext(hDefProv, 0);
55 HCRYPTPROV CRYPT_GetDefaultProvider(void)
58 CryptAcquireContextW(&hDefProv, NULL, MS_ENHANCED_PROV_W,
59 PROV_RSA_FULL, CRYPT_VERIFYCONTEXT);
63 typedef void * HLRUCACHE;
65 /* this function is called by Internet Explorer when it is about to verify a
66 * downloaded component. The first parameter appears to be a pointer to an
67 * unknown type, native fails unless it points to a buffer of at least 20 bytes.
68 * The second parameter appears to be an out parameter, whatever it's set to is
69 * passed (by cryptnet.dll) to I_CryptFlushLruCache.
71 BOOL WINAPI I_CryptCreateLruCache(void *unknown, HLRUCACHE *out)
73 FIXME("(%p, %p): stub!\n", unknown, out);
74 *out = (void *)0xbaadf00d;
78 BOOL WINAPI I_CryptFindLruEntryData(DWORD unk0, DWORD unk1, DWORD unk2)
80 FIXME("(%08lx, %08lx, %08lx): stub!\n", unk0, unk1, unk2);
84 DWORD WINAPI I_CryptFlushLruCache(HLRUCACHE h, DWORD unk0, DWORD unk1)
86 FIXME("(%p, %08lx, %08lx): stub!\n", h, unk0, unk1);
90 HLRUCACHE WINAPI I_CryptFreeLruCache(HLRUCACHE h, DWORD unk0, DWORD unk1)
92 FIXME("(%p, %08lx, %08lx): stub!\n", h, unk0, unk1);
96 LPVOID WINAPI CryptMemAlloc(ULONG cbSize)
98 return HeapAlloc(GetProcessHeap(), 0, cbSize);
101 LPVOID WINAPI CryptMemRealloc(LPVOID pv, ULONG cbSize)
103 return HeapReAlloc(GetProcessHeap(), 0, pv, cbSize);
106 VOID WINAPI CryptMemFree(LPVOID pv)
108 HeapFree(GetProcessHeap(), 0, pv);
111 DWORD WINAPI I_CryptAllocTls(void)
116 LPVOID WINAPI I_CryptDetachTls(DWORD dwTlsIndex)
120 ret = TlsGetValue(dwTlsIndex);
121 TlsSetValue(dwTlsIndex, NULL);
125 LPVOID WINAPI I_CryptGetTls(DWORD dwTlsIndex)
127 return TlsGetValue(dwTlsIndex);
130 BOOL WINAPI I_CryptSetTls(DWORD dwTlsIndex, LPVOID lpTlsValue)
132 return TlsSetValue(dwTlsIndex, lpTlsValue);
135 BOOL WINAPI I_CryptFreeTls(DWORD dwTlsIndex, DWORD unknown)
137 TRACE("(%ld, %ld)\n", dwTlsIndex, unknown);
138 return TlsFree(dwTlsIndex);
141 BOOL WINAPI I_CryptGetOssGlobal(DWORD x)
147 HCRYPTPROV WINAPI I_CryptGetDefaultCryptProv(DWORD reserved)
151 TRACE("(%08lx)\n", reserved);
155 SetLastError(E_INVALIDARG);
156 return (HCRYPTPROV)0;
158 ret = CRYPT_GetDefaultProvider();
159 CryptContextAddRef(ret, NULL, 0);
163 BOOL WINAPI I_CryptReadTrustedPublisherDWORDValueFromRegistry(LPCWSTR name,
166 static const WCHAR safer[] = {
167 'S','o','f','t','w','a','r','e','\\','P','o','l','i','c','i','e','s','\\',
168 'M','i','c','r','o','s','o','f','t','\\','S','y','s','t','e','m',
169 'C','e','r','t','i','f','i','c','a','t','e','s','\\',
170 'T','r','u','s','t','e','d','P','u','b','l','i','s','h','e','r','\\',
171 'S','a','f','e','r',0 };
176 TRACE("(%s, %p)\n", debugstr_w(name), value);
179 rc = RegCreateKeyW(HKEY_LOCAL_MACHINE, safer, &key);
180 if (rc == ERROR_SUCCESS)
182 DWORD size = sizeof(DWORD);
184 if (!RegQueryValueExW(key, name, NULL, NULL, (LPBYTE)value, &size))
191 BOOL WINAPI I_CryptInstallOssGlobal(DWORD x, DWORD y, DWORD z)
193 FIXME("%08lx %08lx %08lx\n", x, y, z);
197 BOOL WINAPI I_CryptInstallAsn1Module(void *x, DWORD y, DWORD z)
199 FIXME("%p %08lx %08lx\n", x, y, z);
203 BOOL WINAPI I_CryptUninstallAsn1Module(void *x)
209 BOOL WINAPI CryptFormatObject(DWORD dwCertEncodingType, DWORD dwFormatType,
210 DWORD dwFormatStrType, void *pFormatStruct, LPCSTR lpszStructType,
211 const BYTE *pbEncoded, DWORD cbEncoded, void *pbFormat, DWORD *pcbFormat)
213 FIXME("(%08lx, %ld, %ld, %p, %s, %p, %ld, %p, %p): stub\n",
214 dwCertEncodingType, dwFormatType, dwFormatStrType, pFormatStruct,
215 debugstr_a(lpszStructType), pbEncoded, cbEncoded, pbFormat, pcbFormat);
219 BOOL WINAPI CryptQueryObject(DWORD dwObjectType, const void* pvObject,
220 DWORD dwExpectedContentTypeFlags, DWORD dwExpectedFormatTypeFlags,
221 DWORD dwFlags, DWORD* pdwMsgAndCertEncodingType, DWORD* pdwContentType,
222 DWORD* pdwFormatType, HCERTSTORE* phCertStore, HCRYPTMSG* phMsg,
223 const void** ppvContext)
225 FIXME( "%08lx %p %08lx %08lx %08lx %p %p %p %p %p %p", dwObjectType,
226 pvObject, dwExpectedContentTypeFlags, dwExpectedFormatTypeFlags,
227 dwFlags, pdwMsgAndCertEncodingType, pdwContentType, pdwFormatType,
228 phCertStore, phMsg, ppvContext);
232 BOOL WINAPI CryptVerifyMessageSignature(PCRYPT_VERIFY_MESSAGE_PARA pVerifyPara,
233 DWORD dwSignerIndex, const BYTE* pbSignedBlob, DWORD cbSignedBlob,
234 BYTE* pbDecoded, DWORD* pcbDecoded, PCCERT_CONTEXT* ppSignerCert)
236 FIXME("stub: %p, %ld, %p, %ld, %p, %p, %p\n",
237 pVerifyPara, dwSignerIndex, pbSignedBlob, cbSignedBlob,
238 pbDecoded, pcbDecoded, ppSignerCert);