2 * WinTrust Cryptography functions
4 * Copyright 2006 James Hawkins
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
29 #include "wine/debug.h"
31 WINE_DEFAULT_DEBUG_CHANNEL(wintrust
);
33 /***********************************************************************
34 * CryptCATAdminAcquireContext (WINTRUST.@)
36 * Get a catalog administrator context handle.
39 * catAdmin [O] Pointer to the context handle.
40 * sysSystem [I] Pointer to a GUID for the needed subsystem.
41 * dwFlags [I] Reserved.
44 * Success: TRUE. catAdmin contains the context handle.
48 BOOL WINAPI
CryptCATAdminAcquireContext(HCATADMIN
* catAdmin
,
49 const GUID
*sysSystem
, DWORD dwFlags
)
51 FIXME("%p %s %x\n", catAdmin
, debugstr_guid(sysSystem
), dwFlags
);
52 SetLastError(ERROR_CALL_NOT_IMPLEMENTED
);
56 /***********************************************************************
57 * CryptCATAdminCalcHashFromFileHandle (WINTRUST.@)
59 BOOL WINAPI
CryptCATAdminCalcHashFromFileHandle(HANDLE hFile
, DWORD
* pcbHash
,
60 BYTE
* pbHash
, DWORD dwFlags
)
62 FIXME("%p %p %p %x\n", hFile
, pcbHash
, pbHash
, dwFlags
);
63 SetLastError(ERROR_CALL_NOT_IMPLEMENTED
);
67 /***********************************************************************
68 * CryptCATAdminEnumCatalogFromHash (WINTRUST.@)
70 HCATINFO WINAPI
CryptCATAdminEnumCatalogFromHash(HCATADMIN hCatAdmin
,
74 HCATINFO
* phPrevCatInfo
)
76 FIXME("%p %p %d %d %p\n", hCatAdmin
, pbHash
, cbHash
, dwFlags
, phPrevCatInfo
);
77 SetLastError(ERROR_CALL_NOT_IMPLEMENTED
);
81 /***********************************************************************
82 * CryptCATAdminReleaseContext (WINTRUST.@)
84 * Release a catalog administrator context handle.
87 * catAdmin [I] Pointer to the context handle.
88 * dwFlags [I] Reserved.
95 BOOL WINAPI
CryptCATAdminReleaseContext(HCATADMIN hCatAdmin
, DWORD dwFlags
)
97 FIXME("%p %x\n", hCatAdmin
, dwFlags
);
98 SetLastError(ERROR_CALL_NOT_IMPLEMENTED
);
102 /***********************************************************************
103 * CryptCATClose (WINTRUST.@)
105 BOOL WINAPI
CryptCATClose(HANDLE hCatalog
)
107 FIXME("(%p) stub\n", hCatalog
);
111 /***********************************************************************
112 * CryptCATEnumerateMember (WINTRUST.@)
114 CRYPTCATMEMBER
*WINAPI
CryptCATEnumerateMember(HANDLE hCatalog
, CRYPTCATMEMBER
* pPrevMember
)
116 FIXME("(%p, %p) stub\n", hCatalog
, pPrevMember
);
120 /***********************************************************************
121 * CryptCATOpen (WINTRUST.@)
123 HANDLE WINAPI
CryptCATOpen(LPWSTR pwszFileName
, DWORD fdwOpenFlags
, HCRYPTPROV hProv
,
124 DWORD dwPublicVersion
, DWORD dwEncodingType
)
126 FIXME("(%s, %d, %ld, %d, %d) stub\n", debugstr_w(pwszFileName
), fdwOpenFlags
,
127 hProv
, dwPublicVersion
, dwEncodingType
);
131 /***********************************************************************
132 * CryptSIPCreateIndirectData (WINTRUST.@)
134 BOOL WINAPI
CryptSIPCreateIndirectData(SIP_SUBJECTINFO
* pSubjectInfo
, DWORD
* pcbIndirectData
,
135 SIP_INDIRECT_DATA
* pIndirectData
)
137 FIXME("(%p %p %p) stub\n", pSubjectInfo
, pcbIndirectData
, pIndirectData
);
142 /***********************************************************************
143 * CryptSIPGetSignedDataMsg (WINTRUST.@)
145 BOOL WINAPI
CryptSIPGetSignedDataMsg(SIP_SUBJECTINFO
* pSubjectInfo
, DWORD
* pdwEncodingType
,
146 DWORD dwIndex
, DWORD
* pcbSignedDataMsg
, BYTE
* pbSignedDataMsg
)
148 FIXME("(%p %p %d %p %p) stub\n", pSubjectInfo
, pdwEncodingType
, dwIndex
,
149 pcbSignedDataMsg
, pbSignedDataMsg
);
154 /***********************************************************************
155 * CryptSIPPutSignedDataMsg (WINTRUST.@)
157 BOOL WINAPI
CryptSIPPutSignedDataMsg(SIP_SUBJECTINFO
* pSubjectInfo
, DWORD pdwEncodingType
,
158 DWORD
* pdwIndex
, DWORD cbSignedDataMsg
, BYTE
* pbSignedDataMsg
)
160 FIXME("(%p %d %p %d %p) stub\n", pSubjectInfo
, pdwEncodingType
, pdwIndex
,
161 cbSignedDataMsg
, pbSignedDataMsg
);
166 /***********************************************************************
167 * CryptSIPRemoveSignedDataMsg (WINTRUST.@)
169 BOOL WINAPI
CryptSIPRemoveSignedDataMsg(SIP_SUBJECTINFO
* pSubjectInfo
,
172 FIXME("(%p %d) stub\n", pSubjectInfo
, dwIndex
);
177 /***********************************************************************
178 * CryptSIPVerifyIndirectData (WINTRUST.@)
180 BOOL WINAPI
CryptSIPVerifyIndirectData(SIP_SUBJECTINFO
* pSubjectInfo
,
181 SIP_INDIRECT_DATA
* pIndirectData
)
183 FIXME("(%p %p) stub\n", pSubjectInfo
, pIndirectData
);