shell32: Added a stub for IShellDispatch2.
[wine] / dlls / rsaenh / rsaenh.c
1 /*
2  * dlls/rsaenh/rsaenh.c
3  * RSAENH - RSA encryption for Wine
4  *
5  * Copyright 2002 TransGaming Technologies (David Hammerton)
6  * Copyright 2004 Mike McCormack for CodeWeavers
7  * Copyright 2004, 2005 Michael Jung
8  * Copyright 2007 Vijay Kiran Kamuju
9  *
10  * This library is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU Lesser General Public
12  * License as published by the Free Software Foundation; either
13  * version 2.1 of the License, or (at your option) any later version.
14  *
15  * This library is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18  * Lesser General Public License for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public
21  * License along with this library; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23  */
24
25 #include "config.h"
26 #include "wine/port.h"
27 #include "wine/library.h"
28 #include "wine/debug.h"
29
30 #include <stdarg.h>
31 #include <stdio.h>
32
33 #include "windef.h"
34 #include "winbase.h"
35 #include "winreg.h"
36 #include "wincrypt.h"
37 #include "handle.h"
38 #include "implglue.h"
39 #include "objbase.h"
40 #include "rpcproxy.h"
41
42 WINE_DEFAULT_DEBUG_CHANNEL(crypt);
43
44 static HINSTANCE instance;
45
46 /******************************************************************************
47  * CRYPTHASH - hash objects
48  */
49 #define RSAENH_MAGIC_HASH           0x85938417u
50 #define RSAENH_MAX_HASH_SIZE        104
51 #define RSAENH_HASHSTATE_HASHING    1
52 #define RSAENH_HASHSTATE_FINISHED   2
53 typedef struct _RSAENH_TLS1PRF_PARAMS
54 {
55     CRYPT_DATA_BLOB blobLabel;
56     CRYPT_DATA_BLOB blobSeed;
57 } RSAENH_TLS1PRF_PARAMS;
58
59 typedef struct tagCRYPTHASH
60 {
61     OBJECTHDR    header;
62     ALG_ID       aiAlgid;
63     HCRYPTKEY    hKey;
64     HCRYPTPROV   hProv;
65     DWORD        dwHashSize;
66     DWORD        dwState;
67     HASH_CONTEXT context;
68     BYTE         abHashValue[RSAENH_MAX_HASH_SIZE];
69     PHMAC_INFO   pHMACInfo;
70     RSAENH_TLS1PRF_PARAMS tpPRFParams;
71 } CRYPTHASH;
72
73 /******************************************************************************
74  * CRYPTKEY - key objects
75  */
76 #define RSAENH_MAGIC_KEY           0x73620457u
77 #define RSAENH_MAX_KEY_SIZE        64
78 #define RSAENH_MAX_BLOCK_SIZE      24
79 #define RSAENH_KEYSTATE_IDLE       0
80 #define RSAENH_KEYSTATE_ENCRYPTING 1
81 #define RSAENH_KEYSTATE_MASTERKEY  2
82 typedef struct _RSAENH_SCHANNEL_INFO 
83 {
84     SCHANNEL_ALG saEncAlg;
85     SCHANNEL_ALG saMACAlg;
86     CRYPT_DATA_BLOB blobClientRandom;
87     CRYPT_DATA_BLOB blobServerRandom;
88 } RSAENH_SCHANNEL_INFO;
89
90 typedef struct tagCRYPTKEY
91 {
92     OBJECTHDR   header;
93     ALG_ID      aiAlgid;
94     HCRYPTPROV  hProv;
95     DWORD       dwMode;
96     DWORD       dwModeBits;
97     DWORD       dwPermissions;
98     DWORD       dwKeyLen;
99     DWORD       dwEffectiveKeyLen;
100     DWORD       dwSaltLen;
101     DWORD       dwBlockLen;
102     DWORD       dwState;
103     KEY_CONTEXT context;    
104     BYTE        abKeyValue[RSAENH_MAX_KEY_SIZE];
105     BYTE        abInitVector[RSAENH_MAX_BLOCK_SIZE];
106     BYTE        abChainVector[RSAENH_MAX_BLOCK_SIZE];
107     RSAENH_SCHANNEL_INFO siSChannelInfo;
108     CRYPT_DATA_BLOB blobHmacKey;
109 } CRYPTKEY;
110
111 /******************************************************************************
112  * KEYCONTAINER - key containers
113  */
114 #define RSAENH_PERSONALITY_BASE        0u
115 #define RSAENH_PERSONALITY_STRONG      1u
116 #define RSAENH_PERSONALITY_ENHANCED    2u
117 #define RSAENH_PERSONALITY_SCHANNEL    3u
118 #define RSAENH_PERSONALITY_AES         4u
119
120 #define RSAENH_MAGIC_CONTAINER         0x26384993u
121 typedef struct tagKEYCONTAINER
122 {
123     OBJECTHDR    header;
124     DWORD        dwFlags;
125     DWORD        dwPersonality;
126     DWORD        dwEnumAlgsCtr;
127     DWORD        dwEnumContainersCtr;
128     CHAR         szName[MAX_PATH];
129     CHAR         szProvName[MAX_PATH];
130     HCRYPTKEY    hKeyExchangeKeyPair;
131     HCRYPTKEY    hSignatureKeyPair;
132 } KEYCONTAINER;
133
134 /******************************************************************************
135  * Some magic constants
136  */
137 #define RSAENH_ENCRYPT                    1
138 #define RSAENH_DECRYPT                    0    
139 #define RSAENH_HMAC_DEF_IPAD_CHAR      0x36
140 #define RSAENH_HMAC_DEF_OPAD_CHAR      0x5c
141 #define RSAENH_HMAC_DEF_PAD_LEN          64
142 #define RSAENH_HMAC_BLOCK_LEN            64
143 #define RSAENH_DES_EFFECTIVE_KEYLEN      56
144 #define RSAENH_DES_STORAGE_KEYLEN        64
145 #define RSAENH_3DES112_EFFECTIVE_KEYLEN 112
146 #define RSAENH_3DES112_STORAGE_KEYLEN   128
147 #define RSAENH_3DES_EFFECTIVE_KEYLEN    168
148 #define RSAENH_3DES_STORAGE_KEYLEN      192
149 #define RSAENH_MAGIC_RSA2        0x32415352
150 #define RSAENH_MAGIC_RSA1        0x31415352
151 #define RSAENH_PKC_BLOCKTYPE           0x02
152 #define RSAENH_SSL3_VERSION_MAJOR         3
153 #define RSAENH_SSL3_VERSION_MINOR         0
154 #define RSAENH_TLS1_VERSION_MAJOR         3
155 #define RSAENH_TLS1_VERSION_MINOR         1
156 #define RSAENH_REGKEY "Software\\Wine\\Crypto\\RSA\\%s"
157
158 #define RSAENH_MIN(a,b) ((a)<(b)?(a):(b))
159 /******************************************************************************
160  * aProvEnumAlgsEx - Defines the capabilities of the CSP personalities.
161  */
162 #define RSAENH_MAX_ENUMALGS 24
163 #define RSAENH_PCT1_SSL2_SSL3_TLS1 (CRYPT_FLAG_PCT1|CRYPT_FLAG_SSL2|CRYPT_FLAG_SSL3|CRYPT_FLAG_TLS1)
164 static const PROV_ENUMALGS_EX aProvEnumAlgsEx[5][RSAENH_MAX_ENUMALGS+1] =
165 {
166  {
167   {CALG_RC2,       40, 40,   56,0,                    4,"RC2",     24,"RSA Data Security's RC2"},
168   {CALG_RC4,       40, 40,   56,0,                    4,"RC4",     24,"RSA Data Security's RC4"},
169   {CALG_DES,       56, 56,   56,0,                    4,"DES",     31,"Data Encryption Standard (DES)"},
170   {CALG_SHA,      160,160,  160,CRYPT_FLAG_SIGNING,   6,"SHA-1",   30,"Secure Hash Algorithm (SHA-1)"},
171   {CALG_MD2,      128,128,  128,CRYPT_FLAG_SIGNING,   4,"MD2",     23,"Message Digest 2 (MD2)"},
172   {CALG_MD4,      128,128,  128,CRYPT_FLAG_SIGNING,   4,"MD4",     23,"Message Digest 4 (MD4)"},
173   {CALG_MD5,      128,128,  128,CRYPT_FLAG_SIGNING,   4,"MD5",     23,"Message Digest 5 (MD5)"},
174   {CALG_SSL3_SHAMD5,288,288,288,0,                   12,"SSL3 SHAMD5",12,"SSL3 SHAMD5"},
175   {CALG_MAC,        0,  0,    0,0,                    4,"MAC",     28,"Message Authentication Code"},
176   {CALG_RSA_SIGN, 512,384,16384,CRYPT_FLAG_SIGNING|CRYPT_FLAG_IPSEC,9,"RSA_SIGN",14,"RSA Signature"},
177   {CALG_RSA_KEYX, 512,384, 1024,CRYPT_FLAG_SIGNING|CRYPT_FLAG_IPSEC,9,"RSA_KEYX",17,"RSA Key Exchange"},
178   {CALG_HMAC,       0,  0,    0,0,                    5,"HMAC",    18,"Hugo's MAC (HMAC)"},
179   {0,               0,  0,    0,0,                    1,"",         1,""}
180  },
181  {
182   {CALG_RC2,      128, 40,  128,0,                    4,"RC2",     24,"RSA Data Security's RC2"},
183   {CALG_RC4,      128, 40,  128,0,                    4,"RC4",     24,"RSA Data Security's RC4"},
184   {CALG_DES,       56, 56,   56,0,                    4,"DES",     31,"Data Encryption Standard (DES)"},
185   {CALG_3DES_112, 112,112,  112,0,                   13,"3DES TWO KEY",19,"Two Key Triple DES"},
186   {CALG_3DES,     168,168,  168,0,                    5,"3DES",    21,"Three Key Triple DES"},
187   {CALG_SHA,      160,160,  160,CRYPT_FLAG_SIGNING,   6,"SHA-1",   30,"Secure Hash Algorithm (SHA-1)"},
188   {CALG_MD2,      128,128,  128,CRYPT_FLAG_SIGNING,   4,"MD2",     23,"Message Digest 2 (MD2)"},
189   {CALG_MD4,      128,128,  128,CRYPT_FLAG_SIGNING,   4,"MD4",     23,"Message Digest 4 (MD4)"},
190   {CALG_MD5,      128,128,  128,CRYPT_FLAG_SIGNING,   4,"MD5",     23,"Message Digest 5 (MD5)"},
191   {CALG_SSL3_SHAMD5,288,288,288,0,                   12,"SSL3 SHAMD5",12,"SSL3 SHAMD5"},
192   {CALG_MAC,        0,  0,    0,0,                    4,"MAC",     28,"Message Authentication Code"},
193   {CALG_RSA_SIGN,1024,384,16384,CRYPT_FLAG_SIGNING|CRYPT_FLAG_IPSEC,9,"RSA_SIGN",14,"RSA Signature"},
194   {CALG_RSA_KEYX,1024,384,16384,CRYPT_FLAG_SIGNING|CRYPT_FLAG_IPSEC,9,"RSA_KEYX",17,"RSA Key Exchange"},
195   {CALG_HMAC,       0,  0,    0,0,                    5,"HMAC",    18,"Hugo's MAC (HMAC)"},
196   {0,               0,  0,    0,0,                    1,"",         1,""}
197  },
198  {
199   {CALG_RC2,      128, 40,  128,0,                    4,"RC2",     24,"RSA Data Security's RC2"},
200   {CALG_RC4,      128, 40,  128,0,                    4,"RC4",     24,"RSA Data Security's RC4"},
201   {CALG_DES,       56, 56,   56,0,                    4,"DES",     31,"Data Encryption Standard (DES)"},
202   {CALG_3DES_112, 112,112,  112,0,                   13,"3DES TWO KEY",19,"Two Key Triple DES"},
203   {CALG_3DES,     168,168,  168,0,                    5,"3DES",    21,"Three Key Triple DES"},
204   {CALG_SHA,      160,160,  160,CRYPT_FLAG_SIGNING,   6,"SHA-1",   30,"Secure Hash Algorithm (SHA-1)"},
205   {CALG_MD2,      128,128,  128,CRYPT_FLAG_SIGNING,   4,"MD2",     23,"Message Digest 2 (MD2)"},
206   {CALG_MD4,      128,128,  128,CRYPT_FLAG_SIGNING,   4,"MD4",     23,"Message Digest 4 (MD4)"},
207   {CALG_MD5,      128,128,  128,CRYPT_FLAG_SIGNING,   4,"MD5",     23,"Message Digest 5 (MD5)"},
208   {CALG_SSL3_SHAMD5,288,288,288,0,                   12,"SSL3 SHAMD5",12,"SSL3 SHAMD5"},
209   {CALG_MAC,        0,  0,    0,0,                    4,"MAC",     28,"Message Authentication Code"},
210   {CALG_RSA_SIGN,1024,384,16384,CRYPT_FLAG_SIGNING|CRYPT_FLAG_IPSEC,9,"RSA_SIGN",14,"RSA Signature"},
211   {CALG_RSA_KEYX,1024,384,16384,CRYPT_FLAG_SIGNING|CRYPT_FLAG_IPSEC,9,"RSA_KEYX",17,"RSA Key Exchange"},
212   {CALG_HMAC,       0,  0,    0,0,                    5,"HMAC",    18,"Hugo's MAC (HMAC)"},
213   {0,               0,  0,    0,0,                    1,"",         1,""}
214  },
215  {
216   {CALG_RC2,      128, 40,  128,RSAENH_PCT1_SSL2_SSL3_TLS1, 4,"RC2",        24,"RSA Data Security's RC2"},
217   {CALG_RC4,      128, 40,  128,RSAENH_PCT1_SSL2_SSL3_TLS1, 4,"RC4",        24,"RSA Data Security's RC4"},
218   {CALG_DES,       56, 56,   56,RSAENH_PCT1_SSL2_SSL3_TLS1, 4,"DES",        31,"Data Encryption Standard (DES)"},
219   {CALG_3DES_112, 112,112,  112,RSAENH_PCT1_SSL2_SSL3_TLS1,13,"3DES TWO KEY",19,"Two Key Triple DES"},
220   {CALG_3DES,     168,168,  168,RSAENH_PCT1_SSL2_SSL3_TLS1, 5,"3DES",       21,"Three Key Triple DES"},
221   {CALG_SHA,160,160,160,CRYPT_FLAG_SIGNING|RSAENH_PCT1_SSL2_SSL3_TLS1,6,"SHA-1",30,"Secure Hash Algorithm (SHA-1)"},
222   {CALG_MD5,128,128,128,CRYPT_FLAG_SIGNING|RSAENH_PCT1_SSL2_SSL3_TLS1,4,"MD5",23,"Message Digest 5 (MD5)"},
223   {CALG_SSL3_SHAMD5,288,288,288,0,                         12,"SSL3 SHAMD5",12,"SSL3 SHAMD5"},
224   {CALG_MAC,        0,  0,    0,0,                          4,"MAC",        28,"Message Authentication Code"},
225   {CALG_RSA_SIGN,1024,384,16384,CRYPT_FLAG_SIGNING|RSAENH_PCT1_SSL2_SSL3_TLS1,9,"RSA_SIGN",14,"RSA Signature"},
226   {CALG_RSA_KEYX,1024,384,16384,CRYPT_FLAG_SIGNING|RSAENH_PCT1_SSL2_SSL3_TLS1,9,"RSA_KEYX",17,"RSA Key Exchange"},
227   {CALG_HMAC,       0,  0,    0,0,                          5,"HMAC",       18,"Hugo's MAC (HMAC)"},
228   {CALG_PCT1_MASTER,128,128,128,CRYPT_FLAG_PCT1,           12,"PCT1 MASTER",12,"PCT1 Master"},
229   {CALG_SSL2_MASTER,40,40,  192,CRYPT_FLAG_SSL2,           12,"SSL2 MASTER",12,"SSL2 Master"},
230   {CALG_SSL3_MASTER,384,384,384,CRYPT_FLAG_SSL3,           12,"SSL3 MASTER",12,"SSL3 Master"},
231   {CALG_TLS1_MASTER,384,384,384,CRYPT_FLAG_TLS1,           12,"TLS1 MASTER",12,"TLS1 Master"},
232   {CALG_SCHANNEL_MASTER_HASH,0,0,-1,0,                     16,"SCH MASTER HASH",21,"SChannel Master Hash"},
233   {CALG_SCHANNEL_MAC_KEY,0,0,-1,0,                         12,"SCH MAC KEY",17,"SChannel MAC Key"},
234   {CALG_SCHANNEL_ENC_KEY,0,0,-1,0,                         12,"SCH ENC KEY",24,"SChannel Encryption Key"},
235   {CALG_TLS1PRF,    0,  0,   -1,0,                          9,"TLS1 PRF",   28,"TLS1 Pseudo Random Function"},
236   {0,               0,  0,    0,0,                          1,"",            1,""}
237  },
238  {
239   {CALG_RC2,      128, 40,  128,0,                    4,"RC2",     24,"RSA Data Security's RC2"},
240   {CALG_RC4,      128, 40,  128,0,                    4,"RC4",     24,"RSA Data Security's RC4"},
241   {CALG_DES,       56, 56,   56,0,                    4,"DES",     31,"Data Encryption Standard (DES)"},
242   {CALG_3DES_112, 112,112,  112,0,                   13,"3DES TWO KEY",19,"Two Key Triple DES"},
243   {CALG_3DES,     168,168,  168,0,                    5,"3DES",    21,"Three Key Triple DES"},
244   {CALG_AES,      128,128,  128,0,                    4,"AES",     35,"Advanced Encryption Standard (AES)"},
245   {CALG_AES_128,  128,128,  128,0,                    8,"AES-128", 39,"Advanced Encryption Standard (AES-128)"},
246   {CALG_AES_192,  192,192,  192,0,                    8,"AES-192", 39,"Advanced Encryption Standard (AES-192)"},
247   {CALG_AES_256,  256,256,  256,0,                    8,"AES-256", 39,"Advanced Encryption Standard (AES-256)"},
248   {CALG_SHA,      160,160,  160,CRYPT_FLAG_SIGNING,   6,"SHA-1",   30,"Secure Hash Algorithm (SHA-1)"},
249   {CALG_SHA_256,  256,256,  256,CRYPT_FLAG_SIGNING,   6,"SHA-256", 30,"Secure Hash Algorithm (SHA-256)"},
250   {CALG_SHA_384,  384,384,  384,CRYPT_FLAG_SIGNING,   6,"SHA-384", 30,"Secure Hash Algorithm (SHA-284)"},
251   {CALG_SHA_512,  512,512,  512,CRYPT_FLAG_SIGNING,   6,"SHA-512", 30,"Secure Hash Algorithm (SHA-512)"},
252   {CALG_MD2,      128,128,  128,CRYPT_FLAG_SIGNING,   4,"MD2",     23,"Message Digest 2 (MD2)"},
253   {CALG_MD4,      128,128,  128,CRYPT_FLAG_SIGNING,   4,"MD4",     23,"Message Digest 4 (MD4)"},
254   {CALG_MD5,      128,128,  128,CRYPT_FLAG_SIGNING,   4,"MD5",     23,"Message Digest 5 (MD5)"},
255   {CALG_SSL3_SHAMD5,288,288,288,0,                   12,"SSL3 SHAMD5",12,"SSL3 SHAMD5"},
256   {CALG_MAC,        0,  0,    0,0,                    4,"MAC",     28,"Message Authentication Code"},
257   {CALG_RSA_SIGN,1024,384,16384,CRYPT_FLAG_SIGNING|CRYPT_FLAG_IPSEC,9,"RSA_SIGN",14,"RSA Signature"},
258   {CALG_RSA_KEYX,1024,384,16384,CRYPT_FLAG_SIGNING|CRYPT_FLAG_IPSEC,9,"RSA_KEYX",17,"RSA Key Exchange"},
259   {CALG_HMAC,       0,  0,    0,0,                    5,"HMAC",    18,"Hugo's MAC (HMAC)"},
260   {0,               0,  0,    0,0,                    1,"",         1,""}
261  }
262 };
263
264 /******************************************************************************
265  * API forward declarations
266  */
267 BOOL WINAPI 
268 RSAENH_CPGetKeyParam(
269     HCRYPTPROV hProv, 
270     HCRYPTKEY hKey, 
271     DWORD dwParam, 
272     BYTE *pbData, 
273     DWORD *pdwDataLen, 
274     DWORD dwFlags
275 );
276
277 BOOL WINAPI 
278 RSAENH_CPEncrypt(
279     HCRYPTPROV hProv, 
280     HCRYPTKEY hKey, 
281     HCRYPTHASH hHash, 
282     BOOL Final, 
283     DWORD dwFlags, 
284     BYTE *pbData,
285     DWORD *pdwDataLen, 
286     DWORD dwBufLen
287 );
288
289 BOOL WINAPI 
290 RSAENH_CPCreateHash(
291     HCRYPTPROV hProv, 
292     ALG_ID Algid, 
293     HCRYPTKEY hKey, 
294     DWORD dwFlags, 
295     HCRYPTHASH *phHash
296 );
297
298 BOOL WINAPI 
299 RSAENH_CPSetHashParam(
300     HCRYPTPROV hProv, 
301     HCRYPTHASH hHash, 
302     DWORD dwParam, 
303     BYTE *pbData, DWORD dwFlags
304 );
305
306 BOOL WINAPI 
307 RSAENH_CPGetHashParam(
308     HCRYPTPROV hProv, 
309     HCRYPTHASH hHash, 
310     DWORD dwParam, 
311     BYTE *pbData, 
312     DWORD *pdwDataLen, 
313     DWORD dwFlags
314 );
315
316 BOOL WINAPI 
317 RSAENH_CPDestroyHash(
318     HCRYPTPROV hProv, 
319     HCRYPTHASH hHash
320 );
321
322 static BOOL crypt_export_key(
323     CRYPTKEY *pCryptKey,
324     HCRYPTKEY hPubKey, 
325     DWORD dwBlobType, 
326     DWORD dwFlags, 
327     BOOL force,
328     BYTE *pbData, 
329     DWORD *pdwDataLen
330 );
331
332 static BOOL import_key(
333     HCRYPTPROV hProv, 
334     CONST BYTE *pbData, 
335     DWORD dwDataLen, 
336     HCRYPTKEY hPubKey, 
337     DWORD dwFlags, 
338     BOOL fStoreKey,
339     HCRYPTKEY *phKey
340 );
341
342 BOOL WINAPI 
343 RSAENH_CPHashData(
344     HCRYPTPROV hProv, 
345     HCRYPTHASH hHash, 
346     CONST BYTE *pbData, 
347     DWORD dwDataLen, 
348     DWORD dwFlags
349 );
350
351 /******************************************************************************
352  * CSP's handle table (used by all acquired key containers)
353  */
354 static struct handle_table handle_table;
355
356 /******************************************************************************
357  * DllMain (RSAENH.@)
358  *
359  * Initializes and destroys the handle table for the CSP's handles.
360  */
361 int WINAPI DllMain(HINSTANCE hInstance, DWORD fdwReason, PVOID pvReserved)
362 {
363     switch (fdwReason)
364     {
365         case DLL_PROCESS_ATTACH:
366             instance = hInstance;
367             DisableThreadLibraryCalls(hInstance);
368             init_handle_table(&handle_table);
369             break;
370
371         case DLL_PROCESS_DETACH:
372             destroy_handle_table(&handle_table);
373             break;
374     }
375     return 1;
376 }
377
378 /******************************************************************************
379  * copy_param [Internal]
380  *
381  * Helper function that supports the standard WINAPI protocol for querying data
382  * of dynamic size.
383  *
384  * PARAMS
385  *  pbBuffer      [O]   Buffer where the queried parameter is copied to, if it is large enough.
386  *                      May be NUL if the required buffer size is to be queried only.
387  *  pdwBufferSize [I/O] In: Size of the buffer at pbBuffer
388  *                      Out: Size of parameter pbParam
389  *  pbParam       [I]   Parameter value.
390  *  dwParamSize   [I]   Size of pbParam
391  *
392  * RETURN
393  *  Success: TRUE (pbParam was copied into pbBuffer or pbBuffer is NULL)
394  *  Failure: FALSE (pbBuffer is not large enough to hold pbParam). Last error: ERROR_MORE_DATA
395  */
396 static inline BOOL copy_param(
397     BYTE *pbBuffer, DWORD *pdwBufferSize, CONST BYTE *pbParam, DWORD dwParamSize) 
398 {
399     if (pbBuffer) 
400     {
401         if (dwParamSize > *pdwBufferSize) 
402         {
403             SetLastError(ERROR_MORE_DATA);
404             *pdwBufferSize = dwParamSize;
405             return FALSE;
406         }
407         memcpy(pbBuffer, pbParam, dwParamSize);
408     }
409     *pdwBufferSize = dwParamSize;
410     return TRUE;
411 }
412
413 /******************************************************************************
414  * get_algid_info [Internal]
415  *
416  * Query CSP capabilities for a given crypto algorithm.
417  * 
418  * PARAMS
419  *  hProv [I] Handle to a key container of the CSP whose capabilities are to be queried.
420  *  algid [I] Identifier of the crypto algorithm about which information is requested.
421  *
422  * RETURNS
423  *  Success: Pointer to a PROV_ENUMALGS_EX struct containing information about the crypto algorithm.
424  *  Failure: NULL (algid not supported)
425  */
426 static inline const PROV_ENUMALGS_EX* get_algid_info(HCRYPTPROV hProv, ALG_ID algid) {
427     const PROV_ENUMALGS_EX *iterator;
428     KEYCONTAINER *pKeyContainer;
429
430     if (!lookup_handle(&handle_table, hProv, RSAENH_MAGIC_CONTAINER, (OBJECTHDR**)&pKeyContainer)) {
431         SetLastError(NTE_BAD_UID);
432         return NULL;
433     }
434
435     for (iterator = aProvEnumAlgsEx[pKeyContainer->dwPersonality]; iterator->aiAlgid; iterator++) {
436         if (iterator->aiAlgid == algid) return iterator;
437     }
438
439     SetLastError(NTE_BAD_ALGID);
440     return NULL;
441 }
442
443 /******************************************************************************
444  * copy_data_blob [Internal] 
445  *
446  * deeply copies a DATA_BLOB
447  *
448  * PARAMS
449  *  dst [O] That's where the blob will be copied to
450  *  src [I] Source blob
451  *
452  * RETURNS
453  *  Success: TRUE
454  *  Failure: FALSE (GetLastError() == NTE_NO_MEMORY
455  *
456  * NOTES
457  *  Use free_data_blob to release resources occupied by copy_data_blob.
458  */
459 static inline BOOL copy_data_blob(PCRYPT_DATA_BLOB dst, CONST PCRYPT_DATA_BLOB src) {
460     dst->pbData = HeapAlloc(GetProcessHeap(), 0, src->cbData);
461     if (!dst->pbData) {
462         SetLastError(NTE_NO_MEMORY);
463         return FALSE;
464     }    
465     dst->cbData = src->cbData;
466     memcpy(dst->pbData, src->pbData, src->cbData);
467     return TRUE;
468 }
469
470 /******************************************************************************
471  * concat_data_blobs [Internal]
472  *
473  * Concatenates two blobs
474  *
475  * PARAMS
476  *  dst  [O] The new blob will be copied here
477  *  src1 [I] Prefix blob
478  *  src2 [I] Appendix blob
479  *
480  * RETURNS
481  *  Success: TRUE
482  *  Failure: FALSE (GetLastError() == NTE_NO_MEMORY)
483  *
484  * NOTES
485  *  Release resources occupied by concat_data_blobs with free_data_blobs
486  */
487 static inline BOOL concat_data_blobs(PCRYPT_DATA_BLOB dst, CONST PCRYPT_DATA_BLOB src1, 
488                                      CONST PCRYPT_DATA_BLOB src2) 
489 {
490     dst->cbData = src1->cbData + src2->cbData;
491     dst->pbData = HeapAlloc(GetProcessHeap(), 0, dst->cbData);
492     if (!dst->pbData) {
493         SetLastError(NTE_NO_MEMORY);
494         return FALSE;
495     }
496     memcpy(dst->pbData, src1->pbData, src1->cbData);
497     memcpy(dst->pbData + src1->cbData, src2->pbData, src2->cbData);
498     return TRUE;
499 }
500
501 /******************************************************************************
502  * free_data_blob [Internal]
503  *
504  * releases resource occupied by a dynamically allocated CRYPT_DATA_BLOB
505  * 
506  * PARAMS
507  *  pBlob [I] Heap space occupied by pBlob->pbData is released
508  */
509 static inline void free_data_blob(PCRYPT_DATA_BLOB pBlob) {
510     HeapFree(GetProcessHeap(), 0, pBlob->pbData);
511 }
512
513 /******************************************************************************
514  * init_data_blob [Internal]
515  */
516 static inline void init_data_blob(PCRYPT_DATA_BLOB pBlob) {
517     pBlob->pbData = NULL;
518     pBlob->cbData = 0;
519 }
520
521 /******************************************************************************
522  * free_hmac_info [Internal]
523  *
524  * Deeply free an HMAC_INFO struct.
525  *
526  * PARAMS
527  *  hmac_info [I] Pointer to the HMAC_INFO struct to be freed.
528  *
529  * NOTES
530  *  See Internet RFC 2104 for details on the HMAC algorithm.
531  */
532 static inline void free_hmac_info(PHMAC_INFO hmac_info) {
533     if (!hmac_info) return;
534     HeapFree(GetProcessHeap(), 0, hmac_info->pbInnerString);
535     HeapFree(GetProcessHeap(), 0, hmac_info->pbOuterString);
536     HeapFree(GetProcessHeap(), 0, hmac_info);
537 }
538
539 /******************************************************************************
540  * copy_hmac_info [Internal]
541  *
542  * Deeply copy an HMAC_INFO struct
543  *
544  * PARAMS
545  *  dst [O] Pointer to a location where the pointer to the HMAC_INFO copy will be stored.
546  *  src [I] Pointer to the HMAC_INFO struct to be copied.
547  *
548  * RETURNS
549  *  Success: TRUE
550  *  Failure: FALSE
551  *
552  * NOTES
553  *  See Internet RFC 2104 for details on the HMAC algorithm.
554  */
555 static BOOL copy_hmac_info(PHMAC_INFO *dst, const HMAC_INFO *src) {
556     if (!src) return FALSE;
557     *dst = HeapAlloc(GetProcessHeap(), 0, sizeof(HMAC_INFO));
558     if (!*dst) return FALSE;
559     **dst = *src;
560     (*dst)->pbInnerString = NULL;
561     (*dst)->pbOuterString = NULL;
562     if ((*dst)->cbInnerString == 0) (*dst)->cbInnerString = RSAENH_HMAC_DEF_PAD_LEN;
563     (*dst)->pbInnerString = HeapAlloc(GetProcessHeap(), 0, (*dst)->cbInnerString);
564     if (!(*dst)->pbInnerString) {
565         free_hmac_info(*dst);
566         return FALSE;
567     }
568     if (src->cbInnerString) 
569         memcpy((*dst)->pbInnerString, src->pbInnerString, src->cbInnerString);
570     else 
571         memset((*dst)->pbInnerString, RSAENH_HMAC_DEF_IPAD_CHAR, RSAENH_HMAC_DEF_PAD_LEN);
572     if ((*dst)->cbOuterString == 0) (*dst)->cbOuterString = RSAENH_HMAC_DEF_PAD_LEN;
573     (*dst)->pbOuterString = HeapAlloc(GetProcessHeap(), 0, (*dst)->cbOuterString);
574     if (!(*dst)->pbOuterString) {
575         free_hmac_info(*dst);
576         return FALSE;
577     }
578     if (src->cbOuterString) 
579         memcpy((*dst)->pbOuterString, src->pbOuterString, src->cbOuterString);
580     else 
581         memset((*dst)->pbOuterString, RSAENH_HMAC_DEF_OPAD_CHAR, RSAENH_HMAC_DEF_PAD_LEN);
582     return TRUE;
583 }
584
585 /******************************************************************************
586  * destroy_hash [Internal]
587  *
588  * Destructor for hash objects
589  *
590  * PARAMS
591  *  pCryptHash [I] Pointer to the hash object to be destroyed. 
592  *                 Will be invalid after function returns!
593  */
594 static void destroy_hash(OBJECTHDR *pObject)
595 {
596     CRYPTHASH *pCryptHash = (CRYPTHASH*)pObject;
597         
598     free_hmac_info(pCryptHash->pHMACInfo);
599     free_data_blob(&pCryptHash->tpPRFParams.blobLabel);
600     free_data_blob(&pCryptHash->tpPRFParams.blobSeed);
601     HeapFree(GetProcessHeap(), 0, pCryptHash);
602 }
603
604 /******************************************************************************
605  * init_hash [Internal]
606  *
607  * Initialize (or reset) a hash object
608  *
609  * PARAMS
610  *  pCryptHash    [I] The hash object to be initialized.
611  */
612 static inline BOOL init_hash(CRYPTHASH *pCryptHash) {
613     DWORD dwLen;
614         
615     switch (pCryptHash->aiAlgid) 
616     {
617         case CALG_HMAC:
618             if (pCryptHash->pHMACInfo) { 
619                 const PROV_ENUMALGS_EX *pAlgInfo;
620                 
621                 pAlgInfo = get_algid_info(pCryptHash->hProv, pCryptHash->pHMACInfo->HashAlgid);
622                 if (!pAlgInfo) return FALSE;
623                 pCryptHash->dwHashSize = pAlgInfo->dwDefaultLen >> 3;
624                 init_hash_impl(pCryptHash->pHMACInfo->HashAlgid, &pCryptHash->context);
625                 update_hash_impl(pCryptHash->pHMACInfo->HashAlgid, &pCryptHash->context,
626                                  pCryptHash->pHMACInfo->pbInnerString, 
627                                  pCryptHash->pHMACInfo->cbInnerString);
628             }
629             return TRUE;
630             
631         case CALG_MAC:
632             dwLen = sizeof(DWORD);
633             RSAENH_CPGetKeyParam(pCryptHash->hProv, pCryptHash->hKey, KP_BLOCKLEN, 
634                                  (BYTE*)&pCryptHash->dwHashSize, &dwLen, 0);
635             pCryptHash->dwHashSize >>= 3;
636             return TRUE;
637
638         default:
639             return init_hash_impl(pCryptHash->aiAlgid, &pCryptHash->context);
640     }
641 }
642
643 /******************************************************************************
644  * update_hash [Internal]
645  *
646  * Hashes the given data and updates the hash object's state accordingly
647  *
648  * PARAMS
649  *  pCryptHash [I] Hash object to be updated.
650  *  pbData     [I] Pointer to data stream to be hashed.
651  *  dwDataLen  [I] Length of data stream.
652  */
653 static inline void update_hash(CRYPTHASH *pCryptHash, CONST BYTE *pbData, DWORD dwDataLen) {
654     BYTE *pbTemp;
655
656     switch (pCryptHash->aiAlgid)
657     {
658         case CALG_HMAC:
659             if (pCryptHash->pHMACInfo) 
660                 update_hash_impl(pCryptHash->pHMACInfo->HashAlgid, &pCryptHash->context, 
661                                  pbData, dwDataLen);
662             break;
663
664         case CALG_MAC:
665             pbTemp = HeapAlloc(GetProcessHeap(), 0, dwDataLen);
666             if (!pbTemp) return;
667             memcpy(pbTemp, pbData, dwDataLen);
668             RSAENH_CPEncrypt(pCryptHash->hProv, pCryptHash->hKey, 0, FALSE, 0,
669                              pbTemp, &dwDataLen, dwDataLen);
670             HeapFree(GetProcessHeap(), 0, pbTemp);
671             break;
672
673         default:
674             update_hash_impl(pCryptHash->aiAlgid, &pCryptHash->context, pbData, dwDataLen);
675     }
676 }
677
678 /******************************************************************************
679  * finalize_hash [Internal]
680  *
681  * Finalizes the hash, after all data has been hashed with update_hash.
682  * No additional data can be hashed afterwards until the hash gets initialized again.
683  *
684  * PARAMS
685  *  pCryptHash [I] Hash object to be finalized.
686  */
687 static inline void finalize_hash(CRYPTHASH *pCryptHash) {
688     DWORD dwDataLen;
689         
690     switch (pCryptHash->aiAlgid)
691     {
692         case CALG_HMAC:
693             if (pCryptHash->pHMACInfo) {
694                 BYTE abHashValue[RSAENH_MAX_HASH_SIZE];
695
696                 finalize_hash_impl(pCryptHash->pHMACInfo->HashAlgid, &pCryptHash->context, 
697                                    pCryptHash->abHashValue);
698                 memcpy(abHashValue, pCryptHash->abHashValue, pCryptHash->dwHashSize);
699                 init_hash_impl(pCryptHash->pHMACInfo->HashAlgid, &pCryptHash->context);
700                 update_hash_impl(pCryptHash->pHMACInfo->HashAlgid, &pCryptHash->context,
701                                  pCryptHash->pHMACInfo->pbOuterString, 
702                                  pCryptHash->pHMACInfo->cbOuterString);
703                 update_hash_impl(pCryptHash->pHMACInfo->HashAlgid, &pCryptHash->context,
704                                  abHashValue, pCryptHash->dwHashSize);
705                 finalize_hash_impl(pCryptHash->pHMACInfo->HashAlgid, &pCryptHash->context,
706                                    pCryptHash->abHashValue);
707             } 
708             break;
709
710         case CALG_MAC:
711             dwDataLen = 0;
712             RSAENH_CPEncrypt(pCryptHash->hProv, pCryptHash->hKey, 0, TRUE, 0,
713                              pCryptHash->abHashValue, &dwDataLen, pCryptHash->dwHashSize);
714             break;
715
716         default:
717             finalize_hash_impl(pCryptHash->aiAlgid, &pCryptHash->context, pCryptHash->abHashValue);
718     }
719 }
720
721 /******************************************************************************
722  * destroy_key [Internal]
723  *
724  * Destructor for key objects
725  *
726  * PARAMS
727  *  pCryptKey [I] Pointer to the key object to be destroyed. 
728  *                Will be invalid after function returns!
729  */
730 static void destroy_key(OBJECTHDR *pObject)
731 {
732     CRYPTKEY *pCryptKey = (CRYPTKEY*)pObject;
733         
734     free_key_impl(pCryptKey->aiAlgid, &pCryptKey->context);
735     free_data_blob(&pCryptKey->siSChannelInfo.blobClientRandom);
736     free_data_blob(&pCryptKey->siSChannelInfo.blobServerRandom);
737     free_data_blob(&pCryptKey->blobHmacKey);
738     HeapFree(GetProcessHeap(), 0, pCryptKey);
739 }
740
741 /******************************************************************************
742  * setup_key [Internal]
743  *
744  * Initialize (or reset) a key object
745  *
746  * PARAMS
747  *  pCryptKey    [I] The key object to be initialized.
748  */
749 static inline void setup_key(CRYPTKEY *pCryptKey) {
750     pCryptKey->dwState = RSAENH_KEYSTATE_IDLE;
751     memcpy(pCryptKey->abChainVector, pCryptKey->abInitVector, sizeof(pCryptKey->abChainVector));
752     setup_key_impl(pCryptKey->aiAlgid, &pCryptKey->context, pCryptKey->dwKeyLen, 
753                    pCryptKey->dwEffectiveKeyLen, pCryptKey->dwSaltLen,
754                    pCryptKey->abKeyValue);
755 }
756
757 /******************************************************************************
758  * new_key [Internal]
759  *
760  * Creates a new key object without assigning the actual binary key value. 
761  * This is done by CPDeriveKey, CPGenKey or CPImportKey, which call this function.
762  *
763  * PARAMS
764  *  hProv      [I] Handle to the provider to which the created key will belong.
765  *  aiAlgid    [I] The new key shall use the crypto algorithm identified by aiAlgid.
766  *  dwFlags    [I] Upper 16 bits give the key length.
767  *                 Lower 16 bits: CRYPT_EXPORTABLE, CRYPT_CREATE_SALT,
768  *                 CRYPT_NO_SALT
769  *  ppCryptKey [O] Pointer to the created key
770  *
771  * RETURNS
772  *  Success: Handle to the created key.
773  *  Failure: INVALID_HANDLE_VALUE
774  */
775 static HCRYPTKEY new_key(HCRYPTPROV hProv, ALG_ID aiAlgid, DWORD dwFlags, CRYPTKEY **ppCryptKey)
776 {
777     HCRYPTKEY hCryptKey;
778     CRYPTKEY *pCryptKey;
779     DWORD dwKeyLen = HIWORD(dwFlags);
780     const PROV_ENUMALGS_EX *peaAlgidInfo;
781
782     *ppCryptKey = NULL;
783     
784     /* 
785      * Retrieve the CSP's capabilities for the given ALG_ID value
786      */
787     peaAlgidInfo = get_algid_info(hProv, aiAlgid);
788     if (!peaAlgidInfo) return (HCRYPTKEY)INVALID_HANDLE_VALUE;
789
790     TRACE("alg = %s, dwKeyLen = %d\n", debugstr_a(peaAlgidInfo->szName),
791           dwKeyLen);
792     /*
793      * Assume the default key length, if none is specified explicitly
794      */
795     if (dwKeyLen == 0) dwKeyLen = peaAlgidInfo->dwDefaultLen;
796     
797     /*
798      * Check if the requested key length is supported by the current CSP.
799      * Adjust key length's for DES algorithms.
800      */
801     switch (aiAlgid) {
802         case CALG_DES:
803             if (dwKeyLen == RSAENH_DES_EFFECTIVE_KEYLEN) {
804                 dwKeyLen = RSAENH_DES_STORAGE_KEYLEN;
805             }
806             if (dwKeyLen != RSAENH_DES_STORAGE_KEYLEN) {
807                 SetLastError(NTE_BAD_FLAGS);
808                 return (HCRYPTKEY)INVALID_HANDLE_VALUE;
809             }
810             break;
811
812         case CALG_3DES_112:
813             if (dwKeyLen == RSAENH_3DES112_EFFECTIVE_KEYLEN) {
814                 dwKeyLen = RSAENH_3DES112_STORAGE_KEYLEN;
815             }
816             if (dwKeyLen != RSAENH_3DES112_STORAGE_KEYLEN) {
817                 SetLastError(NTE_BAD_FLAGS);
818                 return (HCRYPTKEY)INVALID_HANDLE_VALUE;
819             }
820             break;
821
822         case CALG_3DES:
823             if (dwKeyLen == RSAENH_3DES_EFFECTIVE_KEYLEN) {
824                 dwKeyLen = RSAENH_3DES_STORAGE_KEYLEN;
825             }
826             if (dwKeyLen != RSAENH_3DES_STORAGE_KEYLEN) {
827                 SetLastError(NTE_BAD_FLAGS);
828                 return (HCRYPTKEY)INVALID_HANDLE_VALUE;
829             }
830             break;
831
832         case CALG_HMAC:
833             /* Avoid the key length check for HMAC keys, which have unlimited
834              * length.
835              */
836             break;
837
838         default:
839             if (dwKeyLen % 8 || 
840                 dwKeyLen > peaAlgidInfo->dwMaxLen || 
841                 dwKeyLen < peaAlgidInfo->dwMinLen) 
842             {
843                 TRACE("key len %d out of bounds (%d, %d)\n", dwKeyLen,
844                       peaAlgidInfo->dwMinLen, peaAlgidInfo->dwMaxLen);
845                 SetLastError(NTE_BAD_DATA);
846                 return (HCRYPTKEY)INVALID_HANDLE_VALUE;
847             }
848     }
849
850     hCryptKey = new_object(&handle_table, sizeof(CRYPTKEY), RSAENH_MAGIC_KEY,
851                            destroy_key, (OBJECTHDR**)&pCryptKey);
852     if (hCryptKey != (HCRYPTKEY)INVALID_HANDLE_VALUE)
853     {
854         pCryptKey->aiAlgid = aiAlgid;
855         pCryptKey->hProv = hProv;
856         pCryptKey->dwModeBits = 0;
857         pCryptKey->dwPermissions = CRYPT_ENCRYPT | CRYPT_DECRYPT | CRYPT_READ | CRYPT_WRITE | 
858                                    CRYPT_MAC;
859         if (dwFlags & CRYPT_EXPORTABLE)
860             pCryptKey->dwPermissions |= CRYPT_EXPORT;
861         pCryptKey->dwKeyLen = dwKeyLen >> 3;
862         pCryptKey->dwEffectiveKeyLen = 0;
863         if ((dwFlags & CRYPT_CREATE_SALT) || (dwKeyLen == 40 && !(dwFlags & CRYPT_NO_SALT))) 
864             pCryptKey->dwSaltLen = 16 /*FIXME*/ - pCryptKey->dwKeyLen;
865         else
866             pCryptKey->dwSaltLen = 0;
867         memset(pCryptKey->abKeyValue, 0, sizeof(pCryptKey->abKeyValue));
868         memset(pCryptKey->abInitVector, 0, sizeof(pCryptKey->abInitVector));
869         memset(&pCryptKey->siSChannelInfo.saEncAlg, 0, sizeof(pCryptKey->siSChannelInfo.saEncAlg));
870         memset(&pCryptKey->siSChannelInfo.saMACAlg, 0, sizeof(pCryptKey->siSChannelInfo.saMACAlg));
871         init_data_blob(&pCryptKey->siSChannelInfo.blobClientRandom);
872         init_data_blob(&pCryptKey->siSChannelInfo.blobServerRandom);
873         init_data_blob(&pCryptKey->blobHmacKey);
874             
875         switch(aiAlgid)
876         {
877             case CALG_PCT1_MASTER:
878             case CALG_SSL2_MASTER:
879             case CALG_SSL3_MASTER:
880             case CALG_TLS1_MASTER:
881             case CALG_RC4:
882                 pCryptKey->dwBlockLen = 0;
883                 pCryptKey->dwMode = 0;
884                 break;
885
886             case CALG_RC2:
887             case CALG_DES:
888             case CALG_3DES_112:
889             case CALG_3DES:
890                 pCryptKey->dwBlockLen = 8;
891                 pCryptKey->dwMode = CRYPT_MODE_CBC;
892                 break;
893
894             case CALG_AES:
895             case CALG_AES_128:
896             case CALG_AES_192:
897             case CALG_AES_256:
898                 pCryptKey->dwBlockLen = 16;
899                 pCryptKey->dwMode = CRYPT_MODE_ECB;
900                 break;
901
902             case CALG_RSA_KEYX:
903             case CALG_RSA_SIGN:
904                 pCryptKey->dwBlockLen = dwKeyLen >> 3;
905                 pCryptKey->dwMode = 0;
906                 break;
907
908             case CALG_HMAC:
909                 pCryptKey->dwBlockLen = 0;
910                 pCryptKey->dwMode = 0;
911                 break;
912         }
913
914         *ppCryptKey = pCryptKey;
915     }
916
917     return hCryptKey;
918 }
919
920 /******************************************************************************
921  * map_key_spec_to_key_pair_name [Internal]
922  *
923  * Returns the name of the registry value associated with a key spec.
924  *
925  * PARAMS
926  *  dwKeySpec     [I] AT_KEYEXCHANGE or AT_SIGNATURE
927  *
928  * RETURNS
929  *  Success: Name of registry value.
930  *  Failure: NULL
931  */
932 static LPCSTR map_key_spec_to_key_pair_name(DWORD dwKeySpec)
933 {
934     LPCSTR szValueName;
935
936     switch (dwKeySpec)
937     {
938     case AT_KEYEXCHANGE:
939         szValueName = "KeyExchangeKeyPair";
940         break;
941     case AT_SIGNATURE:
942         szValueName = "SignatureKeyPair";
943         break;
944     default:
945         WARN("invalid key spec %d\n", dwKeySpec);
946         szValueName = NULL;
947     }
948     return szValueName;
949 }
950
951 /******************************************************************************
952  * store_key_pair [Internal]
953  *
954  * Stores a key pair to the registry
955  * 
956  * PARAMS
957  *  hCryptKey     [I] Handle to the key to be stored
958  *  hKey          [I] Registry key where the key pair is to be stored
959  *  dwKeySpec     [I] AT_KEYEXCHANGE or AT_SIGNATURE
960  *  dwFlags       [I] Flags for protecting the key
961  */
962 static void store_key_pair(HCRYPTKEY hCryptKey, HKEY hKey, DWORD dwKeySpec, DWORD dwFlags)
963 {
964     LPCSTR szValueName;
965     DATA_BLOB blobIn, blobOut;
966     CRYPTKEY *pKey;
967     DWORD dwLen;
968     BYTE *pbKey;
969
970     if (!(szValueName = map_key_spec_to_key_pair_name(dwKeySpec)))
971         return;
972     if (lookup_handle(&handle_table, hCryptKey, RSAENH_MAGIC_KEY,
973                       (OBJECTHDR**)&pKey))
974     {
975         if (crypt_export_key(pKey, 0, PRIVATEKEYBLOB, 0, TRUE, 0, &dwLen))
976         {
977             pbKey = HeapAlloc(GetProcessHeap(), 0, dwLen);
978             if (pbKey)
979             {
980                 if (crypt_export_key(pKey, 0, PRIVATEKEYBLOB, 0, TRUE, pbKey,
981                     &dwLen))
982                 {
983                     blobIn.pbData = pbKey;
984                     blobIn.cbData = dwLen;
985
986                     if (CryptProtectData(&blobIn, NULL, NULL, NULL, NULL,
987                         dwFlags, &blobOut))
988                     {
989                         RegSetValueExA(hKey, szValueName, 0, REG_BINARY,
990                                        blobOut.pbData, blobOut.cbData);
991                         LocalFree(blobOut.pbData);
992                     }
993                 }
994                 HeapFree(GetProcessHeap(), 0, pbKey);
995             }
996         }
997     }
998 }
999
1000 /******************************************************************************
1001  * map_key_spec_to_permissions_name [Internal]
1002  *
1003  * Returns the name of the registry value associated with the permissions for
1004  * a key spec.
1005  *
1006  * PARAMS
1007  *  dwKeySpec     [I] AT_KEYEXCHANGE or AT_SIGNATURE
1008  *
1009  * RETURNS
1010  *  Success: Name of registry value.
1011  *  Failure: NULL
1012  */
1013 static LPCSTR map_key_spec_to_permissions_name(DWORD dwKeySpec)
1014 {
1015     LPCSTR szValueName;
1016
1017     switch (dwKeySpec)
1018     {
1019     case AT_KEYEXCHANGE:
1020         szValueName = "KeyExchangePermissions";
1021         break;
1022     case AT_SIGNATURE:
1023         szValueName = "SignaturePermissions";
1024         break;
1025     default:
1026         WARN("invalid key spec %d\n", dwKeySpec);
1027         szValueName = NULL;
1028     }
1029     return szValueName;
1030 }
1031
1032 /******************************************************************************
1033  * store_key_permissions [Internal]
1034  *
1035  * Stores a key's permissions to the registry
1036  *
1037  * PARAMS
1038  *  hCryptKey     [I] Handle to the key whose permissions are to be stored
1039  *  hKey          [I] Registry key where the key permissions are to be stored
1040  *  dwKeySpec     [I] AT_KEYEXCHANGE or AT_SIGNATURE
1041  */
1042 static void store_key_permissions(HCRYPTKEY hCryptKey, HKEY hKey, DWORD dwKeySpec)
1043 {
1044     LPCSTR szValueName;
1045     CRYPTKEY *pKey;
1046
1047     if (!(szValueName = map_key_spec_to_permissions_name(dwKeySpec)))
1048         return;
1049     if (lookup_handle(&handle_table, hCryptKey, RSAENH_MAGIC_KEY,
1050                       (OBJECTHDR**)&pKey))
1051         RegSetValueExA(hKey, szValueName, 0, REG_DWORD,
1052                        (BYTE *)&pKey->dwPermissions,
1053                        sizeof(pKey->dwPermissions));
1054 }
1055
1056 /******************************************************************************
1057  * create_container_key [Internal]
1058  *
1059  * Creates the registry key for a key container's persistent storage.
1060  * 
1061  * PARAMS
1062  *  pKeyContainer [I] Pointer to the key container
1063  *  sam           [I] Desired registry access
1064  *  phKey         [O] Returned key
1065  */
1066 static BOOL create_container_key(KEYCONTAINER *pKeyContainer, REGSAM sam, HKEY *phKey)
1067 {
1068     CHAR szRSABase[MAX_PATH];
1069     HKEY hRootKey;
1070
1071     sprintf(szRSABase, RSAENH_REGKEY, pKeyContainer->szName);
1072
1073     if (pKeyContainer->dwFlags & CRYPT_MACHINE_KEYSET)
1074         hRootKey = HKEY_LOCAL_MACHINE;
1075     else
1076         hRootKey = HKEY_CURRENT_USER;
1077
1078     /* @@ Wine registry key: HKLM\Software\Wine\Crypto\RSA */
1079     /* @@ Wine registry key: HKCU\Software\Wine\Crypto\RSA */
1080     return RegCreateKeyExA(hRootKey, szRSABase, 0, NULL,
1081                            REG_OPTION_NON_VOLATILE, sam, NULL, phKey, NULL)
1082                            == ERROR_SUCCESS;
1083 }
1084
1085 /******************************************************************************
1086  * open_container_key [Internal]
1087  *
1088  * Opens a key container's persistent storage for reading.
1089  *
1090  * PARAMS
1091  *  pszContainerName [I] Name of the container to be opened.  May be the empty
1092  *                       string if the parent key of all containers is to be
1093  *                       opened.
1094  *  dwFlags          [I] Flags indicating which keyset to be opened.
1095  *  phKey            [O] Returned key
1096  */
1097 static BOOL open_container_key(LPCSTR pszContainerName, DWORD dwFlags, HKEY *phKey)
1098 {
1099     CHAR szRSABase[MAX_PATH];
1100     HKEY hRootKey;
1101
1102     sprintf(szRSABase, RSAENH_REGKEY, pszContainerName);
1103
1104     if (dwFlags & CRYPT_MACHINE_KEYSET)
1105         hRootKey = HKEY_LOCAL_MACHINE;
1106     else
1107         hRootKey = HKEY_CURRENT_USER;
1108
1109     /* @@ Wine registry key: HKLM\Software\Wine\Crypto\RSA */
1110     /* @@ Wine registry key: HKCU\Software\Wine\Crypto\RSA */
1111     return RegOpenKeyExA(hRootKey, szRSABase, 0, KEY_READ, phKey) ==
1112                          ERROR_SUCCESS;
1113 }
1114
1115 /******************************************************************************
1116  * delete_container_key [Internal]
1117  *
1118  * Deletes a key container's persistent storage.
1119  *
1120  * PARAMS
1121  *  pszContainerName [I] Name of the container to be opened.
1122  *  dwFlags          [I] Flags indicating which keyset to be opened.
1123  */
1124 static BOOL delete_container_key(LPCSTR pszContainerName, DWORD dwFlags)
1125 {
1126     CHAR szRegKey[MAX_PATH];
1127
1128     if (snprintf(szRegKey, MAX_PATH, RSAENH_REGKEY, pszContainerName) >= MAX_PATH) {
1129         SetLastError(NTE_BAD_KEYSET_PARAM);
1130         return FALSE;
1131     } else {
1132         HKEY hRootKey;
1133         if (dwFlags & CRYPT_MACHINE_KEYSET)
1134             hRootKey = HKEY_LOCAL_MACHINE;
1135         else
1136             hRootKey = HKEY_CURRENT_USER;
1137         if (!RegDeleteKeyA(hRootKey, szRegKey)) {
1138             SetLastError(ERROR_SUCCESS);
1139             return TRUE;
1140         } else {
1141             SetLastError(NTE_BAD_KEYSET);
1142             return FALSE;
1143         }
1144     }
1145 }
1146
1147 /******************************************************************************
1148  * store_key_container_keys [Internal]
1149  *
1150  * Stores key container's keys in a persistent location.
1151  *
1152  * PARAMS
1153  *  pKeyContainer [I] Pointer to the key container whose keys are to be saved
1154  */
1155 static void store_key_container_keys(KEYCONTAINER *pKeyContainer)
1156 {
1157     HKEY hKey;
1158     DWORD dwFlags;
1159
1160     /* On WinXP, persistent keys are stored in a file located at:
1161      * $AppData$\\Microsoft\\Crypto\\RSA\\$SID$\\some_hex_string
1162      */
1163
1164     if (pKeyContainer->dwFlags & CRYPT_MACHINE_KEYSET)
1165         dwFlags = CRYPTPROTECT_LOCAL_MACHINE;
1166     else
1167         dwFlags = 0;
1168
1169     if (create_container_key(pKeyContainer, KEY_WRITE, &hKey))
1170     {
1171         store_key_pair(pKeyContainer->hKeyExchangeKeyPair, hKey,
1172                        AT_KEYEXCHANGE, dwFlags);
1173         store_key_pair(pKeyContainer->hSignatureKeyPair, hKey,
1174                        AT_SIGNATURE, dwFlags);
1175         RegCloseKey(hKey);
1176     }
1177 }
1178
1179 /******************************************************************************
1180  * store_key_container_permissions [Internal]
1181  *
1182  * Stores key container's key permissions in a persistent location.
1183  *
1184  * PARAMS
1185  *  pKeyContainer [I] Pointer to the key container whose key permissions are to
1186  *                    be saved
1187  */
1188 static void store_key_container_permissions(KEYCONTAINER *pKeyContainer)
1189 {
1190     HKEY hKey;
1191
1192     if (create_container_key(pKeyContainer, KEY_WRITE, &hKey))
1193     {
1194         store_key_permissions(pKeyContainer->hKeyExchangeKeyPair, hKey,
1195                        AT_KEYEXCHANGE);
1196         store_key_permissions(pKeyContainer->hSignatureKeyPair, hKey,
1197                        AT_SIGNATURE);
1198         RegCloseKey(hKey);
1199     }
1200 }
1201
1202 /******************************************************************************
1203  * release_key_container_keys [Internal]
1204  *
1205  * Releases key container's keys.
1206  *
1207  * PARAMS
1208  *  pKeyContainer [I] Pointer to the key container whose keys are to be released.
1209  */
1210 static void release_key_container_keys(KEYCONTAINER *pKeyContainer)
1211 {
1212     release_handle(&handle_table, pKeyContainer->hKeyExchangeKeyPair,
1213                    RSAENH_MAGIC_KEY);
1214     release_handle(&handle_table, pKeyContainer->hSignatureKeyPair,
1215                    RSAENH_MAGIC_KEY);
1216 }
1217
1218 /******************************************************************************
1219  * destroy_key_container [Internal]
1220  *
1221  * Destructor for key containers.
1222  *
1223  * PARAMS
1224  *  pObjectHdr [I] Pointer to the key container to be destroyed.
1225  */
1226 static void destroy_key_container(OBJECTHDR *pObjectHdr)
1227 {
1228     KEYCONTAINER *pKeyContainer = (KEYCONTAINER*)pObjectHdr;
1229
1230     if (!(pKeyContainer->dwFlags & CRYPT_VERIFYCONTEXT))
1231     {
1232         store_key_container_keys(pKeyContainer);
1233         store_key_container_permissions(pKeyContainer);
1234         release_key_container_keys(pKeyContainer);
1235     }
1236     else
1237         release_key_container_keys(pKeyContainer);
1238     HeapFree( GetProcessHeap(), 0, pKeyContainer );
1239 }
1240
1241 /******************************************************************************
1242  * new_key_container [Internal]
1243  *
1244  * Create a new key container. The personality (RSA Base, Strong or Enhanced CP) 
1245  * of the CSP is determined via the pVTable->pszProvName string.
1246  *
1247  * PARAMS
1248  *  pszContainerName [I] Name of the key container.
1249  *  pVTable          [I] Callback functions and context info provided by the OS
1250  *
1251  * RETURNS
1252  *  Success: Handle to the new key container.
1253  *  Failure: INVALID_HANDLE_VALUE
1254  */
1255 static HCRYPTPROV new_key_container(PCCH pszContainerName, DWORD dwFlags, const VTableProvStruc *pVTable)
1256 {
1257     KEYCONTAINER *pKeyContainer;
1258     HCRYPTPROV hKeyContainer;
1259
1260     hKeyContainer = new_object(&handle_table, sizeof(KEYCONTAINER), RSAENH_MAGIC_CONTAINER,
1261                                destroy_key_container, (OBJECTHDR**)&pKeyContainer);
1262     if (hKeyContainer != (HCRYPTPROV)INVALID_HANDLE_VALUE)
1263     {
1264         lstrcpynA(pKeyContainer->szName, pszContainerName, MAX_PATH);
1265         pKeyContainer->dwFlags = dwFlags;
1266         pKeyContainer->dwEnumAlgsCtr = 0;
1267         pKeyContainer->hKeyExchangeKeyPair = (HCRYPTKEY)INVALID_HANDLE_VALUE;
1268         pKeyContainer->hSignatureKeyPair = (HCRYPTKEY)INVALID_HANDLE_VALUE;
1269         if (pVTable && pVTable->pszProvName) {
1270             lstrcpynA(pKeyContainer->szProvName, pVTable->pszProvName, MAX_PATH);
1271             if (!strcmp(pVTable->pszProvName, MS_DEF_PROV_A)) {
1272                 pKeyContainer->dwPersonality = RSAENH_PERSONALITY_BASE;
1273             } else if (!strcmp(pVTable->pszProvName, MS_ENHANCED_PROV_A)) {
1274                 pKeyContainer->dwPersonality = RSAENH_PERSONALITY_ENHANCED;
1275             } else if (!strcmp(pVTable->pszProvName, MS_DEF_RSA_SCHANNEL_PROV_A)) { 
1276                 pKeyContainer->dwPersonality = RSAENH_PERSONALITY_SCHANNEL;
1277             } else if (!strcmp(pVTable->pszProvName, MS_ENH_RSA_AES_PROV_A)) {
1278                 pKeyContainer->dwPersonality = RSAENH_PERSONALITY_AES;
1279             } else {
1280                 pKeyContainer->dwPersonality = RSAENH_PERSONALITY_STRONG;
1281             }
1282         }
1283
1284         /* The new key container has to be inserted into the CSP immediately 
1285          * after creation to be available for CPGetProvParam's PP_ENUMCONTAINERS. */
1286         if (!(dwFlags & CRYPT_VERIFYCONTEXT)) {
1287             HKEY hKey;
1288
1289             if (create_container_key(pKeyContainer, KEY_WRITE, &hKey))
1290                 RegCloseKey(hKey);
1291         }
1292     }
1293
1294     return hKeyContainer;
1295 }
1296
1297 /******************************************************************************
1298  * read_key_value [Internal]
1299  *
1300  * Reads a key pair value from the registry
1301  *
1302  * PARAMS
1303  *  hKeyContainer [I] Crypt provider to use to import the key
1304  *  hKey          [I] Registry key from which to read the key pair
1305  *  dwKeySpec     [I] AT_KEYEXCHANGE or AT_SIGNATURE
1306  *  dwFlags       [I] Flags for unprotecting the key
1307  *  phCryptKey    [O] Returned key
1308  */
1309 static BOOL read_key_value(HCRYPTPROV hKeyContainer, HKEY hKey, DWORD dwKeySpec, DWORD dwFlags, HCRYPTKEY *phCryptKey)
1310 {
1311     LPCSTR szValueName;
1312     DWORD dwValueType, dwLen;
1313     BYTE *pbKey;
1314     DATA_BLOB blobIn, blobOut;
1315     BOOL ret = FALSE;
1316
1317     if (!(szValueName = map_key_spec_to_key_pair_name(dwKeySpec)))
1318         return FALSE;
1319     if (RegQueryValueExA(hKey, szValueName, 0, &dwValueType, NULL, &dwLen) ==
1320         ERROR_SUCCESS)
1321     {
1322         pbKey = HeapAlloc(GetProcessHeap(), 0, dwLen);
1323         if (pbKey)
1324         {
1325             if (RegQueryValueExA(hKey, szValueName, 0, &dwValueType, pbKey, &dwLen) ==
1326                 ERROR_SUCCESS)
1327             {
1328                 blobIn.pbData = pbKey;
1329                 blobIn.cbData = dwLen;
1330
1331                 if (CryptUnprotectData(&blobIn, NULL, NULL, NULL, NULL,
1332                     dwFlags, &blobOut))
1333                 {
1334                     ret = import_key(hKeyContainer, blobOut.pbData, blobOut.cbData, 0, 0,
1335                                      FALSE, phCryptKey);
1336                     LocalFree(blobOut.pbData);
1337                 }
1338             }
1339             HeapFree(GetProcessHeap(), 0, pbKey);
1340         }
1341     }
1342     if (ret)
1343     {
1344         CRYPTKEY *pKey;
1345
1346         if (lookup_handle(&handle_table, *phCryptKey, RSAENH_MAGIC_KEY,
1347                           (OBJECTHDR**)&pKey))
1348         {
1349             if ((szValueName = map_key_spec_to_permissions_name(dwKeySpec)))
1350             {
1351                 dwLen = sizeof(pKey->dwPermissions);
1352                 RegQueryValueExA(hKey, szValueName, 0, NULL,
1353                                  (BYTE *)&pKey->dwPermissions, &dwLen);
1354             }
1355         }
1356     }
1357     return ret;
1358 }
1359
1360 /******************************************************************************
1361  * read_key_container [Internal]
1362  *
1363  * Tries to read the persistent state of the key container (mainly the signature
1364  * and key exchange private keys) given by pszContainerName.
1365  *
1366  * PARAMS
1367  *  pszContainerName [I] Name of the key container to read from the registry
1368  *  pVTable          [I] Pointer to context data provided by the operating system
1369  *
1370  * RETURNS
1371  *  Success: Handle to the key container read from the registry
1372  *  Failure: INVALID_HANDLE_VALUE
1373  */
1374 static HCRYPTPROV read_key_container(PCHAR pszContainerName, DWORD dwFlags, const VTableProvStruc *pVTable)
1375 {
1376     HKEY hKey;
1377     KEYCONTAINER *pKeyContainer;
1378     HCRYPTPROV hKeyContainer;
1379     HCRYPTKEY hCryptKey;
1380
1381     if (!open_container_key(pszContainerName, dwFlags, &hKey))
1382     {
1383         SetLastError(NTE_BAD_KEYSET);
1384         return (HCRYPTPROV)INVALID_HANDLE_VALUE;
1385     }
1386
1387     hKeyContainer = new_key_container(pszContainerName, dwFlags, pVTable);
1388     if (hKeyContainer != (HCRYPTPROV)INVALID_HANDLE_VALUE)
1389     {
1390         DWORD dwProtectFlags = (dwFlags & CRYPT_MACHINE_KEYSET) ?
1391             CRYPTPROTECT_LOCAL_MACHINE : 0;
1392
1393         if (!lookup_handle(&handle_table, hKeyContainer, RSAENH_MAGIC_CONTAINER, 
1394                            (OBJECTHDR**)&pKeyContainer))
1395             return (HCRYPTPROV)INVALID_HANDLE_VALUE;
1396     
1397         /* read_key_value calls import_key, which calls import_private_key,
1398          * which implicitly installs the key value into the appropriate key
1399          * container key.  Thus the ref count is incremented twice, once for
1400          * the output key value, and once for the implicit install, and needs
1401          * to be decremented to balance the two.
1402          */
1403         if (read_key_value(hKeyContainer, hKey, AT_KEYEXCHANGE,
1404             dwProtectFlags, &hCryptKey))
1405             release_handle(&handle_table, hCryptKey, RSAENH_MAGIC_KEY);
1406         if (read_key_value(hKeyContainer, hKey, AT_SIGNATURE,
1407             dwProtectFlags, &hCryptKey))
1408             release_handle(&handle_table, hCryptKey, RSAENH_MAGIC_KEY);
1409     }
1410
1411     return hKeyContainer;
1412 }
1413
1414 /******************************************************************************
1415  * build_hash_signature [Internal]
1416  *
1417  * Builds a padded version of a hash to match the length of the RSA key modulus.
1418  *
1419  * PARAMS
1420  *  pbSignature [O] The padded hash object is stored here.
1421  *  dwLen       [I] Length of the pbSignature buffer.
1422  *  aiAlgid     [I] Algorithm identifier of the hash to be padded.
1423  *  abHashValue [I] The value of the hash object.
1424  *  dwHashLen   [I] Length of the hash value.
1425  *  dwFlags     [I] Selection of padding algorithm.
1426  *
1427  * RETURNS
1428  *  Success: TRUE
1429  *  Failure: FALSE (NTE_BAD_ALGID)
1430  */
1431 static BOOL build_hash_signature(BYTE *pbSignature, DWORD dwLen, ALG_ID aiAlgid, 
1432                                  CONST BYTE *abHashValue, DWORD dwHashLen, DWORD dwFlags) 
1433 {
1434     /* These prefixes are meant to be concatenated with hash values of the
1435      * respective kind to form a PKCS #7 DigestInfo. */
1436     static const struct tagOIDDescriptor {
1437         ALG_ID aiAlgid;
1438         DWORD dwLen;
1439         CONST BYTE abOID[19];
1440     } aOIDDescriptor[] = {
1441         { CALG_MD2, 18, { 0x30, 0x20, 0x30, 0x0c, 0x06, 0x08, 0x2a, 0x86, 0x48,
1442                           0x86, 0xf7, 0x0d, 0x02, 0x02, 0x05, 0x00, 0x04, 0x10 } },
1443         { CALG_MD4, 18, { 0x30, 0x20, 0x30, 0x0c, 0x06, 0x08, 0x2a, 0x86, 0x48, 
1444                           0x86, 0xf7, 0x0d, 0x02, 0x04, 0x05, 0x00, 0x04, 0x10 } },
1445         { CALG_MD5, 18, { 0x30, 0x20, 0x30, 0x0c, 0x06, 0x08, 0x2a, 0x86, 0x48,
1446                           0x86, 0xf7, 0x0d, 0x02, 0x05, 0x05, 0x00, 0x04, 0x10 } },
1447         { CALG_SHA, 15, { 0x30, 0x21, 0x30, 0x09, 0x06, 0x05, 0x2b, 0x0e, 0x03, 
1448                           0x02, 0x1a, 0x05, 0x00, 0x04, 0x14 } },
1449         { CALG_SHA_256, 19, { 0x30, 0x31, 0x30, 0x0d, 0x06, 0x09, 0x60, 0x86,
1450                               0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x01,
1451                               0x05, 0x00, 0x04, 0x20 } },
1452         { CALG_SHA_384, 19, { 0x30, 0x41, 0x30, 0x0d, 0x06, 0x09, 0x60, 0x86,
1453                               0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x01,
1454                               0x05, 0x00, 0x04, 0x30 } },
1455         { CALG_SHA_384, 19, { 0x30, 0x51, 0x30, 0x0d, 0x06, 0x09, 0x60, 0x86,
1456                               0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x01,
1457                               0x05, 0x00, 0x04, 0x40 } },
1458         { CALG_SSL3_SHAMD5, 0, { 0 } },
1459         { 0,        0,  { 0 } }
1460     };
1461     DWORD dwIdxOID, i, j;
1462
1463     for (dwIdxOID = 0; aOIDDescriptor[dwIdxOID].aiAlgid; dwIdxOID++) {
1464         if (aOIDDescriptor[dwIdxOID].aiAlgid == aiAlgid) break;
1465     }
1466     
1467     if (!aOIDDescriptor[dwIdxOID].aiAlgid) {
1468         SetLastError(NTE_BAD_ALGID);
1469         return FALSE;
1470     }
1471
1472     /* Build the padded signature */
1473     if (dwFlags & CRYPT_X931_FORMAT) {
1474         pbSignature[0] = 0x6b;
1475         for (i=1; i < dwLen - dwHashLen - 3; i++) {
1476             pbSignature[i] = 0xbb;
1477         }
1478         pbSignature[i++] = 0xba;
1479         for (j=0; j < dwHashLen; j++, i++) {
1480             pbSignature[i] = abHashValue[j];
1481         }
1482         pbSignature[i++] = 0x33;
1483         pbSignature[i++] = 0xcc;
1484     } else {
1485         pbSignature[0] = 0x00;
1486         pbSignature[1] = 0x01;
1487         if (dwFlags & CRYPT_NOHASHOID) {
1488             for (i=2; i < dwLen - 1 - dwHashLen; i++) {
1489                 pbSignature[i] = 0xff;
1490             }
1491             pbSignature[i++] = 0x00;
1492         } else {
1493             for (i=2; i < dwLen - 1 - aOIDDescriptor[dwIdxOID].dwLen - dwHashLen; i++) {
1494                 pbSignature[i] = 0xff;
1495             }
1496             pbSignature[i++] = 0x00;
1497             for (j=0; j < aOIDDescriptor[dwIdxOID].dwLen; j++) {
1498                 pbSignature[i++] = aOIDDescriptor[dwIdxOID].abOID[j];
1499             }
1500         }
1501         for (j=0; j < dwHashLen; j++) {
1502             pbSignature[i++] = abHashValue[j];
1503         }
1504     }
1505     
1506     return TRUE;
1507 }
1508
1509 /******************************************************************************
1510  * tls1_p [Internal]
1511  *
1512  * This is an implementation of the 'P_hash' helper function for TLS1's PRF.
1513  * It is used exclusively by tls1_prf. For details see RFC 2246, chapter 5.
1514  * The pseudo random stream generated by this function is exclusive or'ed with
1515  * the data in pbBuffer.
1516  *
1517  * PARAMS
1518  *  hHMAC       [I]   HMAC object, which will be used in pseudo random generation
1519  *  pblobSeed   [I]   Seed value
1520  *  pbBuffer    [I/O] Pseudo random stream will be xor'ed to the provided data
1521  *  dwBufferLen [I]   Number of pseudo random bytes desired
1522  *
1523  * RETURNS
1524  *  Success: TRUE
1525  *  Failure: FALSE
1526  */
1527 static BOOL tls1_p(HCRYPTHASH hHMAC, CONST PCRYPT_DATA_BLOB pblobSeed, PBYTE pbBuffer, DWORD dwBufferLen)
1528 {
1529     CRYPTHASH *pHMAC;
1530     BYTE abAi[RSAENH_MAX_HASH_SIZE];
1531     DWORD i = 0;
1532
1533     if (!lookup_handle(&handle_table, hHMAC, RSAENH_MAGIC_HASH, (OBJECTHDR**)&pHMAC)) {
1534         SetLastError(NTE_BAD_HASH);
1535         return FALSE;
1536     }
1537     
1538     /* compute A_1 = HMAC(seed) */
1539     init_hash(pHMAC);
1540     update_hash(pHMAC, pblobSeed->pbData, pblobSeed->cbData);
1541     finalize_hash(pHMAC);
1542     memcpy(abAi, pHMAC->abHashValue, pHMAC->dwHashSize);
1543
1544     do {
1545         /* compute HMAC(A_i + seed) */
1546         init_hash(pHMAC);
1547         update_hash(pHMAC, abAi, pHMAC->dwHashSize);
1548         update_hash(pHMAC, pblobSeed->pbData, pblobSeed->cbData);
1549         finalize_hash(pHMAC);
1550
1551         /* pseudo random stream := CONCAT_{i=1..n} ( HMAC(A_i + seed) ) */
1552         do {
1553             if (i >= dwBufferLen) break;
1554             pbBuffer[i] ^= pHMAC->abHashValue[i % pHMAC->dwHashSize];
1555             i++;
1556         } while (i % pHMAC->dwHashSize);
1557
1558         /* compute A_{i+1} = HMAC(A_i) */
1559         init_hash(pHMAC);
1560         update_hash(pHMAC, abAi, pHMAC->dwHashSize);
1561         finalize_hash(pHMAC);
1562         memcpy(abAi, pHMAC->abHashValue, pHMAC->dwHashSize);
1563     } while (i < dwBufferLen);
1564
1565     return TRUE;
1566 }
1567
1568 /******************************************************************************
1569  * tls1_prf [Internal]
1570  *
1571  * TLS1 pseudo random function as specified in RFC 2246, chapter 5
1572  *
1573  * PARAMS
1574  *  hProv       [I] Key container used to compute the pseudo random stream
1575  *  hSecret     [I] Key that holds the (pre-)master secret
1576  *  pblobLabel  [I] Descriptive label
1577  *  pblobSeed   [I] Seed value
1578  *  pbBuffer    [O] Pseudo random numbers will be stored here
1579  *  dwBufferLen [I] Number of pseudo random bytes desired
1580  *
1581  * RETURNS
1582  *  Success: TRUE
1583  *  Failure: FALSE
1584  */ 
1585 static BOOL tls1_prf(HCRYPTPROV hProv, HCRYPTPROV hSecret, CONST PCRYPT_DATA_BLOB pblobLabel,
1586                      CONST PCRYPT_DATA_BLOB pblobSeed, PBYTE pbBuffer, DWORD dwBufferLen)
1587 {
1588     HMAC_INFO hmacInfo = { 0, NULL, 0, NULL, 0 };
1589     HCRYPTHASH hHMAC = (HCRYPTHASH)INVALID_HANDLE_VALUE;
1590     HCRYPTKEY hHalfSecret = (HCRYPTKEY)INVALID_HANDLE_VALUE;
1591     CRYPTKEY *pHalfSecret, *pSecret;
1592     DWORD dwHalfSecretLen;
1593     BOOL result = FALSE;
1594     CRYPT_DATA_BLOB blobLabelSeed;
1595
1596     TRACE("(hProv=%08lx, hSecret=%08lx, pblobLabel=%p, pblobSeed=%p, pbBuffer=%p, dwBufferLen=%d)\n",
1597           hProv, hSecret, pblobLabel, pblobSeed, pbBuffer, dwBufferLen);
1598
1599     if (!lookup_handle(&handle_table, hSecret, RSAENH_MAGIC_KEY, (OBJECTHDR**)&pSecret)) {
1600         SetLastError(NTE_FAIL);
1601         return FALSE;
1602     }
1603
1604     dwHalfSecretLen = (pSecret->dwKeyLen+1)/2;
1605     
1606     /* concatenation of the label and the seed */
1607     if (!concat_data_blobs(&blobLabelSeed, pblobLabel, pblobSeed)) goto exit;
1608    
1609     /* zero out the buffer, since two random streams will be xor'ed into it. */
1610     memset(pbBuffer, 0, dwBufferLen);
1611    
1612     /* build a 'fake' key, to hold the secret. CALG_SSL2_MASTER is used since it provides
1613      * the biggest range of valid key lengths. */
1614     hHalfSecret = new_key(hProv, CALG_SSL2_MASTER, MAKELONG(0,dwHalfSecretLen*8), &pHalfSecret);
1615     if (hHalfSecret == (HCRYPTKEY)INVALID_HANDLE_VALUE) goto exit;
1616
1617     /* Derive an HMAC_MD5 hash and call the helper function. */
1618     memcpy(pHalfSecret->abKeyValue, pSecret->abKeyValue, dwHalfSecretLen);
1619     if (!RSAENH_CPCreateHash(hProv, CALG_HMAC, hHalfSecret, 0, &hHMAC)) goto exit;
1620     hmacInfo.HashAlgid = CALG_MD5;
1621     if (!RSAENH_CPSetHashParam(hProv, hHMAC, HP_HMAC_INFO, (BYTE*)&hmacInfo, 0)) goto exit;
1622     if (!tls1_p(hHMAC, &blobLabelSeed, pbBuffer, dwBufferLen)) goto exit;
1623
1624     /* Reconfigure to HMAC_SHA hash and call helper function again. */
1625     memcpy(pHalfSecret->abKeyValue, pSecret->abKeyValue + (pSecret->dwKeyLen/2), dwHalfSecretLen);
1626     hmacInfo.HashAlgid = CALG_SHA;
1627     if (!RSAENH_CPSetHashParam(hProv, hHMAC, HP_HMAC_INFO, (BYTE*)&hmacInfo, 0)) goto exit;
1628     if (!tls1_p(hHMAC, &blobLabelSeed, pbBuffer, dwBufferLen)) goto exit;
1629     
1630     result = TRUE;
1631 exit:
1632     release_handle(&handle_table, hHalfSecret, RSAENH_MAGIC_KEY);
1633     if (hHMAC != (HCRYPTHASH)INVALID_HANDLE_VALUE) RSAENH_CPDestroyHash(hProv, hHMAC);
1634     free_data_blob(&blobLabelSeed);
1635     return result;
1636 }
1637
1638 /******************************************************************************
1639  * pad_data [Internal]
1640  *
1641  * Helper function for data padding according to PKCS1 #2
1642  *
1643  * PARAMS
1644  *  abData      [I] The data to be padded
1645  *  dwDataLen   [I] Length of the data 
1646  *  abBuffer    [O] Padded data will be stored here
1647  *  dwBufferLen [I] Length of the buffer (also length of padded data)
1648  *  dwFlags     [I] Padding format (CRYPT_SSL2_FALLBACK)
1649  *
1650  * RETURN
1651  *  Success: TRUE
1652  *  Failure: FALSE (NTE_BAD_LEN, too much data to pad)
1653  */
1654 static BOOL pad_data(CONST BYTE *abData, DWORD dwDataLen, BYTE *abBuffer, DWORD dwBufferLen, 
1655                      DWORD dwFlags)
1656 {
1657     DWORD i;
1658     
1659     /* Ensure there is enough space for PKCS1 #2 padding */
1660     if (dwDataLen > dwBufferLen-11) {
1661         SetLastError(NTE_BAD_LEN);
1662         return FALSE;
1663     }
1664
1665     memmove(abBuffer + dwBufferLen - dwDataLen, abData, dwDataLen);            
1666     
1667     abBuffer[0] = 0x00;
1668     abBuffer[1] = RSAENH_PKC_BLOCKTYPE; 
1669     for (i=2; i < dwBufferLen - dwDataLen - 1; i++) 
1670         do gen_rand_impl(&abBuffer[i], 1); while (!abBuffer[i]);
1671     if (dwFlags & CRYPT_SSL2_FALLBACK) 
1672         for (i-=8; i < dwBufferLen - dwDataLen - 1; i++) 
1673             abBuffer[i] = 0x03;
1674     abBuffer[i] = 0x00;
1675     
1676     return TRUE; 
1677 }
1678
1679 /******************************************************************************
1680  * unpad_data [Internal]
1681  *
1682  * Remove the PKCS1 padding from RSA decrypted data
1683  *
1684  * PARAMS
1685  *  abData      [I]   The padded data
1686  *  dwDataLen   [I]   Length of the padded data
1687  *  abBuffer    [O]   Data without padding will be stored here
1688  *  dwBufferLen [I/O] I: Length of the buffer, O: Length of unpadded data
1689  *  dwFlags     [I]   Currently none defined
1690  *
1691  * RETURNS
1692  *  Success: TRUE
1693  *  Failure: FALSE, (NTE_BAD_DATA, no valid PKCS1 padding or buffer too small)
1694  */
1695 static BOOL unpad_data(CONST BYTE *abData, DWORD dwDataLen, BYTE *abBuffer, DWORD *dwBufferLen, 
1696                        DWORD dwFlags)
1697 {
1698     DWORD i;
1699     
1700     for (i=2; i<dwDataLen; i++)
1701         if (!abData[i])
1702             break;
1703
1704     if ((i == dwDataLen) || (*dwBufferLen < dwDataLen - i - 1) ||
1705         (abData[0] != 0x00) || (abData[1] != RSAENH_PKC_BLOCKTYPE))
1706     {
1707         SetLastError(NTE_BAD_DATA);
1708         return FALSE;
1709     }
1710
1711     *dwBufferLen = dwDataLen - i - 1;
1712     memmove(abBuffer, abData + i + 1, *dwBufferLen);
1713     return TRUE;
1714 }
1715
1716 /******************************************************************************
1717  * CPAcquireContext (RSAENH.@)
1718  *
1719  * Acquire a handle to the key container specified by pszContainer
1720  *
1721  * PARAMS
1722  *  phProv       [O] Pointer to the location the acquired handle will be written to.
1723  *  pszContainer [I] Name of the desired key container. See Notes
1724  *  dwFlags      [I] Flags. See Notes.
1725  *  pVTable      [I] Pointer to a PVTableProvStruct containing callbacks.
1726  * 
1727  * RETURNS
1728  *  Success: TRUE
1729  *  Failure: FALSE
1730  *
1731  * NOTES
1732  *  If pszContainer is NULL or points to a zero length string the user's login 
1733  *  name will be used as the key container name.
1734  *
1735  *  If the CRYPT_NEW_KEYSET flag is set in dwFlags a new keyset will be created.
1736  *  If a keyset with the given name already exists, the function fails and sets
1737  *  last error to NTE_EXISTS. If CRYPT_NEW_KEYSET is not set and the specified
1738  *  key container does not exist, function fails and sets last error to 
1739  *  NTE_BAD_KEYSET.
1740  */                         
1741 BOOL WINAPI RSAENH_CPAcquireContext(HCRYPTPROV *phProv, LPSTR pszContainer,
1742                    DWORD dwFlags, PVTableProvStruc pVTable)
1743 {
1744     CHAR szKeyContainerName[MAX_PATH];
1745
1746     TRACE("(phProv=%p, pszContainer=%s, dwFlags=%08x, pVTable=%p)\n", phProv,
1747           debugstr_a(pszContainer), dwFlags, pVTable);
1748
1749     if (pszContainer && *pszContainer)
1750     {
1751         lstrcpynA(szKeyContainerName, pszContainer, MAX_PATH);
1752     } 
1753     else
1754     {
1755         DWORD dwLen = sizeof(szKeyContainerName);
1756         if (!GetUserNameA(szKeyContainerName, &dwLen)) return FALSE;
1757     }
1758
1759     switch (dwFlags & (CRYPT_NEWKEYSET|CRYPT_VERIFYCONTEXT|CRYPT_DELETEKEYSET)) 
1760     {
1761         case 0:
1762             *phProv = read_key_container(szKeyContainerName, dwFlags, pVTable);
1763             break;
1764
1765         case CRYPT_DELETEKEYSET:
1766             return delete_container_key(szKeyContainerName, dwFlags);
1767
1768         case CRYPT_NEWKEYSET:
1769             *phProv = read_key_container(szKeyContainerName, dwFlags, pVTable);
1770             if (*phProv != (HCRYPTPROV)INVALID_HANDLE_VALUE) 
1771             {
1772                 release_handle(&handle_table, *phProv, RSAENH_MAGIC_CONTAINER);
1773                 TRACE("Can't create new keyset, already exists\n");
1774                 SetLastError(NTE_EXISTS);
1775                 return FALSE;
1776             }
1777             *phProv = new_key_container(szKeyContainerName, dwFlags, pVTable);
1778             break;
1779
1780         case CRYPT_VERIFYCONTEXT|CRYPT_NEWKEYSET:
1781         case CRYPT_VERIFYCONTEXT:
1782             if (pszContainer && *pszContainer) {
1783                 TRACE("pszContainer should be empty\n");
1784                 SetLastError(NTE_BAD_FLAGS);
1785                 return FALSE;
1786             }
1787             *phProv = new_key_container("", dwFlags, pVTable);
1788             break;
1789             
1790         default:
1791             *phProv = (HCRYPTPROV)INVALID_HANDLE_VALUE;
1792             SetLastError(NTE_BAD_FLAGS);
1793             return FALSE;
1794     }
1795                 
1796     if (*phProv != (HCRYPTPROV)INVALID_HANDLE_VALUE) {
1797         SetLastError(ERROR_SUCCESS);
1798         return TRUE;
1799     } else {
1800         return FALSE;
1801     }
1802 }
1803
1804 /******************************************************************************
1805  * CPCreateHash (RSAENH.@)
1806  *
1807  * CPCreateHash creates and initializes a new hash object.
1808  *
1809  * PARAMS
1810  *  hProv   [I] Handle to the key container to which the new hash will belong.
1811  *  Algid   [I] Identifies the hash algorithm, which will be used for the hash.
1812  *  hKey    [I] Handle to a session key applied for keyed hashes.
1813  *  dwFlags [I] Currently no flags defined. Must be zero.
1814  *  phHash  [O] Points to the location where a handle to the new hash will be stored.
1815  *
1816  * RETURNS
1817  *  Success: TRUE
1818  *  Failure: FALSE
1819  *
1820  * NOTES
1821  *  hKey is a handle to a session key applied in keyed hashes like MAC and HMAC.
1822  *  If a normal hash object is to be created (like e.g. MD2 or SHA1) hKey must be zero.
1823  */
1824 BOOL WINAPI RSAENH_CPCreateHash(HCRYPTPROV hProv, ALG_ID Algid, HCRYPTKEY hKey, DWORD dwFlags, 
1825                                 HCRYPTHASH *phHash)
1826 {
1827     CRYPTKEY *pCryptKey;
1828     CRYPTHASH *pCryptHash;
1829     const PROV_ENUMALGS_EX *peaAlgidInfo;
1830         
1831     TRACE("(hProv=%08lx, Algid=%08x, hKey=%08lx, dwFlags=%08x, phHash=%p)\n", hProv, Algid, hKey,
1832           dwFlags, phHash);
1833
1834     peaAlgidInfo = get_algid_info(hProv, Algid);
1835     if (!peaAlgidInfo) return FALSE;
1836
1837     if (dwFlags)
1838     {
1839         SetLastError(NTE_BAD_FLAGS);
1840         return FALSE;
1841     }
1842
1843     if (Algid == CALG_MAC || Algid == CALG_HMAC || Algid == CALG_SCHANNEL_MASTER_HASH || 
1844         Algid == CALG_TLS1PRF) 
1845     {
1846         if (!lookup_handle(&handle_table, hKey, RSAENH_MAGIC_KEY, (OBJECTHDR**)&pCryptKey)) {
1847             SetLastError(NTE_BAD_KEY);
1848             return FALSE;
1849         }
1850
1851         if ((Algid == CALG_MAC) && (GET_ALG_TYPE(pCryptKey->aiAlgid) != ALG_TYPE_BLOCK)) {
1852             SetLastError(NTE_BAD_KEY);
1853             return FALSE;
1854         }
1855
1856         if ((Algid == CALG_SCHANNEL_MASTER_HASH || Algid == CALG_TLS1PRF) && 
1857             (pCryptKey->aiAlgid != CALG_TLS1_MASTER)) 
1858         {
1859             SetLastError(NTE_BAD_KEY);
1860             return FALSE;
1861         }
1862         if (Algid == CALG_SCHANNEL_MASTER_HASH &&
1863             ((!pCryptKey->siSChannelInfo.blobClientRandom.cbData) ||
1864              (!pCryptKey->siSChannelInfo.blobServerRandom.cbData)))
1865         {
1866             SetLastError(ERROR_INVALID_PARAMETER);
1867             return FALSE;
1868         }
1869
1870         if ((Algid == CALG_TLS1PRF) && (pCryptKey->dwState != RSAENH_KEYSTATE_MASTERKEY)) {
1871             SetLastError(NTE_BAD_KEY_STATE);
1872             return FALSE;
1873         }
1874     }
1875
1876     *phHash = new_object(&handle_table, sizeof(CRYPTHASH), RSAENH_MAGIC_HASH,
1877                          destroy_hash, (OBJECTHDR**)&pCryptHash);
1878     if (!pCryptHash) return FALSE;
1879
1880     pCryptHash->aiAlgid = Algid;
1881     pCryptHash->hKey = hKey;
1882     pCryptHash->hProv = hProv;
1883     pCryptHash->dwState = RSAENH_HASHSTATE_HASHING;
1884     pCryptHash->pHMACInfo = NULL;
1885     pCryptHash->dwHashSize = peaAlgidInfo->dwDefaultLen >> 3;
1886     init_data_blob(&pCryptHash->tpPRFParams.blobLabel);
1887     init_data_blob(&pCryptHash->tpPRFParams.blobSeed);
1888
1889     if (Algid == CALG_SCHANNEL_MASTER_HASH) {
1890         static const char keyex[] = "key expansion";
1891         BYTE key_expansion[sizeof keyex];
1892         CRYPT_DATA_BLOB blobRandom, blobKeyExpansion = { 13, key_expansion };
1893
1894         memcpy( key_expansion, keyex, sizeof keyex );
1895         
1896         if (pCryptKey->dwState != RSAENH_KEYSTATE_MASTERKEY) {
1897             static const char msec[] = "master secret";
1898             BYTE master_secret[sizeof msec];
1899             CRYPT_DATA_BLOB blobLabel = { 13, master_secret };
1900             BYTE abKeyValue[48];
1901
1902             memcpy( master_secret, msec, sizeof msec );
1903     
1904             /* See RFC 2246, chapter 8.1 */
1905             if (!concat_data_blobs(&blobRandom, 
1906                                    &pCryptKey->siSChannelInfo.blobClientRandom, 
1907                                    &pCryptKey->siSChannelInfo.blobServerRandom))
1908             {
1909                 return FALSE;
1910             }
1911             tls1_prf(hProv, hKey, &blobLabel, &blobRandom, abKeyValue, 48);
1912             pCryptKey->dwState = RSAENH_KEYSTATE_MASTERKEY; 
1913             memcpy(pCryptKey->abKeyValue, abKeyValue, 48);
1914             free_data_blob(&blobRandom);
1915         }
1916
1917         /* See RFC 2246, chapter 6.3 */
1918         if (!concat_data_blobs(&blobRandom, 
1919                                   &pCryptKey->siSChannelInfo.blobServerRandom, 
1920                                   &pCryptKey->siSChannelInfo.blobClientRandom))
1921         {
1922             return FALSE;
1923         }
1924         tls1_prf(hProv, hKey, &blobKeyExpansion, &blobRandom, pCryptHash->abHashValue, 
1925                  RSAENH_MAX_HASH_SIZE);
1926         free_data_blob(&blobRandom);
1927     }
1928
1929     return init_hash(pCryptHash);
1930 }
1931
1932 /******************************************************************************
1933  * CPDestroyHash (RSAENH.@)
1934  * 
1935  * Releases the handle to a hash object. The object is destroyed if its reference
1936  * count reaches zero.
1937  *
1938  * PARAMS
1939  *  hProv [I] Handle to the key container to which the hash object belongs.
1940  *  hHash [I] Handle to the hash object to be released.
1941  *
1942  * RETURNS
1943  *  Success: TRUE
1944  *  Failure: FALSE 
1945  */
1946 BOOL WINAPI RSAENH_CPDestroyHash(HCRYPTPROV hProv, HCRYPTHASH hHash)
1947 {
1948     TRACE("(hProv=%08lx, hHash=%08lx)\n", hProv, hHash);
1949      
1950     if (!is_valid_handle(&handle_table, hProv, RSAENH_MAGIC_CONTAINER))
1951     {
1952         SetLastError(NTE_BAD_UID);
1953         return FALSE;
1954     }
1955         
1956     if (!release_handle(&handle_table, hHash, RSAENH_MAGIC_HASH)) 
1957     {
1958         SetLastError(NTE_BAD_HASH);
1959         return FALSE;
1960     }
1961     
1962     return TRUE;
1963 }
1964
1965 /******************************************************************************
1966  * CPDestroyKey (RSAENH.@)
1967  *
1968  * Releases the handle to a key object. The object is destroyed if its reference
1969  * count reaches zero.
1970  *
1971  * PARAMS
1972  *  hProv [I] Handle to the key container to which the key object belongs.
1973  *  hKey  [I] Handle to the key object to be released.
1974  *
1975  * RETURNS
1976  *  Success: TRUE
1977  *  Failure: FALSE
1978  */
1979 BOOL WINAPI RSAENH_CPDestroyKey(HCRYPTPROV hProv, HCRYPTKEY hKey)
1980 {
1981     TRACE("(hProv=%08lx, hKey=%08lx)\n", hProv, hKey);
1982         
1983     if (!is_valid_handle(&handle_table, hProv, RSAENH_MAGIC_CONTAINER))
1984     {
1985         SetLastError(NTE_BAD_UID);
1986         return FALSE;
1987     }
1988         
1989     if (!release_handle(&handle_table, hKey, RSAENH_MAGIC_KEY)) 
1990     {
1991         SetLastError(NTE_BAD_KEY);
1992         return FALSE;
1993     }
1994     
1995     return TRUE;
1996 }
1997
1998 /******************************************************************************
1999  * CPDuplicateHash (RSAENH.@)
2000  *
2001  * Clones a hash object including its current state.
2002  *
2003  * PARAMS
2004  *  hUID        [I] Handle to the key container the hash belongs to.
2005  *  hHash       [I] Handle to the hash object to be cloned.
2006  *  pdwReserved [I] Reserved. Must be NULL.
2007  *  dwFlags     [I] No flags are currently defined. Must be 0.
2008  *  phHash      [O] Handle to the cloned hash object.
2009  *
2010  * RETURNS
2011  *  Success: TRUE.
2012  *  Failure: FALSE.
2013  */
2014 BOOL WINAPI RSAENH_CPDuplicateHash(HCRYPTPROV hUID, HCRYPTHASH hHash, DWORD *pdwReserved, 
2015                                    DWORD dwFlags, HCRYPTHASH *phHash)
2016 {
2017     CRYPTHASH *pSrcHash, *pDestHash;
2018     
2019     TRACE("(hUID=%08lx, hHash=%08lx, pdwReserved=%p, dwFlags=%08x, phHash=%p)\n", hUID, hHash,
2020            pdwReserved, dwFlags, phHash);
2021
2022     if (!is_valid_handle(&handle_table, hUID, RSAENH_MAGIC_CONTAINER))
2023     {
2024         SetLastError(NTE_BAD_UID);
2025         return FALSE;
2026     }
2027
2028     if (!lookup_handle(&handle_table, hHash, RSAENH_MAGIC_HASH, (OBJECTHDR**)&pSrcHash))
2029     {
2030         SetLastError(NTE_BAD_HASH);
2031         return FALSE;
2032     }
2033
2034     if (!phHash || pdwReserved || dwFlags) 
2035     {
2036         SetLastError(ERROR_INVALID_PARAMETER);
2037         return FALSE;
2038     }
2039
2040     *phHash = new_object(&handle_table, sizeof(CRYPTHASH), RSAENH_MAGIC_HASH,
2041                          destroy_hash, (OBJECTHDR**)&pDestHash);
2042     if (*phHash != (HCRYPTHASH)INVALID_HANDLE_VALUE)
2043     {
2044         *pDestHash = *pSrcHash;
2045         duplicate_hash_impl(pSrcHash->aiAlgid, &pSrcHash->context, &pDestHash->context);
2046         copy_hmac_info(&pDestHash->pHMACInfo, pSrcHash->pHMACInfo);
2047         copy_data_blob(&pDestHash->tpPRFParams.blobLabel, &pSrcHash->tpPRFParams.blobLabel);
2048         copy_data_blob(&pDestHash->tpPRFParams.blobSeed, &pSrcHash->tpPRFParams.blobSeed);
2049     }
2050
2051     return *phHash != (HCRYPTHASH)INVALID_HANDLE_VALUE;
2052 }
2053
2054 /******************************************************************************
2055  * CPDuplicateKey (RSAENH.@)
2056  *
2057  * Clones a key object including its current state.
2058  *
2059  * PARAMS
2060  *  hUID        [I] Handle to the key container the hash belongs to.
2061  *  hKey        [I] Handle to the key object to be cloned.
2062  *  pdwReserved [I] Reserved. Must be NULL.
2063  *  dwFlags     [I] No flags are currently defined. Must be 0.
2064  *  phHash      [O] Handle to the cloned key object.
2065  *
2066  * RETURNS
2067  *  Success: TRUE.
2068  *  Failure: FALSE.
2069  */
2070 BOOL WINAPI RSAENH_CPDuplicateKey(HCRYPTPROV hUID, HCRYPTKEY hKey, DWORD *pdwReserved, 
2071                                   DWORD dwFlags, HCRYPTKEY *phKey)
2072 {
2073     CRYPTKEY *pSrcKey, *pDestKey;
2074     
2075     TRACE("(hUID=%08lx, hKey=%08lx, pdwReserved=%p, dwFlags=%08x, phKey=%p)\n", hUID, hKey,
2076           pdwReserved, dwFlags, phKey);
2077
2078     if (!is_valid_handle(&handle_table, hUID, RSAENH_MAGIC_CONTAINER))
2079     {
2080         SetLastError(NTE_BAD_UID);
2081         return FALSE;
2082     }
2083
2084     if (!lookup_handle(&handle_table, hKey, RSAENH_MAGIC_KEY, (OBJECTHDR**)&pSrcKey))
2085     {
2086         SetLastError(NTE_BAD_KEY);
2087         return FALSE;
2088     }
2089
2090     if (!phKey || pdwReserved || dwFlags) 
2091     {
2092         SetLastError(ERROR_INVALID_PARAMETER);
2093         return FALSE;
2094     }
2095
2096     *phKey = new_object(&handle_table, sizeof(CRYPTKEY), RSAENH_MAGIC_KEY, destroy_key,
2097                         (OBJECTHDR**)&pDestKey);
2098     if (*phKey != (HCRYPTKEY)INVALID_HANDLE_VALUE)
2099     {
2100         *pDestKey = *pSrcKey;
2101         copy_data_blob(&pDestKey->siSChannelInfo.blobServerRandom,
2102                        &pSrcKey->siSChannelInfo.blobServerRandom);
2103         copy_data_blob(&pDestKey->siSChannelInfo.blobClientRandom, 
2104                        &pSrcKey->siSChannelInfo.blobClientRandom);
2105         duplicate_key_impl(pSrcKey->aiAlgid, &pSrcKey->context, &pDestKey->context);
2106         return TRUE;
2107     }
2108     else
2109     {
2110         return FALSE;
2111     }
2112 }
2113
2114 /******************************************************************************
2115  * CPEncrypt (RSAENH.@)
2116  *
2117  * Encrypt data.
2118  *
2119  * PARAMS
2120  *  hProv      [I]   The key container hKey and hHash belong to.
2121  *  hKey       [I]   The key used to encrypt the data.
2122  *  hHash      [I]   An optional hash object for parallel hashing. See notes.
2123  *  Final      [I]   Indicates if this is the last block of data to encrypt.
2124  *  dwFlags    [I]   Currently no flags defined. Must be zero.
2125  *  pbData     [I/O] Pointer to the data to encrypt. Encrypted data will also be stored there. 
2126  *  pdwDataLen [I/O] I: Length of data to encrypt, O: Length of encrypted data.
2127  *  dwBufLen   [I]   Size of the buffer at pbData.
2128  *
2129  * RETURNS
2130  *  Success: TRUE.
2131  *  Failure: FALSE.
2132  *
2133  * NOTES
2134  *  If a hash object handle is provided in hHash, it will be updated with the plaintext. 
2135  *  This is useful for message signatures.
2136  *
2137  *  This function uses the standard WINAPI protocol for querying data of dynamic length. 
2138  */
2139 BOOL WINAPI RSAENH_CPEncrypt(HCRYPTPROV hProv, HCRYPTKEY hKey, HCRYPTHASH hHash, BOOL Final, 
2140                              DWORD dwFlags, BYTE *pbData, DWORD *pdwDataLen, DWORD dwBufLen)
2141 {
2142     CRYPTKEY *pCryptKey;
2143     BYTE *in, out[RSAENH_MAX_BLOCK_SIZE], o[RSAENH_MAX_BLOCK_SIZE];
2144     DWORD dwEncryptedLen, i, j, k;
2145         
2146     TRACE("(hProv=%08lx, hKey=%08lx, hHash=%08lx, Final=%d, dwFlags=%08x, pbData=%p, "
2147           "pdwDataLen=%p, dwBufLen=%d)\n", hProv, hKey, hHash, Final, dwFlags, pbData, pdwDataLen,
2148           dwBufLen);
2149     
2150     if (!is_valid_handle(&handle_table, hProv, RSAENH_MAGIC_CONTAINER))
2151     {
2152         SetLastError(NTE_BAD_UID);
2153         return FALSE;
2154     }
2155
2156     if (dwFlags)
2157     {
2158         SetLastError(NTE_BAD_FLAGS);
2159         return FALSE;
2160     }
2161
2162     if (!lookup_handle(&handle_table, hKey, RSAENH_MAGIC_KEY, (OBJECTHDR**)&pCryptKey))
2163     {
2164         SetLastError(NTE_BAD_KEY);
2165         return FALSE;
2166     }
2167
2168     if (pCryptKey->dwState == RSAENH_KEYSTATE_IDLE) 
2169         pCryptKey->dwState = RSAENH_KEYSTATE_ENCRYPTING;
2170
2171     if (pCryptKey->dwState != RSAENH_KEYSTATE_ENCRYPTING) 
2172     {
2173         SetLastError(NTE_BAD_DATA);
2174         return FALSE;
2175     }
2176
2177     if (is_valid_handle(&handle_table, hHash, RSAENH_MAGIC_HASH)) {
2178         if (!RSAENH_CPHashData(hProv, hHash, pbData, *pdwDataLen, 0)) return FALSE;
2179     }
2180     
2181     if (GET_ALG_TYPE(pCryptKey->aiAlgid) == ALG_TYPE_BLOCK) {
2182         if (!Final && (*pdwDataLen % pCryptKey->dwBlockLen)) {
2183             SetLastError(NTE_BAD_DATA);
2184             return FALSE;
2185         }
2186
2187         dwEncryptedLen = (*pdwDataLen/pCryptKey->dwBlockLen+(Final?1:0))*pCryptKey->dwBlockLen;
2188
2189         if (pbData == NULL) {
2190             *pdwDataLen = dwEncryptedLen;
2191             return TRUE;
2192         }
2193         else if (dwEncryptedLen > dwBufLen) {
2194             *pdwDataLen = dwEncryptedLen;
2195             SetLastError(ERROR_MORE_DATA);
2196             return FALSE;
2197         }
2198
2199         /* Pad final block with length bytes */
2200         for (i=*pdwDataLen; i<dwEncryptedLen; i++) pbData[i] = dwEncryptedLen - *pdwDataLen;
2201         *pdwDataLen = dwEncryptedLen;
2202
2203         for (i=0, in=pbData; i<*pdwDataLen; i+=pCryptKey->dwBlockLen, in+=pCryptKey->dwBlockLen) {
2204             switch (pCryptKey->dwMode) {
2205                 case CRYPT_MODE_ECB:
2206                     encrypt_block_impl(pCryptKey->aiAlgid, 0, &pCryptKey->context, in, out, 
2207                                        RSAENH_ENCRYPT);
2208                     break;
2209                 
2210                 case CRYPT_MODE_CBC:
2211                     for (j=0; j<pCryptKey->dwBlockLen; j++) in[j] ^= pCryptKey->abChainVector[j];
2212                     encrypt_block_impl(pCryptKey->aiAlgid, 0, &pCryptKey->context, in, out, 
2213                                        RSAENH_ENCRYPT);
2214                     memcpy(pCryptKey->abChainVector, out, pCryptKey->dwBlockLen);
2215                     break;
2216
2217                 case CRYPT_MODE_CFB:
2218                     for (j=0; j<pCryptKey->dwBlockLen; j++) {
2219                         encrypt_block_impl(pCryptKey->aiAlgid, 0, &pCryptKey->context, 
2220                                            pCryptKey->abChainVector, o, RSAENH_ENCRYPT);
2221                         out[j] = in[j] ^ o[0];
2222                         for (k=0; k<pCryptKey->dwBlockLen-1; k++) 
2223                             pCryptKey->abChainVector[k] = pCryptKey->abChainVector[k+1];
2224                         pCryptKey->abChainVector[k] = out[j];
2225                     }
2226                     break;
2227                     
2228                 default:
2229                     SetLastError(NTE_BAD_ALGID);
2230                     return FALSE;
2231             }
2232             memcpy(in, out, pCryptKey->dwBlockLen); 
2233         }
2234     } else if (GET_ALG_TYPE(pCryptKey->aiAlgid) == ALG_TYPE_STREAM) {
2235         if (pbData == NULL) {
2236             *pdwDataLen = dwBufLen;
2237             return TRUE;
2238         }
2239         encrypt_stream_impl(pCryptKey->aiAlgid, &pCryptKey->context, pbData, *pdwDataLen);
2240     } else if (GET_ALG_TYPE(pCryptKey->aiAlgid) == ALG_TYPE_RSA) {
2241         if (pCryptKey->aiAlgid == CALG_RSA_SIGN) {
2242             SetLastError(NTE_BAD_KEY);
2243             return FALSE;
2244         }
2245         if (!pbData) {
2246             *pdwDataLen = pCryptKey->dwBlockLen;
2247             return TRUE;
2248         }
2249         if (dwBufLen < pCryptKey->dwBlockLen) {
2250             SetLastError(ERROR_MORE_DATA);
2251             return FALSE;
2252         }
2253         if (!pad_data(pbData, *pdwDataLen, pbData, pCryptKey->dwBlockLen, dwFlags)) return FALSE;
2254         encrypt_block_impl(pCryptKey->aiAlgid, PK_PUBLIC, &pCryptKey->context, pbData, pbData, RSAENH_ENCRYPT);
2255         *pdwDataLen = pCryptKey->dwBlockLen;
2256         Final = TRUE;
2257     } else {
2258         SetLastError(NTE_BAD_TYPE);
2259         return FALSE;
2260     }
2261
2262     if (Final) setup_key(pCryptKey);
2263
2264     return TRUE;
2265 }
2266
2267 /******************************************************************************
2268  * CPDecrypt (RSAENH.@)
2269  *
2270  * Decrypt data.
2271  *
2272  * PARAMS
2273  *  hProv      [I]   The key container hKey and hHash belong to.
2274  *  hKey       [I]   The key used to decrypt the data.
2275  *  hHash      [I]   An optional hash object for parallel hashing. See notes.
2276  *  Final      [I]   Indicates if this is the last block of data to decrypt.
2277  *  dwFlags    [I]   Currently no flags defined. Must be zero.
2278  *  pbData     [I/O] Pointer to the data to decrypt. Plaintext will also be stored there. 
2279  *  pdwDataLen [I/O] I: Length of ciphertext, O: Length of plaintext.
2280  *
2281  * RETURNS
2282  *  Success: TRUE.
2283  *  Failure: FALSE.
2284  *
2285  * NOTES
2286  *  If a hash object handle is provided in hHash, it will be updated with the plaintext. 
2287  *  This is useful for message signatures.
2288  *
2289  *  This function uses the standard WINAPI protocol for querying data of dynamic length. 
2290  */
2291 BOOL WINAPI RSAENH_CPDecrypt(HCRYPTPROV hProv, HCRYPTKEY hKey, HCRYPTHASH hHash, BOOL Final, 
2292                              DWORD dwFlags, BYTE *pbData, DWORD *pdwDataLen)
2293 {
2294     CRYPTKEY *pCryptKey;
2295     BYTE *in, out[RSAENH_MAX_BLOCK_SIZE], o[RSAENH_MAX_BLOCK_SIZE];
2296     DWORD i, j, k;
2297     DWORD dwMax;
2298
2299     TRACE("(hProv=%08lx, hKey=%08lx, hHash=%08lx, Final=%d, dwFlags=%08x, pbData=%p, "
2300           "pdwDataLen=%p)\n", hProv, hKey, hHash, Final, dwFlags, pbData, pdwDataLen);
2301     
2302     if (!is_valid_handle(&handle_table, hProv, RSAENH_MAGIC_CONTAINER))
2303     {
2304         SetLastError(NTE_BAD_UID);
2305         return FALSE;
2306     }
2307
2308     if (dwFlags)
2309     {
2310         SetLastError(NTE_BAD_FLAGS);
2311         return FALSE;
2312     }
2313
2314     if (!lookup_handle(&handle_table, hKey, RSAENH_MAGIC_KEY, (OBJECTHDR**)&pCryptKey))
2315     {
2316         SetLastError(NTE_BAD_KEY);
2317         return FALSE;
2318     }
2319
2320     if (pCryptKey->dwState == RSAENH_KEYSTATE_IDLE) 
2321         pCryptKey->dwState = RSAENH_KEYSTATE_ENCRYPTING;
2322
2323     if (pCryptKey->dwState != RSAENH_KEYSTATE_ENCRYPTING)
2324     {
2325         SetLastError(NTE_BAD_DATA);
2326         return FALSE;
2327     }
2328
2329     dwMax=*pdwDataLen;
2330
2331     if (GET_ALG_TYPE(pCryptKey->aiAlgid) == ALG_TYPE_BLOCK) {
2332         for (i=0, in=pbData; i<*pdwDataLen; i+=pCryptKey->dwBlockLen, in+=pCryptKey->dwBlockLen) {
2333             switch (pCryptKey->dwMode) {
2334                 case CRYPT_MODE_ECB:
2335                     encrypt_block_impl(pCryptKey->aiAlgid, 0, &pCryptKey->context, in, out, 
2336                                        RSAENH_DECRYPT);
2337                     break;
2338                 
2339                 case CRYPT_MODE_CBC:
2340                     encrypt_block_impl(pCryptKey->aiAlgid, 0, &pCryptKey->context, in, out, 
2341                                        RSAENH_DECRYPT);
2342                     for (j=0; j<pCryptKey->dwBlockLen; j++) out[j] ^= pCryptKey->abChainVector[j];
2343                     memcpy(pCryptKey->abChainVector, in, pCryptKey->dwBlockLen);
2344                     break;
2345
2346                 case CRYPT_MODE_CFB:
2347                     for (j=0; j<pCryptKey->dwBlockLen; j++) {
2348                         encrypt_block_impl(pCryptKey->aiAlgid, 0, &pCryptKey->context, 
2349                                            pCryptKey->abChainVector, o, RSAENH_ENCRYPT);
2350                         out[j] = in[j] ^ o[0];
2351                         for (k=0; k<pCryptKey->dwBlockLen-1; k++) 
2352                             pCryptKey->abChainVector[k] = pCryptKey->abChainVector[k+1];
2353                         pCryptKey->abChainVector[k] = in[j];
2354                     }
2355                     break;
2356                     
2357                 default:
2358                     SetLastError(NTE_BAD_ALGID);
2359                     return FALSE;
2360             }
2361             memcpy(in, out, pCryptKey->dwBlockLen);
2362         }
2363         if (Final) {
2364             if (pbData[*pdwDataLen-1] &&
2365              pbData[*pdwDataLen-1] <= pCryptKey->dwBlockLen &&
2366              pbData[*pdwDataLen-1] <= *pdwDataLen) {
2367                 BOOL padOkay = TRUE;
2368
2369                 /* check that every bad byte has the same value */
2370                 for (i = 1; padOkay && i < pbData[*pdwDataLen-1]; i++)
2371                     if (pbData[*pdwDataLen - i - 1] != pbData[*pdwDataLen - 1])
2372                         padOkay = FALSE;
2373                 if (padOkay)
2374                     *pdwDataLen -= pbData[*pdwDataLen-1];
2375                 else {
2376                     SetLastError(NTE_BAD_DATA);
2377                     return FALSE;
2378                 }
2379             }
2380             else {
2381                 SetLastError(NTE_BAD_DATA);
2382                 return FALSE;
2383             }
2384         }
2385
2386     } else if (GET_ALG_TYPE(pCryptKey->aiAlgid) == ALG_TYPE_STREAM) {
2387         encrypt_stream_impl(pCryptKey->aiAlgid, &pCryptKey->context, pbData, *pdwDataLen);
2388     } else if (GET_ALG_TYPE(pCryptKey->aiAlgid) == ALG_TYPE_RSA) {
2389         if (pCryptKey->aiAlgid == CALG_RSA_SIGN) {
2390             SetLastError(NTE_BAD_KEY);
2391             return FALSE;
2392         }
2393         encrypt_block_impl(pCryptKey->aiAlgid, PK_PRIVATE, &pCryptKey->context, pbData, pbData, RSAENH_DECRYPT);
2394         if (!unpad_data(pbData, pCryptKey->dwBlockLen, pbData, pdwDataLen, dwFlags)) return FALSE;
2395         Final = TRUE;
2396     } else {
2397         SetLastError(NTE_BAD_TYPE);
2398         return FALSE;
2399     } 
2400     
2401     if (Final) setup_key(pCryptKey);
2402
2403     if (is_valid_handle(&handle_table, hHash, RSAENH_MAGIC_HASH)) {
2404         if (*pdwDataLen>dwMax ||
2405             !RSAENH_CPHashData(hProv, hHash, pbData, *pdwDataLen, 0)) return FALSE;
2406     }
2407     
2408     return TRUE;
2409 }
2410
2411 static BOOL crypt_export_simple(CRYPTKEY *pCryptKey, CRYPTKEY *pPubKey,
2412     DWORD dwFlags, BYTE *pbData, DWORD *pdwDataLen)
2413 {
2414     BLOBHEADER *pBlobHeader = (BLOBHEADER*)pbData;
2415     ALG_ID *pAlgid = (ALG_ID*)(pBlobHeader+1);
2416     DWORD dwDataLen;
2417
2418     if (!(GET_ALG_CLASS(pCryptKey->aiAlgid)&(ALG_CLASS_DATA_ENCRYPT|ALG_CLASS_MSG_ENCRYPT))) {
2419         SetLastError(NTE_BAD_KEY); /* FIXME: error code? */
2420         return FALSE;
2421     }
2422
2423     dwDataLen = sizeof(BLOBHEADER) + sizeof(ALG_ID) + pPubKey->dwBlockLen;
2424     if (pbData) {
2425         if (*pdwDataLen < dwDataLen) {
2426             SetLastError(ERROR_MORE_DATA);
2427             *pdwDataLen = dwDataLen;
2428             return FALSE;
2429         }
2430
2431         pBlobHeader->bType = SIMPLEBLOB;
2432         pBlobHeader->bVersion = CUR_BLOB_VERSION;
2433         pBlobHeader->reserved = 0;
2434         pBlobHeader->aiKeyAlg = pCryptKey->aiAlgid;
2435
2436         *pAlgid = pPubKey->aiAlgid;
2437
2438         if (!pad_data(pCryptKey->abKeyValue, pCryptKey->dwKeyLen, (BYTE*)(pAlgid+1),
2439                       pPubKey->dwBlockLen, dwFlags))
2440         {
2441             return FALSE;
2442         }
2443
2444         encrypt_block_impl(pPubKey->aiAlgid, PK_PUBLIC, &pPubKey->context, (BYTE*)(pAlgid+1),
2445                            (BYTE*)(pAlgid+1), RSAENH_ENCRYPT);
2446     }
2447     *pdwDataLen = dwDataLen;
2448     return TRUE;
2449 }
2450
2451 static BOOL crypt_export_public_key(CRYPTKEY *pCryptKey, BYTE *pbData,
2452     DWORD *pdwDataLen)
2453 {
2454     BLOBHEADER *pBlobHeader = (BLOBHEADER*)pbData;
2455     RSAPUBKEY *pRSAPubKey = (RSAPUBKEY*)(pBlobHeader+1);
2456     DWORD dwDataLen;
2457
2458     if ((pCryptKey->aiAlgid != CALG_RSA_KEYX) && (pCryptKey->aiAlgid != CALG_RSA_SIGN)) {
2459         SetLastError(NTE_BAD_KEY);
2460         return FALSE;
2461     }
2462
2463     dwDataLen = sizeof(BLOBHEADER) + sizeof(RSAPUBKEY) + pCryptKey->dwKeyLen;
2464     if (pbData) {
2465         if (*pdwDataLen < dwDataLen) {
2466             SetLastError(ERROR_MORE_DATA);
2467             *pdwDataLen = dwDataLen;
2468             return FALSE;
2469         }
2470
2471         pBlobHeader->bType = PUBLICKEYBLOB;
2472         pBlobHeader->bVersion = CUR_BLOB_VERSION;
2473         pBlobHeader->reserved = 0;
2474         pBlobHeader->aiKeyAlg = pCryptKey->aiAlgid;
2475
2476         pRSAPubKey->magic = RSAENH_MAGIC_RSA1;
2477         pRSAPubKey->bitlen = pCryptKey->dwKeyLen << 3;
2478
2479         export_public_key_impl((BYTE*)(pRSAPubKey+1), &pCryptKey->context,
2480                                pCryptKey->dwKeyLen, &pRSAPubKey->pubexp);
2481     }
2482     *pdwDataLen = dwDataLen;
2483     return TRUE;
2484 }
2485
2486 static BOOL crypt_export_private_key(CRYPTKEY *pCryptKey, BOOL force,
2487     BYTE *pbData, DWORD *pdwDataLen)
2488 {
2489     BLOBHEADER *pBlobHeader = (BLOBHEADER*)pbData;
2490     RSAPUBKEY *pRSAPubKey = (RSAPUBKEY*)(pBlobHeader+1);
2491     DWORD dwDataLen;
2492
2493     if ((pCryptKey->aiAlgid != CALG_RSA_KEYX) && (pCryptKey->aiAlgid != CALG_RSA_SIGN)) {
2494         SetLastError(NTE_BAD_KEY);
2495         return FALSE;
2496     }
2497     if (!force && !(pCryptKey->dwPermissions & CRYPT_EXPORT))
2498     {
2499         SetLastError(NTE_BAD_KEY_STATE);
2500         return FALSE;
2501     }
2502
2503     dwDataLen = sizeof(BLOBHEADER) + sizeof(RSAPUBKEY) +
2504                 2 * pCryptKey->dwKeyLen + 5 * ((pCryptKey->dwKeyLen + 1) >> 1);
2505     if (pbData) {
2506         if (*pdwDataLen < dwDataLen) {
2507             SetLastError(ERROR_MORE_DATA);
2508             *pdwDataLen = dwDataLen;
2509             return FALSE;
2510         }
2511
2512         pBlobHeader->bType = PRIVATEKEYBLOB;
2513         pBlobHeader->bVersion = CUR_BLOB_VERSION;
2514         pBlobHeader->reserved = 0;
2515         pBlobHeader->aiKeyAlg = pCryptKey->aiAlgid;
2516
2517         pRSAPubKey->magic = RSAENH_MAGIC_RSA2;
2518         pRSAPubKey->bitlen = pCryptKey->dwKeyLen << 3;
2519
2520         export_private_key_impl((BYTE*)(pRSAPubKey+1), &pCryptKey->context,
2521                                 pCryptKey->dwKeyLen, &pRSAPubKey->pubexp);
2522     }
2523     *pdwDataLen = dwDataLen;
2524     return TRUE;
2525 }
2526
2527 static BOOL crypt_export_plaintext_key(CRYPTKEY *pCryptKey, BYTE *pbData,
2528     DWORD *pdwDataLen)
2529 {
2530     BLOBHEADER *pBlobHeader = (BLOBHEADER*)pbData;
2531     DWORD *pKeyLen = (DWORD*)(pBlobHeader+1);
2532     BYTE *pbKey = (BYTE*)(pKeyLen+1);
2533     DWORD dwDataLen;
2534
2535     dwDataLen = sizeof(BLOBHEADER) + sizeof(DWORD) + pCryptKey->dwKeyLen;
2536     if (pbData) {
2537         if (*pdwDataLen < dwDataLen) {
2538             SetLastError(ERROR_MORE_DATA);
2539             *pdwDataLen = dwDataLen;
2540             return FALSE;
2541         }
2542
2543         pBlobHeader->bType = PLAINTEXTKEYBLOB;
2544         pBlobHeader->bVersion = CUR_BLOB_VERSION;
2545         pBlobHeader->reserved = 0;
2546         pBlobHeader->aiKeyAlg = pCryptKey->aiAlgid;
2547
2548         *pKeyLen = pCryptKey->dwKeyLen;
2549         memcpy(pbKey, pCryptKey->abKeyValue, pCryptKey->dwKeyLen);
2550     }
2551     *pdwDataLen = dwDataLen;
2552     return TRUE;
2553 }
2554 /******************************************************************************
2555  * crypt_export_key [Internal]
2556  *
2557  * Export a key into a binary large object (BLOB).  Called by CPExportKey and
2558  * by store_key_pair.
2559  *
2560  * PARAMS
2561  *  pCryptKey  [I]   Key to be exported.
2562  *  hPubKey    [I]   Key used to encrypt sensitive BLOB data.
2563  *  dwBlobType [I]   SIMPLEBLOB, PUBLICKEYBLOB or PRIVATEKEYBLOB.
2564  *  dwFlags    [I]   Currently none defined.
2565  *  force      [I]   If TRUE, the key is written no matter what the key's
2566  *                   permissions are.  Otherwise the key's permissions are
2567  *                   checked before exporting.
2568  *  pbData     [O]   Pointer to a buffer where the BLOB will be written to.
2569  *  pdwDataLen [I/O] I: Size of buffer at pbData, O: Size of BLOB
2570  *
2571  * RETURNS
2572  *  Success: TRUE.
2573  *  Failure: FALSE.
2574  */
2575 static BOOL crypt_export_key(CRYPTKEY *pCryptKey, HCRYPTKEY hPubKey,
2576                              DWORD dwBlobType, DWORD dwFlags, BOOL force,
2577                              BYTE *pbData, DWORD *pdwDataLen)
2578 {
2579     CRYPTKEY *pPubKey;
2580     
2581     if (dwFlags & CRYPT_SSL2_FALLBACK) {
2582         if (pCryptKey->aiAlgid != CALG_SSL2_MASTER) {
2583             SetLastError(NTE_BAD_KEY);
2584             return FALSE;
2585         }
2586     }
2587     
2588     switch ((BYTE)dwBlobType)
2589     {
2590         case SIMPLEBLOB:
2591             if (!lookup_handle(&handle_table, hPubKey, RSAENH_MAGIC_KEY, (OBJECTHDR**)&pPubKey)){
2592                 SetLastError(NTE_BAD_PUBLIC_KEY); /* FIXME: error_code? */
2593                 return FALSE;
2594             }
2595             return crypt_export_simple(pCryptKey, pPubKey, dwFlags, pbData,
2596                                        pdwDataLen);
2597             
2598         case PUBLICKEYBLOB:
2599             if (is_valid_handle(&handle_table, hPubKey, RSAENH_MAGIC_KEY)) {
2600                 SetLastError(NTE_BAD_KEY); /* FIXME: error code? */
2601                 return FALSE;
2602             }
2603
2604             return crypt_export_public_key(pCryptKey, pbData, pdwDataLen);
2605
2606         case PRIVATEKEYBLOB:
2607             return crypt_export_private_key(pCryptKey, force, pbData, pdwDataLen);
2608
2609         case PLAINTEXTKEYBLOB:
2610             return crypt_export_plaintext_key(pCryptKey, pbData, pdwDataLen);
2611             
2612         default:
2613             SetLastError(NTE_BAD_TYPE); /* FIXME: error code? */
2614             return FALSE;
2615     }
2616 }
2617
2618 /******************************************************************************
2619  * CPExportKey (RSAENH.@)
2620  *
2621  * Export a key into a binary large object (BLOB).
2622  *
2623  * PARAMS
2624  *  hProv      [I]   Key container from which a key is to be exported.
2625  *  hKey       [I]   Key to be exported.
2626  *  hPubKey    [I]   Key used to encrypt sensitive BLOB data.
2627  *  dwBlobType [I]   SIMPLEBLOB, PUBLICKEYBLOB or PRIVATEKEYBLOB.
2628  *  dwFlags    [I]   Currently none defined.
2629  *  pbData     [O]   Pointer to a buffer where the BLOB will be written to.
2630  *  pdwDataLen [I/O] I: Size of buffer at pbData, O: Size of BLOB
2631  *
2632  * RETURNS
2633  *  Success: TRUE.
2634  *  Failure: FALSE.
2635  */
2636 BOOL WINAPI RSAENH_CPExportKey(HCRYPTPROV hProv, HCRYPTKEY hKey, HCRYPTKEY hPubKey,
2637                                DWORD dwBlobType, DWORD dwFlags, BYTE *pbData, DWORD *pdwDataLen)
2638 {
2639     CRYPTKEY *pCryptKey;
2640
2641     TRACE("(hProv=%08lx, hKey=%08lx, hPubKey=%08lx, dwBlobType=%08x, dwFlags=%08x, pbData=%p,"
2642           "pdwDataLen=%p)\n", hProv, hKey, hPubKey, dwBlobType, dwFlags, pbData, pdwDataLen);
2643
2644     if (!is_valid_handle(&handle_table, hProv, RSAENH_MAGIC_CONTAINER))
2645     {
2646         SetLastError(NTE_BAD_UID);
2647         return FALSE;
2648     }
2649
2650     if (!lookup_handle(&handle_table, hKey, RSAENH_MAGIC_KEY, (OBJECTHDR**)&pCryptKey))
2651     {
2652         SetLastError(NTE_BAD_KEY);
2653         return FALSE;
2654     }
2655
2656     return crypt_export_key(pCryptKey, hPubKey, dwBlobType, dwFlags, FALSE,
2657         pbData, pdwDataLen);
2658 }
2659
2660 /******************************************************************************
2661  * release_and_install_key [Internal]
2662  *
2663  * Release an existing key, if present, and replaces it with a new one.
2664  *
2665  * PARAMS
2666  *  hProv     [I] Key container into which the key is to be imported.
2667  *  src       [I] Key which will replace *dest
2668  *  dest      [I] Points to key to be released and replaced with src
2669  *  fStoreKey [I] If TRUE, the newly installed key is stored to the registry.
2670  */
2671 static void release_and_install_key(HCRYPTPROV hProv, HCRYPTKEY src,
2672                                     HCRYPTKEY *dest, DWORD fStoreKey)
2673 {
2674     RSAENH_CPDestroyKey(hProv, *dest);
2675     copy_handle(&handle_table, src, RSAENH_MAGIC_KEY, dest);
2676     if (fStoreKey)
2677     {
2678         KEYCONTAINER *pKeyContainer;
2679
2680         if (lookup_handle(&handle_table, hProv, RSAENH_MAGIC_CONTAINER,
2681                           (OBJECTHDR**)&pKeyContainer))
2682         {
2683             store_key_container_keys(pKeyContainer);
2684             store_key_container_permissions(pKeyContainer);
2685         }
2686     }
2687 }
2688
2689 /******************************************************************************
2690  * import_private_key [Internal]
2691  *
2692  * Import a BLOB'ed private key into a key container.
2693  *
2694  * PARAMS
2695  *  hProv     [I] Key container into which the private key is to be imported.
2696  *  pbData    [I] Pointer to a buffer which holds the private key BLOB.
2697  *  dwDataLen [I] Length of data in buffer at pbData.
2698  *  dwFlags   [I] One of:
2699  *                CRYPT_EXPORTABLE: the imported key is marked exportable
2700  *  fStoreKey [I] If TRUE, the imported key is stored to the registry.
2701  *  phKey     [O] Handle to the imported key.
2702  *
2703  *
2704  * NOTES
2705  *  Assumes the caller has already checked the BLOBHEADER at pbData to ensure
2706  *  it's a PRIVATEKEYBLOB.
2707  *
2708  * RETURNS
2709  *  Success: TRUE.
2710  *  Failure: FALSE.
2711  */
2712 static BOOL import_private_key(HCRYPTPROV hProv, CONST BYTE *pbData, DWORD dwDataLen,
2713                                DWORD dwFlags, BOOL fStoreKey, HCRYPTKEY *phKey)
2714 {
2715     KEYCONTAINER *pKeyContainer;
2716     CRYPTKEY *pCryptKey;
2717     CONST BLOBHEADER *pBlobHeader = (CONST BLOBHEADER*)pbData;
2718     CONST RSAPUBKEY *pRSAPubKey = (CONST RSAPUBKEY*)(pBlobHeader+1);
2719     BOOL ret;
2720
2721     if (dwFlags & CRYPT_IPSEC_HMAC_KEY)
2722     {
2723         FIXME("unimplemented for CRYPT_IPSEC_HMAC_KEY\n");
2724         SetLastError(NTE_BAD_FLAGS);
2725         return FALSE;
2726     }
2727     if (!lookup_handle(&handle_table, hProv, RSAENH_MAGIC_CONTAINER,
2728                        (OBJECTHDR**)&pKeyContainer))
2729     {
2730         SetLastError(NTE_BAD_UID);
2731         return FALSE;
2732     }
2733
2734     if ((dwDataLen < sizeof(BLOBHEADER) + sizeof(RSAPUBKEY)))
2735     {
2736         ERR("datalen %d not long enough for a BLOBHEADER + RSAPUBKEY\n",
2737             dwDataLen);
2738         SetLastError(NTE_BAD_DATA);
2739         return FALSE;
2740     }
2741     if (pRSAPubKey->magic != RSAENH_MAGIC_RSA2)
2742     {
2743         ERR("unexpected magic %08x\n", pRSAPubKey->magic);
2744         SetLastError(NTE_BAD_DATA);
2745         return FALSE;
2746     }
2747     if ((dwDataLen < sizeof(BLOBHEADER) + sizeof(RSAPUBKEY) +
2748             (pRSAPubKey->bitlen >> 3) + (5 * ((pRSAPubKey->bitlen+8)>>4))))
2749     {
2750         DWORD expectedLen = sizeof(BLOBHEADER) + sizeof(RSAPUBKEY) +
2751             (pRSAPubKey->bitlen >> 3) + (5 * ((pRSAPubKey->bitlen+8)>>4));
2752
2753         ERR("blob too short for pub key: expect %d, got %d\n",
2754             expectedLen, dwDataLen);
2755         SetLastError(NTE_BAD_DATA);
2756         return FALSE;
2757     }
2758
2759     *phKey = new_key(hProv, pBlobHeader->aiKeyAlg, MAKELONG(0,pRSAPubKey->bitlen), &pCryptKey);
2760     if (*phKey == (HCRYPTKEY)INVALID_HANDLE_VALUE) return FALSE;
2761     setup_key(pCryptKey);
2762     ret = import_private_key_impl((CONST BYTE*)(pRSAPubKey+1), &pCryptKey->context,
2763                                    pRSAPubKey->bitlen/8, dwDataLen, pRSAPubKey->pubexp);
2764     if (ret) {
2765         if (dwFlags & CRYPT_EXPORTABLE)
2766             pCryptKey->dwPermissions |= CRYPT_EXPORT;
2767         switch (pBlobHeader->aiKeyAlg)
2768         {
2769         case AT_SIGNATURE:
2770         case CALG_RSA_SIGN:
2771             TRACE("installing signing key\n");
2772             release_and_install_key(hProv, *phKey, &pKeyContainer->hSignatureKeyPair,
2773                                     fStoreKey);
2774             break;
2775         case AT_KEYEXCHANGE:
2776         case CALG_RSA_KEYX:
2777             TRACE("installing key exchange key\n");
2778             release_and_install_key(hProv, *phKey, &pKeyContainer->hKeyExchangeKeyPair,
2779                                     fStoreKey);
2780             break;
2781         }
2782     }
2783     return ret;
2784 }
2785
2786 /******************************************************************************
2787  * import_public_key [Internal]
2788  *
2789  * Import a BLOB'ed public key into a key container.
2790  *
2791  * PARAMS
2792  *  hProv     [I] Key container into which the public key is to be imported.
2793  *  pbData    [I] Pointer to a buffer which holds the public key BLOB.
2794  *  dwDataLen [I] Length of data in buffer at pbData.
2795  *  dwFlags   [I] One of:
2796  *                CRYPT_EXPORTABLE: the imported key is marked exportable
2797  *  fStoreKey [I] If TRUE, the imported key is stored to the registry.
2798  *  phKey     [O] Handle to the imported key.
2799  *
2800  *
2801  * NOTES
2802  *  Assumes the caller has already checked the BLOBHEADER at pbData to ensure
2803  *  it's a PUBLICKEYBLOB.
2804  *
2805  * RETURNS
2806  *  Success: TRUE.
2807  *  Failure: FALSE.
2808  */
2809 static BOOL import_public_key(HCRYPTPROV hProv, CONST BYTE *pbData, DWORD dwDataLen,
2810                               DWORD dwFlags, BOOL fStoreKey, HCRYPTKEY *phKey)
2811 {
2812     KEYCONTAINER *pKeyContainer;
2813     CRYPTKEY *pCryptKey;
2814     CONST BLOBHEADER *pBlobHeader = (CONST BLOBHEADER*)pbData;
2815     CONST RSAPUBKEY *pRSAPubKey = (CONST RSAPUBKEY*)(pBlobHeader+1);
2816     ALG_ID algID;
2817     BOOL ret;
2818
2819     if (dwFlags & CRYPT_IPSEC_HMAC_KEY)
2820     {
2821         FIXME("unimplemented for CRYPT_IPSEC_HMAC_KEY\n");
2822         SetLastError(NTE_BAD_FLAGS);
2823         return FALSE;
2824     }
2825     if (!lookup_handle(&handle_table, hProv, RSAENH_MAGIC_CONTAINER,
2826                        (OBJECTHDR**)&pKeyContainer))
2827     {
2828         SetLastError(NTE_BAD_UID);
2829         return FALSE;
2830     }
2831
2832     if ((dwDataLen < sizeof(BLOBHEADER) + sizeof(RSAPUBKEY)) ||
2833         (pRSAPubKey->magic != RSAENH_MAGIC_RSA1) ||
2834         (dwDataLen < sizeof(BLOBHEADER) + sizeof(RSAPUBKEY) + (pRSAPubKey->bitlen >> 3)))
2835     {
2836         SetLastError(NTE_BAD_DATA);
2837         return FALSE;
2838     }
2839
2840     /* Since this is a public key blob, only the public key is
2841      * available, so only signature verification is possible.
2842      */
2843     algID = pBlobHeader->aiKeyAlg;
2844     *phKey = new_key(hProv, algID, MAKELONG(0,pRSAPubKey->bitlen), &pCryptKey);
2845     if (*phKey == (HCRYPTKEY)INVALID_HANDLE_VALUE) return FALSE;
2846     setup_key(pCryptKey);
2847     ret = import_public_key_impl((CONST BYTE*)(pRSAPubKey+1), &pCryptKey->context,
2848                                   pRSAPubKey->bitlen >> 3, pRSAPubKey->pubexp);
2849     if (ret) {
2850         if (dwFlags & CRYPT_EXPORTABLE)
2851             pCryptKey->dwPermissions |= CRYPT_EXPORT;
2852         switch (pBlobHeader->aiKeyAlg)
2853         {
2854         case AT_KEYEXCHANGE:
2855         case CALG_RSA_KEYX:
2856             TRACE("installing public key\n");
2857             release_and_install_key(hProv, *phKey, &pKeyContainer->hKeyExchangeKeyPair,
2858                                     fStoreKey);
2859             break;
2860         }
2861     }
2862     return ret;
2863 }
2864
2865 /******************************************************************************
2866  * import_symmetric_key [Internal]
2867  *
2868  * Import a BLOB'ed symmetric key into a key container.
2869  *
2870  * PARAMS
2871  *  hProv     [I] Key container into which the symmetric key is to be imported.
2872  *  pbData    [I] Pointer to a buffer which holds the symmetric key BLOB.
2873  *  dwDataLen [I] Length of data in buffer at pbData.
2874  *  hPubKey   [I] Key used to decrypt sensitive BLOB data.
2875  *  dwFlags   [I] One of:
2876  *                CRYPT_EXPORTABLE: the imported key is marked exportable
2877  *  phKey     [O] Handle to the imported key.
2878  *
2879  *
2880  * NOTES
2881  *  Assumes the caller has already checked the BLOBHEADER at pbData to ensure
2882  *  it's a SIMPLEBLOB.
2883  *
2884  * RETURNS
2885  *  Success: TRUE.
2886  *  Failure: FALSE.
2887  */
2888 static BOOL import_symmetric_key(HCRYPTPROV hProv, CONST BYTE *pbData,
2889                                  DWORD dwDataLen, HCRYPTKEY hPubKey,
2890                                  DWORD dwFlags, HCRYPTKEY *phKey)
2891 {
2892     CRYPTKEY *pCryptKey, *pPubKey;
2893     CONST BLOBHEADER *pBlobHeader = (CONST BLOBHEADER*)pbData;
2894     CONST ALG_ID *pAlgid = (CONST ALG_ID*)(pBlobHeader+1);
2895     CONST BYTE *pbKeyStream = (CONST BYTE*)(pAlgid + 1);
2896     BYTE *pbDecrypted;
2897     DWORD dwKeyLen;
2898
2899     if (dwFlags & CRYPT_IPSEC_HMAC_KEY)
2900     {
2901         FIXME("unimplemented for CRYPT_IPSEC_HMAC_KEY\n");
2902         SetLastError(NTE_BAD_FLAGS);
2903         return FALSE;
2904     }
2905     if (!lookup_handle(&handle_table, hPubKey, RSAENH_MAGIC_KEY, (OBJECTHDR**)&pPubKey) ||
2906         pPubKey->aiAlgid != CALG_RSA_KEYX)
2907     {
2908         SetLastError(NTE_BAD_PUBLIC_KEY); /* FIXME: error code? */
2909         return FALSE;
2910     }
2911
2912     if (dwDataLen < sizeof(BLOBHEADER)+sizeof(ALG_ID)+pPubKey->dwBlockLen)
2913     {
2914         SetLastError(NTE_BAD_DATA); /* FIXME: error code */
2915         return FALSE;
2916     }
2917
2918     pbDecrypted = HeapAlloc(GetProcessHeap(), 0, pPubKey->dwBlockLen);
2919     if (!pbDecrypted) return FALSE;
2920     encrypt_block_impl(pPubKey->aiAlgid, PK_PRIVATE, &pPubKey->context, pbKeyStream, pbDecrypted,
2921                        RSAENH_DECRYPT);
2922
2923     dwKeyLen = RSAENH_MAX_KEY_SIZE;
2924     if (!unpad_data(pbDecrypted, pPubKey->dwBlockLen, pbDecrypted, &dwKeyLen, dwFlags)) {
2925         HeapFree(GetProcessHeap(), 0, pbDecrypted);
2926         return FALSE;
2927     }
2928
2929     *phKey = new_key(hProv, pBlobHeader->aiKeyAlg, dwKeyLen<<19, &pCryptKey);
2930     if (*phKey == (HCRYPTKEY)INVALID_HANDLE_VALUE)
2931     {
2932         HeapFree(GetProcessHeap(), 0, pbDecrypted);
2933         return FALSE;
2934     }
2935     memcpy(pCryptKey->abKeyValue, pbDecrypted, dwKeyLen);
2936     HeapFree(GetProcessHeap(), 0, pbDecrypted);
2937     setup_key(pCryptKey);
2938     if (dwFlags & CRYPT_EXPORTABLE)
2939         pCryptKey->dwPermissions |= CRYPT_EXPORT;
2940     return TRUE;
2941 }
2942
2943 /******************************************************************************
2944  * import_plaintext_key [Internal]
2945  *
2946  * Import a plaintext key into a key container.
2947  *
2948  * PARAMS
2949  *  hProv     [I] Key container into which the symmetric key is to be imported.
2950  *  pbData    [I] Pointer to a buffer which holds the plaintext key BLOB.
2951  *  dwDataLen [I] Length of data in buffer at pbData.
2952  *  dwFlags   [I] One of:
2953  *                CRYPT_EXPORTABLE: the imported key is marked exportable
2954  *  phKey     [O] Handle to the imported key.
2955  *
2956  *
2957  * NOTES
2958  *  Assumes the caller has already checked the BLOBHEADER at pbData to ensure
2959  *  it's a PLAINTEXTKEYBLOB.
2960  *
2961  * RETURNS
2962  *  Success: TRUE.
2963  *  Failure: FALSE.
2964  */
2965 static BOOL import_plaintext_key(HCRYPTPROV hProv, CONST BYTE *pbData,
2966                                  DWORD dwDataLen, DWORD dwFlags,
2967                                  HCRYPTKEY *phKey)
2968 {
2969     CRYPTKEY *pCryptKey;
2970     CONST BLOBHEADER *pBlobHeader = (CONST BLOBHEADER*)pbData;
2971     CONST DWORD *pKeyLen = (CONST DWORD *)(pBlobHeader + 1);
2972     CONST BYTE *pbKeyStream = (CONST BYTE*)(pKeyLen + 1);
2973
2974     if (dwDataLen < sizeof(BLOBHEADER)+sizeof(DWORD)+*pKeyLen)
2975     {
2976         SetLastError(NTE_BAD_DATA); /* FIXME: error code */
2977         return FALSE;
2978     }
2979
2980     if (dwFlags & CRYPT_IPSEC_HMAC_KEY)
2981     {
2982         *phKey = new_key(hProv, CALG_HMAC, 0, &pCryptKey);
2983         if (*phKey == (HCRYPTKEY)INVALID_HANDLE_VALUE)
2984             return FALSE;
2985         if (*pKeyLen <= RSAENH_MIN(sizeof(pCryptKey->abKeyValue), RSAENH_HMAC_BLOCK_LEN))
2986         {
2987             memcpy(pCryptKey->abKeyValue, pbKeyStream, *pKeyLen);
2988             pCryptKey->dwKeyLen = *pKeyLen;
2989         }
2990         else
2991         {
2992             CRYPT_DATA_BLOB blobHmacKey = { *pKeyLen, (BYTE *)pbKeyStream };
2993
2994             /* In order to initialize an HMAC key, the key material is hashed,
2995              * and the output of the hash function is used as the key material.
2996              * Unfortunately, the way the Crypto API is designed, we don't know
2997              * the hash algorithm yet, so we have to copy the entire key
2998              * material.
2999              */
3000             if (!copy_data_blob(&pCryptKey->blobHmacKey, &blobHmacKey))
3001             {
3002                 release_handle(&handle_table, *phKey, RSAENH_MAGIC_KEY);
3003                 *phKey = (HCRYPTKEY)INVALID_HANDLE_VALUE;
3004                 return FALSE;
3005             }
3006         }
3007         setup_key(pCryptKey);
3008         if (dwFlags & CRYPT_EXPORTABLE)
3009             pCryptKey->dwPermissions |= CRYPT_EXPORT;
3010     }
3011     else
3012     {
3013         *phKey = new_key(hProv, pBlobHeader->aiKeyAlg, *pKeyLen<<19, &pCryptKey);
3014         if (*phKey == (HCRYPTKEY)INVALID_HANDLE_VALUE)
3015             return FALSE;
3016         memcpy(pCryptKey->abKeyValue, pbKeyStream, *pKeyLen);
3017         setup_key(pCryptKey);
3018         if (dwFlags & CRYPT_EXPORTABLE)
3019             pCryptKey->dwPermissions |= CRYPT_EXPORT;
3020     }
3021     return TRUE;
3022 }
3023
3024 /******************************************************************************
3025  * import_key [Internal]
3026  *
3027  * Import a BLOB'ed key into a key container, optionally storing the key's
3028  * value to the registry.
3029  *
3030  * PARAMS
3031  *  hProv     [I] Key container into which the key is to be imported.
3032  *  pbData    [I] Pointer to a buffer which holds the BLOB.
3033  *  dwDataLen [I] Length of data in buffer at pbData.
3034  *  hPubKey   [I] Key used to decrypt sensitive BLOB data.
3035  *  dwFlags   [I] One of:
3036  *                CRYPT_EXPORTABLE: the imported key is marked exportable
3037  *  fStoreKey [I] If TRUE, the imported key is stored to the registry.
3038  *  phKey     [O] Handle to the imported key.
3039  *
3040  * RETURNS
3041  *  Success: TRUE.
3042  *  Failure: FALSE.
3043  */
3044 static BOOL import_key(HCRYPTPROV hProv, CONST BYTE *pbData, DWORD dwDataLen,
3045                        HCRYPTKEY hPubKey, DWORD dwFlags, BOOL fStoreKey,
3046                        HCRYPTKEY *phKey)
3047 {
3048     KEYCONTAINER *pKeyContainer;
3049     CONST BLOBHEADER *pBlobHeader = (CONST BLOBHEADER*)pbData;
3050
3051     if (!lookup_handle(&handle_table, hProv, RSAENH_MAGIC_CONTAINER,
3052                        (OBJECTHDR**)&pKeyContainer)) 
3053     {
3054         SetLastError(NTE_BAD_UID);
3055         return FALSE;
3056     }
3057
3058     if (dwDataLen < sizeof(BLOBHEADER) || 
3059         pBlobHeader->bVersion != CUR_BLOB_VERSION ||
3060         pBlobHeader->reserved != 0) 
3061     {
3062         TRACE("bVersion = %d, reserved = %d\n", pBlobHeader->bVersion,
3063               pBlobHeader->reserved);
3064         SetLastError(NTE_BAD_DATA);
3065         return FALSE;
3066     }
3067
3068     /* If this is a verify-only context, the key is not persisted regardless of
3069      * fStoreKey's original value.
3070      */
3071     fStoreKey = fStoreKey && !(dwFlags & CRYPT_VERIFYCONTEXT);
3072     TRACE("blob type: %x\n", pBlobHeader->bType);
3073     switch (pBlobHeader->bType)
3074     {
3075         case PRIVATEKEYBLOB:    
3076             return import_private_key(hProv, pbData, dwDataLen, dwFlags,
3077                                       fStoreKey, phKey);
3078                 
3079         case PUBLICKEYBLOB:
3080             return import_public_key(hProv, pbData, dwDataLen, dwFlags,
3081                                      fStoreKey, phKey);
3082                 
3083         case SIMPLEBLOB:
3084             return import_symmetric_key(hProv, pbData, dwDataLen, hPubKey,
3085                                         dwFlags, phKey);
3086
3087         case PLAINTEXTKEYBLOB:
3088             return import_plaintext_key(hProv, pbData, dwDataLen, dwFlags,
3089                                         phKey);
3090
3091         default:
3092             SetLastError(NTE_BAD_TYPE); /* FIXME: error code? */
3093             return FALSE;
3094     }
3095 }
3096
3097 /******************************************************************************
3098  * CPImportKey (RSAENH.@)
3099  *
3100  * Import a BLOB'ed key into a key container.
3101  *
3102  * PARAMS
3103  *  hProv     [I] Key container into which the key is to be imported.
3104  *  pbData    [I] Pointer to a buffer which holds the BLOB.
3105  *  dwDataLen [I] Length of data in buffer at pbData.
3106  *  hPubKey   [I] Key used to decrypt sensitive BLOB data.
3107  *  dwFlags   [I] One of:
3108  *                CRYPT_EXPORTABLE: the imported key is marked exportable
3109  *  phKey     [O] Handle to the imported key.
3110  *
3111  * RETURNS
3112  *  Success: TRUE.
3113  *  Failure: FALSE.
3114  */
3115 BOOL WINAPI RSAENH_CPImportKey(HCRYPTPROV hProv, CONST BYTE *pbData, DWORD dwDataLen,
3116                                HCRYPTKEY hPubKey, DWORD dwFlags, HCRYPTKEY *phKey)
3117 {
3118     TRACE("(hProv=%08lx, pbData=%p, dwDataLen=%d, hPubKey=%08lx, dwFlags=%08x, phKey=%p)\n",
3119         hProv, pbData, dwDataLen, hPubKey, dwFlags, phKey);
3120
3121     return import_key(hProv, pbData, dwDataLen, hPubKey, dwFlags, TRUE, phKey);
3122 }
3123
3124 /******************************************************************************
3125  * CPGenKey (RSAENH.@)
3126  *
3127  * Generate a key in the key container
3128  *
3129  * PARAMS
3130  *  hProv   [I] Key container for which a key is to be generated.
3131  *  Algid   [I] Crypto algorithm identifier for the key to be generated.
3132  *  dwFlags [I] Upper 16 bits: Binary length of key. Lower 16 bits: Flags. See Notes
3133  *  phKey   [O] Handle to the generated key.
3134  *
3135  * RETURNS
3136  *  Success: TRUE.
3137  *  Failure: FALSE.
3138  *
3139  * FIXME
3140  *  Flags currently not considered.
3141  *
3142  * NOTES
3143  *  Private key-exchange- and signature-keys can be generated with Algid AT_KEYEXCHANGE
3144  *  and AT_SIGNATURE values.
3145  */
3146 BOOL WINAPI RSAENH_CPGenKey(HCRYPTPROV hProv, ALG_ID Algid, DWORD dwFlags, HCRYPTKEY *phKey)
3147 {
3148     KEYCONTAINER *pKeyContainer;
3149     CRYPTKEY *pCryptKey;
3150
3151     TRACE("(hProv=%08lx, aiAlgid=%d, dwFlags=%08x, phKey=%p)\n", hProv, Algid, dwFlags, phKey);
3152
3153     if (!lookup_handle(&handle_table, hProv, RSAENH_MAGIC_CONTAINER,
3154                        (OBJECTHDR**)&pKeyContainer)) 
3155     {
3156         /* MSDN: hProv not containing valid context handle */
3157         SetLastError(NTE_BAD_UID);
3158         return FALSE;
3159     }
3160     
3161     switch (Algid)
3162     {
3163         case AT_SIGNATURE:
3164         case CALG_RSA_SIGN:
3165             *phKey = new_key(hProv, CALG_RSA_SIGN, dwFlags, &pCryptKey);
3166             if (pCryptKey) { 
3167                 new_key_impl(pCryptKey->aiAlgid, &pCryptKey->context, pCryptKey->dwKeyLen);
3168                 setup_key(pCryptKey);
3169                 release_and_install_key(hProv, *phKey,
3170                                         &pKeyContainer->hSignatureKeyPair,
3171                                         FALSE);
3172             }
3173             break;
3174
3175         case AT_KEYEXCHANGE:
3176         case CALG_RSA_KEYX:
3177             *phKey = new_key(hProv, CALG_RSA_KEYX, dwFlags, &pCryptKey);
3178             if (pCryptKey) { 
3179                 new_key_impl(pCryptKey->aiAlgid, &pCryptKey->context, pCryptKey->dwKeyLen);
3180                 setup_key(pCryptKey);
3181                 release_and_install_key(hProv, *phKey,
3182                                         &pKeyContainer->hKeyExchangeKeyPair,
3183                                         FALSE);
3184             }
3185             break;
3186             
3187         case CALG_RC2:
3188         case CALG_RC4:
3189         case CALG_DES:
3190         case CALG_3DES_112:
3191         case CALG_3DES:
3192         case CALG_AES:
3193         case CALG_AES_128:
3194         case CALG_AES_192:
3195         case CALG_AES_256:
3196         case CALG_PCT1_MASTER:
3197         case CALG_SSL2_MASTER:
3198         case CALG_SSL3_MASTER:
3199         case CALG_TLS1_MASTER:
3200             *phKey = new_key(hProv, Algid, dwFlags, &pCryptKey);
3201             if (pCryptKey) {
3202                 gen_rand_impl(pCryptKey->abKeyValue, RSAENH_MAX_KEY_SIZE);
3203                 switch (Algid) {
3204                     case CALG_SSL3_MASTER:
3205                         pCryptKey->abKeyValue[0] = RSAENH_SSL3_VERSION_MAJOR;
3206                         pCryptKey->abKeyValue[1] = RSAENH_SSL3_VERSION_MINOR;
3207                         break;
3208
3209                     case CALG_TLS1_MASTER:
3210                         pCryptKey->abKeyValue[0] = RSAENH_TLS1_VERSION_MAJOR;
3211                         pCryptKey->abKeyValue[1] = RSAENH_TLS1_VERSION_MINOR;
3212                         break;
3213                 }
3214                 setup_key(pCryptKey);
3215             }
3216             break;
3217             
3218         default:
3219             /* MSDN: Algorithm not supported specified by Algid */
3220             SetLastError(NTE_BAD_ALGID);
3221             return FALSE;
3222     }
3223             
3224     return *phKey != (HCRYPTKEY)INVALID_HANDLE_VALUE;
3225 }
3226
3227 /******************************************************************************
3228  * CPGenRandom (RSAENH.@)
3229  *
3230  * Generate a random byte stream.
3231  *
3232  * PARAMS
3233  *  hProv    [I] Key container that is used to generate random bytes.
3234  *  dwLen    [I] Specifies the number of requested random data bytes.
3235  *  pbBuffer [O] Random bytes will be stored here.
3236  *
3237  * RETURNS
3238  *  Success: TRUE
3239  *  Failure: FALSE
3240  */
3241 BOOL WINAPI RSAENH_CPGenRandom(HCRYPTPROV hProv, DWORD dwLen, BYTE *pbBuffer)
3242 {
3243     TRACE("(hProv=%08lx, dwLen=%d, pbBuffer=%p)\n", hProv, dwLen, pbBuffer);
3244     
3245     if (!is_valid_handle(&handle_table, hProv, RSAENH_MAGIC_CONTAINER))
3246     {
3247         /* MSDN: hProv not containing valid context handle */
3248         SetLastError(NTE_BAD_UID);
3249         return FALSE;
3250     }
3251
3252     return gen_rand_impl(pbBuffer, dwLen);
3253 }
3254
3255 /******************************************************************************
3256  * CPGetHashParam (RSAENH.@)
3257  *
3258  * Query parameters of an hash object.
3259  *
3260  * PARAMS
3261  *  hProv      [I]   The kea container, which the hash belongs to.
3262  *  hHash      [I]   The hash object that is to be queried.
3263  *  dwParam    [I]   Specifies the parameter that is to be queried.
3264  *  pbData     [I]   Pointer to the buffer where the parameter value will be stored.
3265  *  pdwDataLen [I/O] I: Buffer length at pbData, O: Length of the parameter value.
3266  *  dwFlags    [I]   None currently defined.
3267  *
3268  * RETURNS
3269  *  Success: TRUE
3270  *  Failure: FALSE
3271  *
3272  * NOTES
3273  *  Valid dwParams are: HP_ALGID, HP_HASHSIZE, HP_HASHVALUE. The hash will be 
3274  *  finalized if HP_HASHVALUE is queried.
3275  */
3276 BOOL WINAPI RSAENH_CPGetHashParam(HCRYPTPROV hProv, HCRYPTHASH hHash, DWORD dwParam, BYTE *pbData, 
3277                                   DWORD *pdwDataLen, DWORD dwFlags) 
3278 {
3279     CRYPTHASH *pCryptHash;
3280         
3281     TRACE("(hProv=%08lx, hHash=%08lx, dwParam=%08x, pbData=%p, pdwDataLen=%p, dwFlags=%08x)\n",
3282         hProv, hHash, dwParam, pbData, pdwDataLen, dwFlags);
3283     
3284     if (!is_valid_handle(&handle_table, hProv, RSAENH_MAGIC_CONTAINER))
3285     {
3286         SetLastError(NTE_BAD_UID);
3287         return FALSE;
3288     }
3289
3290     if (dwFlags)
3291     {
3292         SetLastError(NTE_BAD_FLAGS);
3293         return FALSE;
3294     }
3295     
3296     if (!lookup_handle(&handle_table, hHash, RSAENH_MAGIC_HASH,
3297                        (OBJECTHDR**)&pCryptHash))
3298     {
3299         SetLastError(NTE_BAD_HASH);
3300         return FALSE;
3301     }
3302
3303     if (!pdwDataLen)
3304     {
3305         SetLastError(ERROR_INVALID_PARAMETER);
3306         return FALSE;
3307     }
3308     
3309     switch (dwParam)
3310     {
3311         case HP_ALGID:
3312             return copy_param(pbData, pdwDataLen, (CONST BYTE*)&pCryptHash->aiAlgid, 
3313                               sizeof(ALG_ID));
3314
3315         case HP_HASHSIZE:
3316             return copy_param(pbData, pdwDataLen, (CONST BYTE*)&pCryptHash->dwHashSize, 
3317                               sizeof(DWORD));
3318
3319         case HP_HASHVAL:
3320             if (pCryptHash->aiAlgid == CALG_TLS1PRF) {
3321                 return tls1_prf(hProv, pCryptHash->hKey, &pCryptHash->tpPRFParams.blobLabel,
3322                                 &pCryptHash->tpPRFParams.blobSeed, pbData, *pdwDataLen);
3323             }
3324
3325             if ( pbData == NULL ) {
3326                 *pdwDataLen = pCryptHash->dwHashSize;
3327                 return TRUE;
3328             }
3329
3330             if (pbData && (pCryptHash->dwState != RSAENH_HASHSTATE_FINISHED))
3331             {
3332                 finalize_hash(pCryptHash);
3333                 pCryptHash->dwState = RSAENH_HASHSTATE_FINISHED;
3334             }
3335
3336             return copy_param(pbData, pdwDataLen, pCryptHash->abHashValue,
3337                               pCryptHash->dwHashSize);
3338
3339         default:
3340             SetLastError(NTE_BAD_TYPE);
3341             return FALSE;
3342     }
3343 }
3344
3345 /******************************************************************************
3346  * CPSetKeyParam (RSAENH.@)
3347  *
3348  * Set a parameter of a key object
3349  *
3350  * PARAMS
3351  *  hProv   [I] The key container to which the key belongs.
3352  *  hKey    [I] The key for which a parameter is to be set.
3353  *  dwParam [I] Parameter type. See Notes.
3354  *  pbData  [I] Pointer to the parameter value.
3355  *  dwFlags [I] Currently none defined.
3356  *
3357  * RETURNS
3358  *  Success: TRUE.
3359  *  Failure: FALSE.
3360  *
3361  * NOTES:
3362  *  Defined dwParam types are:
3363  *   - KP_MODE: Values MODE_CBC, MODE_ECB, MODE_CFB.
3364  *   - KP_MODE_BITS: Shift width for cipher feedback mode. (Currently ignored by MS CSP's)
3365  *   - KP_PERMISSIONS: Or'ed combination of CRYPT_ENCRYPT, CRYPT_DECRYPT, 
3366  *                     CRYPT_EXPORT, CRYPT_READ, CRYPT_WRITE, CRYPT_MAC
3367  *   - KP_IV: Initialization vector
3368  */
3369 BOOL WINAPI RSAENH_CPSetKeyParam(HCRYPTPROV hProv, HCRYPTKEY hKey, DWORD dwParam, BYTE *pbData, 
3370                                  DWORD dwFlags)
3371 {
3372     CRYPTKEY *pCryptKey;
3373
3374     TRACE("(hProv=%08lx, hKey=%08lx, dwParam=%08x, pbData=%p, dwFlags=%08x)\n", hProv, hKey,
3375           dwParam, pbData, dwFlags);
3376
3377     if (!is_valid_handle(&handle_table, hProv, RSAENH_MAGIC_CONTAINER))
3378     {
3379         SetLastError(NTE_BAD_UID);
3380         return FALSE;
3381     }
3382
3383     if (dwFlags) {
3384         SetLastError(NTE_BAD_FLAGS);
3385         return FALSE;
3386     }
3387     
3388     if (!lookup_handle(&handle_table, hKey, RSAENH_MAGIC_KEY, (OBJECTHDR**)&pCryptKey))
3389     {
3390         SetLastError(NTE_BAD_KEY);
3391         return FALSE;
3392     }
3393     
3394     switch (dwParam) {
3395         case KP_PADDING:
3396             /* The MS providers only support PKCS5_PADDING */
3397             if (*(DWORD *)pbData != PKCS5_PADDING) {
3398                 SetLastError(NTE_BAD_DATA);
3399                 return FALSE;
3400             }
3401             return TRUE;
3402
3403         case KP_MODE:
3404             pCryptKey->dwMode = *(DWORD*)pbData;
3405             return TRUE;
3406
3407         case KP_MODE_BITS:
3408             pCryptKey->dwModeBits = *(DWORD*)pbData;
3409             return TRUE;
3410
3411         case KP_PERMISSIONS:
3412         {
3413             DWORD perms = *(DWORD *)pbData;
3414
3415             if ((perms & CRYPT_EXPORT) &&
3416                 !(pCryptKey->dwPermissions & CRYPT_EXPORT))
3417             {
3418                 SetLastError(NTE_BAD_DATA);
3419                 return FALSE;
3420             }
3421             else if (!(perms & CRYPT_EXPORT) &&
3422                 (pCryptKey->dwPermissions & CRYPT_EXPORT))
3423             {
3424                 /* Clearing the export permission appears to be ignored,
3425                  * see tests.
3426                  */
3427                 perms |= CRYPT_EXPORT;
3428             }
3429             pCryptKey->dwPermissions = perms;
3430             return TRUE;
3431         }
3432
3433         case KP_IV:
3434             memcpy(pCryptKey->abInitVector, pbData, pCryptKey->dwBlockLen);
3435             setup_key(pCryptKey);
3436             return TRUE;
3437
3438         case KP_SALT:
3439             switch (pCryptKey->aiAlgid) {
3440                 case CALG_RC2:
3441                 case CALG_RC4:
3442                     if (!pbData)
3443                     {
3444                         SetLastError(ERROR_INVALID_PARAMETER);
3445                         return FALSE;
3446                     }
3447                     /* MSDN: the base provider always sets eleven bytes of
3448                      * salt value.
3449                      */
3450                     memcpy(pCryptKey->abKeyValue + pCryptKey->dwKeyLen,
3451                            pbData, 11);
3452                     pCryptKey->dwSaltLen = 11;
3453                     setup_key(pCryptKey);
3454                     /* Strange but true: salt length reset to 0 after setting
3455                      * it via KP_SALT.
3456                      */
3457                     pCryptKey->dwSaltLen = 0;
3458                     break;
3459                 default:
3460                     SetLastError(NTE_BAD_KEY);
3461                     return FALSE;
3462             }
3463             return TRUE;
3464
3465         case KP_SALT_EX:
3466         {
3467             CRYPT_INTEGER_BLOB *blob = (CRYPT_INTEGER_BLOB *)pbData;
3468
3469             /* salt length can't be greater than 184 bits = 24 bytes */
3470             if (blob->cbData > 24)
3471             {
3472                 SetLastError(NTE_BAD_DATA);
3473                 return FALSE;
3474             }
3475             memcpy(pCryptKey->abKeyValue + pCryptKey->dwKeyLen, blob->pbData,
3476                    blob->cbData);
3477             pCryptKey->dwSaltLen = blob->cbData;
3478             setup_key(pCryptKey);
3479             return TRUE;
3480         }
3481
3482         case KP_EFFECTIVE_KEYLEN:
3483             switch (pCryptKey->aiAlgid) {
3484                 case CALG_RC2:
3485                     if (!pbData)
3486                     {
3487                         SetLastError(ERROR_INVALID_PARAMETER);
3488                         return FALSE;
3489                     }
3490                     else if (!*(DWORD *)pbData || *(DWORD *)pbData > 1024)
3491                     {
3492                         SetLastError(NTE_BAD_DATA);
3493                         return FALSE;
3494                     }
3495                     else
3496                     {
3497                         pCryptKey->dwEffectiveKeyLen = *(DWORD *)pbData;
3498                         setup_key(pCryptKey);
3499                     }
3500                     break;
3501                 default:
3502                     SetLastError(NTE_BAD_TYPE);
3503                     return FALSE;
3504             }
3505             return TRUE;
3506
3507         case KP_SCHANNEL_ALG:
3508             switch (((PSCHANNEL_ALG)pbData)->dwUse) {
3509                 case SCHANNEL_ENC_KEY:
3510                     memcpy(&pCryptKey->siSChannelInfo.saEncAlg, pbData, sizeof(SCHANNEL_ALG));
3511                     break;
3512
3513                 case SCHANNEL_MAC_KEY:
3514                     memcpy(&pCryptKey->siSChannelInfo.saMACAlg, pbData, sizeof(SCHANNEL_ALG));
3515                     break;
3516
3517                 default:
3518                     SetLastError(NTE_FAIL); /* FIXME: error code */
3519                     return FALSE;
3520             }
3521             return TRUE;
3522
3523         case KP_CLIENT_RANDOM:
3524             return copy_data_blob(&pCryptKey->siSChannelInfo.blobClientRandom, (PCRYPT_DATA_BLOB)pbData);
3525             
3526         case KP_SERVER_RANDOM:
3527             return copy_data_blob(&pCryptKey->siSChannelInfo.blobServerRandom, (PCRYPT_DATA_BLOB)pbData);
3528
3529         default:
3530             SetLastError(NTE_BAD_TYPE);
3531             return FALSE;
3532     }
3533 }
3534
3535 /******************************************************************************
3536  * CPGetKeyParam (RSAENH.@)
3537  *
3538  * Query a key parameter.
3539  *
3540  * PARAMS
3541  *  hProv      [I]   The key container, which the key belongs to.
3542  *  hHash      [I]   The key object that is to be queried.
3543  *  dwParam    [I]   Specifies the parameter that is to be queried.
3544  *  pbData     [I]   Pointer to the buffer where the parameter value will be stored.
3545  *  pdwDataLen [I/O] I: Buffer length at pbData, O: Length of the parameter value.
3546  *  dwFlags    [I]   None currently defined.
3547  *
3548  * RETURNS
3549  *  Success: TRUE
3550  *  Failure: FALSE
3551  *
3552  * NOTES
3553  *  Defined dwParam types are:
3554  *   - KP_MODE: Values MODE_CBC, MODE_ECB, MODE_CFB.
3555  *   - KP_MODE_BITS: Shift width for cipher feedback mode. 
3556  *                   (Currently ignored by MS CSP's - always eight)
3557  *   - KP_PERMISSIONS: Or'ed combination of CRYPT_ENCRYPT, CRYPT_DECRYPT, 
3558  *                     CRYPT_EXPORT, CRYPT_READ, CRYPT_WRITE, CRYPT_MAC
3559  *   - KP_IV: Initialization vector.
3560  *   - KP_KEYLEN: Bitwidth of the key.
3561  *   - KP_BLOCKLEN: Size of a block cipher block.
3562  *   - KP_SALT: Salt value.
3563  */
3564 BOOL WINAPI RSAENH_CPGetKeyParam(HCRYPTPROV hProv, HCRYPTKEY hKey, DWORD dwParam, BYTE *pbData, 
3565                                  DWORD *pdwDataLen, DWORD dwFlags)
3566 {
3567     CRYPTKEY *pCryptKey;
3568     DWORD dwValue;
3569         
3570     TRACE("(hProv=%08lx, hKey=%08lx, dwParam=%08x, pbData=%p, pdwDataLen=%p dwFlags=%08x)\n",
3571           hProv, hKey, dwParam, pbData, pdwDataLen, dwFlags);
3572
3573     if (!is_valid_handle(&handle_table, hProv, RSAENH_MAGIC_CONTAINER))
3574     {
3575         SetLastError(NTE_BAD_UID);
3576         return FALSE;
3577     }
3578
3579     if (dwFlags) {
3580         SetLastError(NTE_BAD_FLAGS);
3581         return FALSE;
3582     }
3583
3584     if (!lookup_handle(&handle_table, hKey, RSAENH_MAGIC_KEY, (OBJECTHDR**)&pCryptKey))
3585     {
3586         SetLastError(NTE_BAD_KEY);
3587         return FALSE;
3588     }
3589
3590     switch (dwParam) 
3591     {
3592         case KP_IV:
3593             return copy_param(pbData, pdwDataLen, pCryptKey->abInitVector,
3594                               pCryptKey->dwBlockLen);
3595         
3596         case KP_SALT:
3597             switch (pCryptKey->aiAlgid) {
3598                 case CALG_RC2:
3599                 case CALG_RC4:
3600                     return copy_param(pbData, pdwDataLen,
3601                             &pCryptKey->abKeyValue[pCryptKey->dwKeyLen],
3602                             pCryptKey->dwSaltLen);
3603                 default:
3604                     SetLastError(NTE_BAD_KEY);
3605                     return FALSE;
3606             }
3607
3608         case KP_PADDING:
3609             dwValue = PKCS5_PADDING;
3610             return copy_param(pbData, pdwDataLen, (CONST BYTE*)&dwValue, sizeof(DWORD));
3611
3612         case KP_KEYLEN:
3613             dwValue = pCryptKey->dwKeyLen << 3;
3614             return copy_param(pbData, pdwDataLen, (CONST BYTE*)&dwValue, sizeof(DWORD));
3615         
3616         case KP_EFFECTIVE_KEYLEN:
3617             if (pCryptKey->dwEffectiveKeyLen)
3618                 dwValue = pCryptKey->dwEffectiveKeyLen;
3619             else
3620                 dwValue = pCryptKey->dwKeyLen << 3;
3621             return copy_param(pbData, pdwDataLen, (CONST BYTE*)&dwValue, sizeof(DWORD));
3622
3623         case KP_BLOCKLEN:
3624             dwValue = pCryptKey->dwBlockLen << 3;
3625             return copy_param(pbData, pdwDataLen, (CONST BYTE*)&dwValue, sizeof(DWORD));
3626     
3627         case KP_MODE:
3628             return copy_param(pbData, pdwDataLen, (CONST BYTE*)&pCryptKey->dwMode, sizeof(DWORD));
3629
3630         case KP_MODE_BITS:
3631             return copy_param(pbData, pdwDataLen, (CONST BYTE*)&pCryptKey->dwModeBits, 
3632                               sizeof(DWORD));
3633     
3634         case KP_PERMISSIONS:
3635             return copy_param(pbData, pdwDataLen, (CONST BYTE*)&pCryptKey->dwPermissions, 
3636                               sizeof(DWORD));
3637
3638         case KP_ALGID:
3639             return copy_param(pbData, pdwDataLen, (CONST BYTE*)&pCryptKey->aiAlgid, sizeof(DWORD));
3640             
3641         default:
3642             SetLastError(NTE_BAD_TYPE);
3643             return FALSE;
3644     }
3645 }
3646                         
3647 /******************************************************************************
3648  * CPGetProvParam (RSAENH.@)
3649  *
3650  * Query a CSP parameter.
3651  *
3652  * PARAMS
3653  *  hProv      [I]   The key container that is to be queried.
3654  *  dwParam    [I]   Specifies the parameter that is to be queried.
3655  *  pbData     [I]   Pointer to the buffer where the parameter value will be stored.
3656  *  pdwDataLen [I/O] I: Buffer length at pbData, O: Length of the parameter value.
3657  *  dwFlags    [I]   CRYPT_FIRST: Start enumeration (for PP_ENUMALGS{_EX}).
3658  *
3659  * RETURNS
3660  *  Success: TRUE
3661  *  Failure: FALSE
3662  * NOTES:
3663  *  Defined dwParam types:
3664  *   - PP_CONTAINER: Name of the key container.
3665  *   - PP_NAME: Name of the cryptographic service provider.
3666  *   - PP_SIG_KEYSIZE_INC: RSA signature keywidth granularity in bits.
3667  *   - PP_KEYX_KEYSIZE_INC: RSA key-exchange keywidth granularity in bits.
3668  *   - PP_ENUMALGS{_EX}: Query provider capabilities.
3669  */
3670 BOOL WINAPI RSAENH_CPGetProvParam(HCRYPTPROV hProv, DWORD dwParam, BYTE *pbData, 
3671                                   DWORD *pdwDataLen, DWORD dwFlags)
3672 {
3673     KEYCONTAINER *pKeyContainer;
3674     PROV_ENUMALGS provEnumalgs;
3675     DWORD dwTemp;
3676     HKEY hKey;
3677    
3678     /* This is for dwParam PP_CRYPT_COUNT_KEY_USE.
3679      * IE6 SP1 asks for it in the 'About' dialog.
3680      * Returning this BLOB seems to satisfy IE. The marked 0x00 seem 
3681      * to be 'don't care's. If you know anything more specific about
3682      * this provider parameter, please report to wine-devel@winehq.org */
3683     static CONST BYTE abWTF[96] = { 
3684         0xb0, 0x25,     0x63,     0x86, 0x9c, 0xab,     0xb6,     0x37, 
3685         0xe8, 0x82, /**/0x00,/**/ 0x72, 0x06, 0xb2, /**/0x00,/**/ 0x3b, 
3686         0x60, 0x35, /**/0x00,/**/ 0x3b, 0x88, 0xce, /**/0x00,/**/ 0x82, 
3687         0xbc, 0x7a, /**/0x00,/**/ 0xb7, 0x4f, 0x7e, /**/0x00,/**/ 0xde, 
3688         0x92, 0xf1, /**/0x00,/**/ 0x83, 0xea, 0x5e, /**/0x00,/**/ 0xc8, 
3689         0x12, 0x1e,     0xd4,     0x06, 0xf7, 0x66, /**/0x00,/**/ 0x01, 
3690         0x29, 0xa4, /**/0x00,/**/ 0xf8, 0x24, 0x0c, /**/0x00,/**/ 0x33, 
3691         0x06, 0x80, /**/0x00,/**/ 0x02, 0x46, 0x0b, /**/0x00,/**/ 0x6d, 
3692         0x5b, 0xca, /**/0x00,/**/ 0x9a, 0x10, 0xf0, /**/0x00,/**/ 0x05, 
3693         0x19, 0xd0, /**/0x00,/**/ 0x2c, 0xf6, 0x27, /**/0x00,/**/ 0xaa, 
3694         0x7c, 0x6f, /**/0x00,/**/ 0xb9, 0xd8, 0x72, /**/0x00,/**/ 0x03, 
3695         0xf3, 0x81, /**/0x00,/**/ 0xfa, 0xe8, 0x26, /**/0x00,/**/ 0xca 
3696     };
3697
3698     TRACE("(hProv=%08lx, dwParam=%08x, pbData=%p, pdwDataLen=%p, dwFlags=%08x)\n",
3699            hProv, dwParam, pbData, pdwDataLen, dwFlags);
3700
3701     if (!pdwDataLen) {
3702         SetLastError(ERROR_INVALID_PARAMETER);
3703         return FALSE;
3704     }
3705     
3706     if (!lookup_handle(&handle_table, hProv, RSAENH_MAGIC_CONTAINER,
3707                        (OBJECTHDR**)&pKeyContainer)) 
3708     {
3709         /* MSDN: hProv not containing valid context handle */
3710         SetLastError(NTE_BAD_UID);
3711         return FALSE;
3712     }
3713
3714     switch (dwParam) 
3715     {
3716         case PP_CONTAINER:
3717         case PP_UNIQUE_CONTAINER:/* MSDN says we can return the same value as PP_CONTAINER */
3718             return copy_param(pbData, pdwDataLen, (CONST BYTE*)pKeyContainer->szName, 
3719                               strlen(pKeyContainer->szName)+1);
3720
3721         case PP_NAME:
3722             return copy_param(pbData, pdwDataLen, (CONST BYTE*)pKeyContainer->szProvName, 
3723                               strlen(pKeyContainer->szProvName)+1);
3724
3725         case PP_PROVTYPE:
3726             dwTemp = PROV_RSA_FULL;
3727             return copy_param(pbData, pdwDataLen, (CONST BYTE*)&dwTemp, sizeof(dwTemp));
3728
3729         case PP_KEYSPEC:
3730             dwTemp = AT_SIGNATURE | AT_KEYEXCHANGE;
3731             return copy_param(pbData, pdwDataLen, (CONST BYTE*)&dwTemp, sizeof(dwTemp));
3732
3733         case PP_KEYSET_TYPE:
3734             dwTemp = pKeyContainer->dwFlags & CRYPT_MACHINE_KEYSET;
3735             return copy_param(pbData, pdwDataLen, (CONST BYTE*)&dwTemp, sizeof(dwTemp));
3736
3737         case PP_KEYSTORAGE:
3738             dwTemp = CRYPT_SEC_DESCR;
3739             return copy_param(pbData, pdwDataLen, (CONST BYTE*)&dwTemp, sizeof(dwTemp));
3740
3741         case PP_SIG_KEYSIZE_INC:
3742         case PP_KEYX_KEYSIZE_INC:
3743             dwTemp = 8;
3744             return copy_param(pbData, pdwDataLen, (CONST BYTE*)&dwTemp, sizeof(dwTemp));
3745
3746         case PP_IMPTYPE:
3747             dwTemp = CRYPT_IMPL_SOFTWARE;
3748             return copy_param(pbData, pdwDataLen, (CONST BYTE*)&dwTemp, sizeof(dwTemp));
3749
3750         case PP_VERSION:
3751             dwTemp = 0x00000200;
3752             return copy_param(pbData, pdwDataLen, (CONST BYTE*)&dwTemp, sizeof(dwTemp));
3753             
3754         case PP_ENUMCONTAINERS:
3755             if ((dwFlags & CRYPT_FIRST) == CRYPT_FIRST) pKeyContainer->dwEnumContainersCtr = 0;
3756
3757             if (!pbData) {
3758                 *pdwDataLen = (DWORD)MAX_PATH + 1;
3759                 return TRUE;
3760             }
3761  
3762             if (!open_container_key("", dwFlags, &hKey))
3763             {
3764                 SetLastError(ERROR_NO_MORE_ITEMS);
3765                 return FALSE;
3766             }
3767
3768             dwTemp = *pdwDataLen;
3769             switch (RegEnumKeyExA(hKey, pKeyContainer->dwEnumContainersCtr, (LPSTR)pbData, &dwTemp,
3770                     NULL, NULL, NULL, NULL))
3771             {
3772                 case ERROR_MORE_DATA:
3773                     *pdwDataLen = (DWORD)MAX_PATH + 1;
3774  
3775                 case ERROR_SUCCESS:
3776                     pKeyContainer->dwEnumContainersCtr++;
3777                     RegCloseKey(hKey);
3778                     return TRUE;
3779
3780                 case ERROR_NO_MORE_ITEMS:
3781                 default:
3782                     SetLastError(ERROR_NO_MORE_ITEMS);
3783                     RegCloseKey(hKey);
3784                     return FALSE;
3785             }
3786  
3787         case PP_ENUMALGS:
3788         case PP_ENUMALGS_EX:
3789             if (((pKeyContainer->dwEnumAlgsCtr >= RSAENH_MAX_ENUMALGS-1) ||
3790                  (!aProvEnumAlgsEx[pKeyContainer->dwPersonality]
3791                    [pKeyContainer->dwEnumAlgsCtr+1].aiAlgid)) && 
3792                 ((dwFlags & CRYPT_FIRST) != CRYPT_FIRST))
3793             {
3794                 SetLastError(ERROR_NO_MORE_ITEMS);
3795                 return FALSE;
3796             }
3797
3798             if (dwParam == PP_ENUMALGS) {    
3799                 if (pbData && (*pdwDataLen >= sizeof(PROV_ENUMALGS))) 
3800                     pKeyContainer->dwEnumAlgsCtr = ((dwFlags & CRYPT_FIRST) == CRYPT_FIRST) ? 
3801                         0 : pKeyContainer->dwEnumAlgsCtr+1;
3802             
3803                 provEnumalgs.aiAlgid = aProvEnumAlgsEx
3804                     [pKeyContainer->dwPersonality][pKeyContainer->dwEnumAlgsCtr].aiAlgid;
3805                 provEnumalgs.dwBitLen = aProvEnumAlgsEx
3806                     [pKeyContainer->dwPersonality][pKeyContainer->dwEnumAlgsCtr].dwDefaultLen;
3807                 provEnumalgs.dwNameLen = aProvEnumAlgsEx
3808                     [pKeyContainer->dwPersonality][pKeyContainer->dwEnumAlgsCtr].dwNameLen;
3809                 memcpy(provEnumalgs.szName, aProvEnumAlgsEx
3810                        [pKeyContainer->dwPersonality][pKeyContainer->dwEnumAlgsCtr].szName, 
3811                        20*sizeof(CHAR));
3812             
3813                 return copy_param(pbData, pdwDataLen, (CONST BYTE*)&provEnumalgs, 
3814                                   sizeof(PROV_ENUMALGS));
3815             } else {
3816                 if (pbData && (*pdwDataLen >= sizeof(PROV_ENUMALGS_EX))) 
3817                     pKeyContainer->dwEnumAlgsCtr = ((dwFlags & CRYPT_FIRST) == CRYPT_FIRST) ? 
3818                         0 : pKeyContainer->dwEnumAlgsCtr+1;
3819             
3820                 return copy_param(pbData, pdwDataLen, 
3821                                   (CONST BYTE*)&aProvEnumAlgsEx
3822                                       [pKeyContainer->dwPersonality][pKeyContainer->dwEnumAlgsCtr], 
3823                                   sizeof(PROV_ENUMALGS_EX));
3824             }
3825
3826         case PP_CRYPT_COUNT_KEY_USE: /* Asked for by IE About dialog */
3827             return copy_param(pbData, pdwDataLen, abWTF, sizeof(abWTF));
3828
3829         default:
3830             /* MSDN: Unknown parameter number in dwParam */
3831             SetLastError(NTE_BAD_TYPE);
3832             return FALSE;
3833     }
3834 }
3835
3836 /******************************************************************************
3837  * CPDeriveKey (RSAENH.@)
3838  *
3839  * Derives a key from a hash value.
3840  *
3841  * PARAMS
3842  *  hProv     [I] Key container for which a key is to be generated.
3843  *  Algid     [I] Crypto algorithm identifier for the key to be generated.
3844  *  hBaseData [I] Hash from whose value the key will be derived.
3845  *  dwFlags   [I] See Notes.
3846  *  phKey     [O] The generated key.
3847  *
3848  * RETURNS
3849  *  Success: TRUE
3850  *  Failure: FALSE
3851  *
3852  * NOTES
3853  *  Defined flags:
3854  *   - CRYPT_EXPORTABLE: Key can be exported.
3855  *   - CRYPT_NO_SALT: No salt is used for 40 bit keys.
3856  *   - CRYPT_CREATE_SALT: Use remaining bits as salt value.
3857  */
3858 BOOL WINAPI RSAENH_CPDeriveKey(HCRYPTPROV hProv, ALG_ID Algid, HCRYPTHASH hBaseData, 
3859                                DWORD dwFlags, HCRYPTKEY *phKey)
3860 {
3861     CRYPTKEY *pCryptKey, *pMasterKey;
3862     CRYPTHASH *pCryptHash;
3863     BYTE abHashValue[RSAENH_MAX_HASH_SIZE*2];
3864     DWORD dwLen;
3865     
3866     TRACE("(hProv=%08lx, Algid=%d, hBaseData=%08lx, dwFlags=%08x phKey=%p)\n", hProv, Algid,
3867            hBaseData, dwFlags, phKey);
3868     
3869     if (!is_valid_handle(&handle_table, hProv, RSAENH_MAGIC_CONTAINER))
3870     {
3871         SetLastError(NTE_BAD_UID);
3872         return FALSE;
3873     }
3874
3875     if (!lookup_handle(&handle_table, hBaseData, RSAENH_MAGIC_HASH,
3876                        (OBJECTHDR**)&pCryptHash))
3877     {
3878         SetLastError(NTE_BAD_HASH);
3879         return FALSE;
3880     }
3881
3882     if (!phKey)
3883     {
3884         SetLastError(ERROR_INVALID_PARAMETER);
3885         return FALSE;
3886     }
3887
3888     switch (GET_ALG_CLASS(Algid))
3889     {
3890         case ALG_CLASS_DATA_ENCRYPT:
3891             *phKey = new_key(hProv, Algid, dwFlags, &pCryptKey);
3892             if (*phKey == (HCRYPTKEY)INVALID_HANDLE_VALUE) return FALSE;
3893
3894             /* 
3895              * We derive the key material from the hash.
3896              * If the hash value is not large enough for the claimed key, we have to construct
3897              * a larger binary value based on the hash. This is documented in MSDN: CryptDeriveKey.
3898              */
3899             dwLen = RSAENH_MAX_HASH_SIZE;
3900             RSAENH_CPGetHashParam(pCryptHash->hProv, hBaseData, HP_HASHVAL, abHashValue, &dwLen, 0);
3901     
3902             if (dwLen < pCryptKey->dwKeyLen) {
3903                 BYTE pad1[RSAENH_HMAC_DEF_PAD_LEN], pad2[RSAENH_HMAC_DEF_PAD_LEN];
3904                 BYTE old_hashval[RSAENH_MAX_HASH_SIZE];
3905                 DWORD i;
3906
3907                 memcpy(old_hashval, pCryptHash->abHashValue, RSAENH_MAX_HASH_SIZE);
3908             
3909                 for (i=0; i<RSAENH_HMAC_DEF_PAD_LEN; i++) {
3910                     pad1[i] = RSAENH_HMAC_DEF_IPAD_CHAR ^ (i<dwLen ? abHashValue[i] : 0);
3911                     pad2[i] = RSAENH_HMAC_DEF_OPAD_CHAR ^ (i<dwLen ? abHashValue[i] : 0);
3912                 }
3913                 
3914                 init_hash(pCryptHash);
3915                 update_hash(pCryptHash, pad1, RSAENH_HMAC_DEF_PAD_LEN);
3916                 finalize_hash(pCryptHash);
3917                 memcpy(abHashValue, pCryptHash->abHashValue, pCryptHash->dwHashSize);
3918
3919                 init_hash(pCryptHash);
3920                 update_hash(pCryptHash, pad2, RSAENH_HMAC_DEF_PAD_LEN);
3921                 finalize_hash(pCryptHash);
3922                 memcpy(abHashValue+pCryptHash->dwHashSize, pCryptHash->abHashValue, 
3923                        pCryptHash->dwHashSize);
3924
3925                 memcpy(pCryptHash->abHashValue, old_hashval, RSAENH_MAX_HASH_SIZE);
3926             }
3927     
3928             memcpy(pCryptKey->abKeyValue, abHashValue, 
3929                    RSAENH_MIN(pCryptKey->dwKeyLen, sizeof(pCryptKey->abKeyValue)));
3930             break;
3931
3932         case ALG_CLASS_MSG_ENCRYPT:
3933             if (!lookup_handle(&handle_table, pCryptHash->hKey, RSAENH_MAGIC_KEY,
3934                                (OBJECTHDR**)&pMasterKey)) 
3935             {
3936                 SetLastError(NTE_FAIL); /* FIXME error code */
3937                 return FALSE;
3938             }
3939                 
3940             switch (Algid) 
3941             {
3942                 /* See RFC 2246, chapter 6.3 Key calculation */
3943                 case CALG_SCHANNEL_ENC_KEY:
3944                     if (!pMasterKey->siSChannelInfo.saEncAlg.Algid ||
3945                         !pMasterKey->siSChannelInfo.saEncAlg.cBits)
3946                     {
3947                         SetLastError(NTE_BAD_FLAGS);
3948                         return FALSE;
3949                     }
3950                     *phKey = new_key(hProv, pMasterKey->siSChannelInfo.saEncAlg.Algid, 
3951                                      MAKELONG(LOWORD(dwFlags),pMasterKey->siSChannelInfo.saEncAlg.cBits),
3952                                      &pCryptKey);
3953                     if (*phKey == (HCRYPTKEY)INVALID_HANDLE_VALUE) return FALSE;
3954                     memcpy(pCryptKey->abKeyValue, 
3955                            pCryptHash->abHashValue + (
3956                                2 * (pMasterKey->siSChannelInfo.saMACAlg.cBits / 8) +
3957                                ((dwFlags & CRYPT_SERVER) ? 
3958                                    (pMasterKey->siSChannelInfo.saEncAlg.cBits / 8) : 0)),
3959                            pMasterKey->siSChannelInfo.saEncAlg.cBits / 8);
3960                     memcpy(pCryptKey->abInitVector,
3961                            pCryptHash->abHashValue + (
3962                                2 * (pMasterKey->siSChannelInfo.saMACAlg.cBits / 8) +
3963                                2 * (pMasterKey->siSChannelInfo.saEncAlg.cBits / 8) +
3964                                ((dwFlags & CRYPT_SERVER) ? pCryptKey->dwBlockLen : 0)),
3965                            pCryptKey->dwBlockLen);
3966                     break;
3967                     
3968                 case CALG_SCHANNEL_MAC_KEY:
3969                     *phKey = new_key(hProv, Algid, 
3970                                      MAKELONG(LOWORD(dwFlags),pMasterKey->siSChannelInfo.saMACAlg.cBits),
3971                                      &pCryptKey);
3972                     if (*phKey == (HCRYPTKEY)INVALID_HANDLE_VALUE) return FALSE;
3973                     memcpy(pCryptKey->abKeyValue,
3974                            pCryptHash->abHashValue + ((dwFlags & CRYPT_SERVER) ? 
3975                                pMasterKey->siSChannelInfo.saMACAlg.cBits / 8 : 0),
3976                            pMasterKey->siSChannelInfo.saMACAlg.cBits / 8);
3977                     break;
3978                     
3979                 default:
3980                     SetLastError(NTE_BAD_ALGID);
3981                     return FALSE;
3982             }
3983             break;
3984
3985         default:
3986             SetLastError(NTE_BAD_ALGID);
3987             return FALSE;
3988     }
3989
3990     setup_key(pCryptKey);
3991     return TRUE;    
3992 }
3993
3994 /******************************************************************************
3995  * CPGetUserKey (RSAENH.@)
3996  *
3997  * Returns a handle to the user's private key-exchange- or signature-key.
3998  *
3999  * PARAMS
4000  *  hProv     [I] The key container from which a user key is requested.
4001  *  dwKeySpec [I] AT_KEYEXCHANGE or AT_SIGNATURE
4002  *  phUserKey [O] Handle to the requested key or INVALID_HANDLE_VALUE in case of failure.
4003  *
4004  * RETURNS
4005  *  Success: TRUE.
4006  *  Failure: FALSE.
4007  *
4008  * NOTE
4009  *  A newly created key container does not contain private user key. Create them with CPGenKey.
4010  */
4011 BOOL WINAPI RSAENH_CPGetUserKey(HCRYPTPROV hProv, DWORD dwKeySpec, HCRYPTKEY *phUserKey)
4012 {
4013     KEYCONTAINER *pKeyContainer;
4014
4015     TRACE("(hProv=%08lx, dwKeySpec=%08x, phUserKey=%p)\n", hProv, dwKeySpec, phUserKey);
4016     
4017     if (!lookup_handle(&handle_table, hProv, RSAENH_MAGIC_CONTAINER,
4018                        (OBJECTHDR**)&pKeyContainer)) 
4019     {
4020         /* MSDN: hProv not containing valid context handle */
4021         SetLastError(NTE_BAD_UID);
4022         return FALSE;
4023     }
4024
4025     switch (dwKeySpec)
4026     {
4027         case AT_KEYEXCHANGE:
4028             copy_handle(&handle_table, pKeyContainer->hKeyExchangeKeyPair, RSAENH_MAGIC_KEY, 
4029                         phUserKey);
4030             break;
4031
4032         case AT_SIGNATURE:
4033             copy_handle(&handle_table, pKeyContainer->hSignatureKeyPair, RSAENH_MAGIC_KEY, 
4034                         phUserKey);
4035             break;
4036
4037         default:
4038             *phUserKey = (HCRYPTKEY)INVALID_HANDLE_VALUE;
4039     }
4040
4041     if (*phUserKey == (HCRYPTKEY)INVALID_HANDLE_VALUE)
4042     {
4043         /* MSDN: dwKeySpec parameter specifies nonexistent key */
4044         SetLastError(NTE_NO_KEY);
4045         return FALSE;
4046     }
4047
4048     return TRUE;
4049 }
4050
4051 /******************************************************************************
4052  * CPHashData (RSAENH.@)
4053  *
4054  * Updates a hash object with the given data.
4055  *
4056  * PARAMS
4057  *  hProv     [I] Key container to which the hash object belongs.
4058  *  hHash     [I] Hash object which is to be updated.
4059  *  pbData    [I] Pointer to data with which the hash object is to be updated.
4060  *  dwDataLen [I] Length of the data.
4061  *  dwFlags   [I] Currently none defined.
4062  *
4063  * RETURNS
4064  *  Success: TRUE.
4065  *  Failure: FALSE.
4066  *
4067  * NOTES
4068  *  The actual hash value is queried with CPGetHashParam, which will finalize 
4069  *  the hash. Updating a finalized hash will fail with a last error NTE_BAD_HASH_STATE.
4070  */
4071 BOOL WINAPI RSAENH_CPHashData(HCRYPTPROV hProv, HCRYPTHASH hHash, CONST BYTE *pbData, 
4072                               DWORD dwDataLen, DWORD dwFlags)
4073 {
4074     CRYPTHASH *pCryptHash;
4075         
4076     TRACE("(hProv=%08lx, hHash=%08lx, pbData=%p, dwDataLen=%d, dwFlags=%08x)\n",
4077           hProv, hHash, pbData, dwDataLen, dwFlags);
4078
4079     if (dwFlags)
4080     {
4081         SetLastError(NTE_BAD_FLAGS);
4082         return FALSE;
4083     }
4084
4085     if (!lookup_handle(&handle_table, hHash, RSAENH_MAGIC_HASH,
4086                        (OBJECTHDR**)&pCryptHash))
4087     {
4088         SetLastError(NTE_BAD_HASH);
4089         return FALSE;
4090     }
4091
4092     if (!get_algid_info(hProv, pCryptHash->aiAlgid) || pCryptHash->aiAlgid == CALG_SSL3_SHAMD5)
4093     {
4094         SetLastError(NTE_BAD_ALGID);
4095         return FALSE;
4096     }
4097     
4098     if (pCryptHash->dwState != RSAENH_HASHSTATE_HASHING)
4099     {
4100         SetLastError(NTE_BAD_HASH_STATE);
4101         return FALSE;
4102     }
4103
4104     update_hash(pCryptHash, pbData, dwDataLen);
4105     return TRUE;
4106 }
4107
4108 /******************************************************************************
4109  * CPHashSessionKey (RSAENH.@)
4110  *
4111  * Updates a hash object with the binary representation of a symmetric key.
4112  *
4113  * PARAMS
4114  *  hProv     [I] Key container to which the hash object belongs.
4115  *  hHash     [I] Hash object which is to be updated.
4116  *  hKey      [I] The symmetric key, whose binary value will be added to the hash.
4117  *  dwFlags   [I] CRYPT_LITTLE_ENDIAN, if the binary key value shall be interpreted as little endian.
4118  *
4119  * RETURNS
4120  *  Success: TRUE.
4121  *  Failure: FALSE.
4122  */
4123 BOOL WINAPI RSAENH_CPHashSessionKey(HCRYPTPROV hProv, HCRYPTHASH hHash, HCRYPTKEY hKey, 
4124                                     DWORD dwFlags)
4125 {
4126     BYTE abKeyValue[RSAENH_MAX_KEY_SIZE], bTemp;
4127     CRYPTKEY *pKey;
4128     DWORD i;
4129
4130     TRACE("(hProv=%08lx, hHash=%08lx, hKey=%08lx, dwFlags=%08x)\n", hProv, hHash, hKey, dwFlags);
4131
4132     if (!lookup_handle(&handle_table, hKey, RSAENH_MAGIC_KEY, (OBJECTHDR**)&pKey) ||
4133         (GET_ALG_CLASS(pKey->aiAlgid) != ALG_CLASS_DATA_ENCRYPT)) 
4134     {
4135         SetLastError(NTE_BAD_KEY);
4136         return FALSE;
4137     }
4138
4139     if (dwFlags & ~CRYPT_LITTLE_ENDIAN) {
4140         SetLastError(NTE_BAD_FLAGS);
4141         return FALSE;
4142     }
4143
4144     memcpy(abKeyValue, pKey->abKeyValue, pKey->dwKeyLen);
4145     if (!(dwFlags & CRYPT_LITTLE_ENDIAN)) {
4146         for (i=0; i<pKey->dwKeyLen/2; i++) {
4147             bTemp = abKeyValue[i];
4148             abKeyValue[i] = abKeyValue[pKey->dwKeyLen-i-1];
4149             abKeyValue[pKey->dwKeyLen-i-1] = bTemp;
4150         }
4151     }
4152
4153     return RSAENH_CPHashData(hProv, hHash, abKeyValue, pKey->dwKeyLen, 0);
4154 }
4155
4156 /******************************************************************************
4157  * CPReleaseContext (RSAENH.@)
4158  *
4159  * Release a key container.
4160  *
4161  * PARAMS
4162  *  hProv   [I] Key container to be released.
4163  *  dwFlags [I] Currently none defined.
4164  *
4165  * RETURNS
4166  *  Success: TRUE
4167  *  Failure: FALSE
4168  */
4169 BOOL WINAPI RSAENH_CPReleaseContext(HCRYPTPROV hProv, DWORD dwFlags)
4170 {
4171     TRACE("(hProv=%08lx, dwFlags=%08x)\n", hProv, dwFlags);
4172
4173     if (!release_handle(&handle_table, hProv, RSAENH_MAGIC_CONTAINER))
4174     {
4175         /* MSDN: hProv not containing valid context handle */
4176         SetLastError(NTE_BAD_UID);
4177         return FALSE;
4178     }
4179
4180     if (dwFlags) {
4181         SetLastError(NTE_BAD_FLAGS);
4182         return FALSE;
4183     }
4184     
4185     return TRUE;
4186 }
4187
4188 /******************************************************************************
4189  * CPSetHashParam (RSAENH.@)
4190  * 
4191  * Set a parameter of a hash object
4192  *
4193  * PARAMS
4194  *  hProv   [I] The key container to which the key belongs.
4195  *  hHash   [I] The hash object for which a parameter is to be set.
4196  *  dwParam [I] Parameter type. See Notes.
4197  *  pbData  [I] Pointer to the parameter value.
4198  *  dwFlags [I] Currently none defined.
4199  *
4200  * RETURNS
4201  *  Success: TRUE.
4202  *  Failure: FALSE.
4203  *
4204  * NOTES
4205  *  Currently only the HP_HMAC_INFO dwParam type is defined. 
4206  *  The HMAC_INFO struct will be deep copied into the hash object.
4207  *  See Internet RFC 2104 for details on the HMAC algorithm.
4208  */
4209 BOOL WINAPI RSAENH_CPSetHashParam(HCRYPTPROV hProv, HCRYPTHASH hHash, DWORD dwParam, 
4210                                   BYTE *pbData, DWORD dwFlags)
4211 {
4212     CRYPTHASH *pCryptHash;
4213     CRYPTKEY *pCryptKey;
4214     DWORD i;
4215
4216     TRACE("(hProv=%08lx, hHash=%08lx, dwParam=%08x, pbData=%p, dwFlags=%08x)\n",
4217            hProv, hHash, dwParam, pbData, dwFlags);
4218
4219     if (!is_valid_handle(&handle_table, hProv, RSAENH_MAGIC_CONTAINER))
4220     {
4221         SetLastError(NTE_BAD_UID);
4222         return FALSE;
4223     }
4224
4225     if (dwFlags) {
4226         SetLastError(NTE_BAD_FLAGS);
4227         return FALSE;
4228     }
4229     
4230     if (!lookup_handle(&handle_table, hHash, RSAENH_MAGIC_HASH,
4231                        (OBJECTHDR**)&pCryptHash))
4232     {
4233         SetLastError(NTE_BAD_HASH);
4234         return FALSE;
4235     }
4236     
4237     switch (dwParam) {
4238         case HP_HMAC_INFO:
4239             free_hmac_info(pCryptHash->pHMACInfo);
4240             if (!copy_hmac_info(&pCryptHash->pHMACInfo, (PHMAC_INFO)pbData)) return FALSE;
4241
4242             if (!lookup_handle(&handle_table, pCryptHash->hKey, RSAENH_MAGIC_KEY, 
4243                                (OBJECTHDR**)&pCryptKey)) 
4244             {
4245                 SetLastError(NTE_FAIL); /* FIXME: correct error code? */
4246                 return FALSE;
4247             }
4248
4249             if (pCryptKey->aiAlgid == CALG_HMAC && !pCryptKey->dwKeyLen) {
4250                 HCRYPTHASH hKeyHash;
4251                 DWORD keyLen;
4252
4253                 if (!RSAENH_CPCreateHash(hProv, ((PHMAC_INFO)pbData)->HashAlgid, 0, 0,
4254                     &hKeyHash))
4255                     return FALSE;
4256                 if (!RSAENH_CPHashData(hProv, hKeyHash, pCryptKey->blobHmacKey.pbData,
4257                     pCryptKey->blobHmacKey.cbData, 0))
4258                 {
4259                     RSAENH_CPDestroyHash(hProv, hKeyHash);
4260                     return FALSE;
4261                 }
4262                 keyLen = sizeof(pCryptKey->abKeyValue);
4263                 if (!RSAENH_CPGetHashParam(hProv, hKeyHash, HP_HASHVAL, pCryptKey->abKeyValue,
4264                     &keyLen, 0))
4265                 {
4266                     RSAENH_CPDestroyHash(hProv, hKeyHash);
4267                     return FALSE;
4268                 }
4269                 pCryptKey->dwKeyLen = keyLen;
4270                 RSAENH_CPDestroyHash(hProv, hKeyHash);
4271             }
4272             for (i=0; i<RSAENH_MIN(pCryptKey->dwKeyLen,pCryptHash->pHMACInfo->cbInnerString); i++) {
4273                 pCryptHash->pHMACInfo->pbInnerString[i] ^= pCryptKey->abKeyValue[i];
4274             }
4275             for (i=0; i<RSAENH_MIN(pCryptKey->dwKeyLen,pCryptHash->pHMACInfo->cbOuterString); i++) {
4276                 pCryptHash->pHMACInfo->pbOuterString[i] ^= pCryptKey->abKeyValue[i];
4277             }
4278             
4279             init_hash(pCryptHash);
4280             return TRUE;
4281
4282         case HP_HASHVAL:
4283             memcpy(pCryptHash->abHashValue, pbData, pCryptHash->dwHashSize);
4284             pCryptHash->dwState = RSAENH_HASHSTATE_FINISHED;
4285             return TRUE;
4286            
4287         case HP_TLS1PRF_SEED:
4288             return copy_data_blob(&pCryptHash->tpPRFParams.blobSeed, (PCRYPT_DATA_BLOB)pbData);
4289
4290         case HP_TLS1PRF_LABEL:
4291             return copy_data_blob(&pCryptHash->tpPRFParams.blobLabel, (PCRYPT_DATA_BLOB)pbData);
4292             
4293         default:
4294             SetLastError(NTE_BAD_TYPE);
4295             return FALSE;
4296     }
4297 }
4298
4299 /******************************************************************************
4300  * CPSetProvParam (RSAENH.@)
4301  */
4302 BOOL WINAPI RSAENH_CPSetProvParam(HCRYPTPROV hProv, DWORD dwParam, BYTE *pbData, DWORD dwFlags)
4303 {
4304     FIXME("(stub)\n");
4305     return FALSE;
4306 }
4307
4308 /******************************************************************************
4309  * CPSignHash (RSAENH.@)
4310  *
4311  * Sign a hash object
4312  *
4313  * PARAMS
4314  *  hProv        [I]   The key container, to which the hash object belongs.
4315  *  hHash        [I]   The hash object to be signed.
4316  *  dwKeySpec    [I]   AT_SIGNATURE or AT_KEYEXCHANGE: Key used to generate the signature.
4317  *  sDescription [I]   Should be NULL for security reasons. 
4318  *  dwFlags      [I]   0, CRYPT_NOHASHOID or CRYPT_X931_FORMAT: Format of the signature.
4319  *  pbSignature  [O]   Buffer, to which the signature will be stored. May be NULL to query SigLen.
4320  *  pdwSigLen    [I/O] Size of the buffer (in), Length of the signature (out)
4321  *
4322  * RETURNS
4323  *  Success: TRUE
4324  *  Failure: FALSE
4325  */
4326 BOOL WINAPI RSAENH_CPSignHash(HCRYPTPROV hProv, HCRYPTHASH hHash, DWORD dwKeySpec, 
4327                               LPCWSTR sDescription, DWORD dwFlags, BYTE *pbSignature, 
4328                               DWORD *pdwSigLen)
4329 {
4330     HCRYPTKEY hCryptKey = (HCRYPTKEY)INVALID_HANDLE_VALUE;
4331     CRYPTKEY *pCryptKey;
4332     DWORD dwHashLen;
4333     BYTE abHashValue[RSAENH_MAX_HASH_SIZE];
4334     ALG_ID aiAlgid;
4335     BOOL ret = FALSE;
4336
4337     TRACE("(hProv=%08lx, hHash=%08lx, dwKeySpec=%08x, sDescription=%s, dwFlags=%08x, "
4338         "pbSignature=%p, pdwSigLen=%p)\n", hProv, hHash, dwKeySpec, debugstr_w(sDescription),
4339         dwFlags, pbSignature, pdwSigLen);
4340
4341     if (dwFlags & ~(CRYPT_NOHASHOID|CRYPT_X931_FORMAT)) {
4342         SetLastError(NTE_BAD_FLAGS);
4343         return FALSE;
4344     }
4345     
4346     if (!RSAENH_CPGetUserKey(hProv, dwKeySpec, &hCryptKey)) return FALSE;
4347             
4348     if (!lookup_handle(&handle_table, hCryptKey, RSAENH_MAGIC_KEY,
4349                        (OBJECTHDR**)&pCryptKey))
4350     {
4351         SetLastError(NTE_NO_KEY);
4352         goto out;
4353     }
4354
4355     if (!pbSignature) {
4356         *pdwSigLen = pCryptKey->dwKeyLen;
4357         ret = TRUE;
4358         goto out;
4359     }
4360     if (pCryptKey->dwKeyLen > *pdwSigLen)
4361     {
4362         SetLastError(ERROR_MORE_DATA);
4363         *pdwSigLen = pCryptKey->dwKeyLen;
4364         goto out;
4365     }
4366     *pdwSigLen = pCryptKey->dwKeyLen;
4367
4368     if (sDescription) {
4369         if (!RSAENH_CPHashData(hProv, hHash, (CONST BYTE*)sDescription, 
4370                                 (DWORD)lstrlenW(sDescription)*sizeof(WCHAR), 0))
4371         {
4372             goto out;
4373         }
4374     }
4375     
4376     dwHashLen = sizeof(DWORD);
4377     if (!RSAENH_CPGetHashParam(hProv, hHash, HP_ALGID, (BYTE*)&aiAlgid, &dwHashLen, 0)) goto out;
4378     
4379     dwHashLen = RSAENH_MAX_HASH_SIZE;
4380     if (!RSAENH_CPGetHashParam(hProv, hHash, HP_HASHVAL, abHashValue, &dwHashLen, 0)) goto out;
4381  
4382
4383     if (!build_hash_signature(pbSignature, *pdwSigLen, aiAlgid, abHashValue, dwHashLen, dwFlags)) {
4384         goto out;
4385     }
4386
4387     ret = encrypt_block_impl(pCryptKey->aiAlgid, PK_PRIVATE, &pCryptKey->context, pbSignature, pbSignature, RSAENH_ENCRYPT);
4388 out:
4389     RSAENH_CPDestroyKey(hProv, hCryptKey);
4390     return ret;
4391 }
4392
4393 /******************************************************************************
4394  * CPVerifySignature (RSAENH.@)
4395  *
4396  * Verify the signature of a hash object.
4397  * 
4398  * PARAMS
4399  *  hProv        [I] The key container, to which the hash belongs.
4400  *  hHash        [I] The hash for which the signature is verified.
4401  *  pbSignature  [I] The binary signature.
4402  *  dwSigLen     [I] Length of the signature BLOB.
4403  *  hPubKey      [I] Public key used to verify the signature.
4404  *  sDescription [I] Should be NULL for security reasons.
4405  *  dwFlags      [I] 0, CRYPT_NOHASHOID or CRYPT_X931_FORMAT: Format of the signature.
4406  *
4407  * RETURNS
4408  *  Success: TRUE  (Signature is valid)
4409  *  Failure: FALSE (GetLastError() == NTE_BAD_SIGNATURE, if signature is invalid)
4410  */
4411 BOOL WINAPI RSAENH_CPVerifySignature(HCRYPTPROV hProv, HCRYPTHASH hHash, CONST BYTE *pbSignature, 
4412                                      DWORD dwSigLen, HCRYPTKEY hPubKey, LPCWSTR sDescription, 
4413                                      DWORD dwFlags)
4414 {
4415     BYTE *pbConstructed = NULL, *pbDecrypted = NULL;
4416     CRYPTKEY *pCryptKey;
4417     DWORD dwHashLen;
4418     ALG_ID aiAlgid;
4419     BYTE abHashValue[RSAENH_MAX_HASH_SIZE];
4420     BOOL res = FALSE;
4421
4422     TRACE("(hProv=%08lx, hHash=%08lx, pbSignature=%p, dwSigLen=%d, hPubKey=%08lx, sDescription=%s, "
4423           "dwFlags=%08x)\n", hProv, hHash, pbSignature, dwSigLen, hPubKey, debugstr_w(sDescription),
4424           dwFlags);
4425         
4426     if (dwFlags & ~(CRYPT_NOHASHOID|CRYPT_X931_FORMAT)) {
4427         SetLastError(NTE_BAD_FLAGS);
4428         return FALSE;
4429     }
4430     
4431     if (!is_valid_handle(&handle_table, hProv, RSAENH_MAGIC_CONTAINER))
4432     {
4433         SetLastError(NTE_BAD_UID);
4434         return FALSE;
4435     }
4436  
4437     if (!lookup_handle(&handle_table, hPubKey, RSAENH_MAGIC_KEY,
4438                        (OBJECTHDR**)&pCryptKey))
4439     {
4440         SetLastError(NTE_BAD_KEY);
4441         return FALSE;
4442     }
4443
4444     /* in Microsoft implementation, the signature length is checked before
4445      * the signature pointer.
4446      */
4447     if (dwSigLen != pCryptKey->dwKeyLen)
4448     {
4449         SetLastError(NTE_BAD_SIGNATURE);
4450         return FALSE;
4451     }
4452
4453     if (!hHash || !pbSignature)
4454     {
4455         SetLastError(ERROR_INVALID_PARAMETER);
4456         return FALSE;
4457     }
4458
4459     if (sDescription) {
4460         if (!RSAENH_CPHashData(hProv, hHash, (CONST BYTE*)sDescription, 
4461                                 (DWORD)lstrlenW(sDescription)*sizeof(WCHAR), 0))
4462         {
4463             return FALSE;
4464         }
4465     }
4466     
4467     dwHashLen = sizeof(DWORD);
4468     if (!RSAENH_CPGetHashParam(hProv, hHash, HP_ALGID, (BYTE*)&aiAlgid, &dwHashLen, 0)) return FALSE;
4469     
4470     dwHashLen = RSAENH_MAX_HASH_SIZE;
4471     if (!RSAENH_CPGetHashParam(hProv, hHash, HP_HASHVAL, abHashValue, &dwHashLen, 0)) return FALSE;
4472
4473     pbConstructed = HeapAlloc(GetProcessHeap(), 0, dwSigLen);
4474     if (!pbConstructed) {
4475         SetLastError(NTE_NO_MEMORY);
4476         goto cleanup;
4477     }
4478
4479     pbDecrypted = HeapAlloc(GetProcessHeap(), 0, dwSigLen);
4480     if (!pbDecrypted) {
4481         SetLastError(NTE_NO_MEMORY);
4482         goto cleanup;
4483     }
4484
4485     if (!encrypt_block_impl(pCryptKey->aiAlgid, PK_PUBLIC, &pCryptKey->context, pbSignature, pbDecrypted, 
4486                             RSAENH_DECRYPT)) 
4487     {
4488         goto cleanup;
4489     }
4490
4491     if (build_hash_signature(pbConstructed, dwSigLen, aiAlgid, abHashValue, dwHashLen, dwFlags) &&
4492         !memcmp(pbDecrypted, pbConstructed, dwSigLen)) {
4493         res = TRUE;
4494         goto cleanup;
4495     }
4496
4497     if (!(dwFlags & CRYPT_NOHASHOID) &&
4498         build_hash_signature(pbConstructed, dwSigLen, aiAlgid, abHashValue, dwHashLen, dwFlags|CRYPT_NOHASHOID) &&
4499         !memcmp(pbDecrypted, pbConstructed, dwSigLen)) {
4500         res = TRUE;
4501         goto cleanup;
4502     }
4503
4504     SetLastError(NTE_BAD_SIGNATURE);
4505
4506 cleanup:
4507     HeapFree(GetProcessHeap(), 0, pbConstructed);
4508     HeapFree(GetProcessHeap(), 0, pbDecrypted);
4509     return res;
4510 }
4511
4512 /******************************************************************************
4513  * DllRegisterServer (RSAENH.@)
4514  */
4515 HRESULT WINAPI DllRegisterServer(void)
4516 {
4517     return __wine_register_resources( instance );
4518 }
4519
4520 /******************************************************************************
4521  * DllUnregisterServer (RSAENH.@)
4522  */
4523 HRESULT WINAPI DllUnregisterServer(void)
4524 {
4525     return __wine_unregister_resources( instance );
4526 }