3 * RSAENH - RSA encryption for Wine
5 * Copyright 2002 TransGaming Technologies (David Hammerton)
6 * Copyright 2004 Mike McCormack for CodeWeavers
7 * Copyright 2004, 2005 Michael Jung
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
25 #include "wine/port.h"
26 #include "wine/library.h"
27 #include "wine/debug.h"
41 WINE_DEFAULT_DEBUG_CHANNEL(crypt
);
43 /******************************************************************************
44 * CRYPTHASH - hash objects
46 #define RSAENH_MAGIC_HASH 0x85938417u
47 #define RSAENH_MAX_HASH_SIZE 104
48 #define RSAENH_HASHSTATE_IDLE 0
49 #define RSAENH_HASHSTATE_HASHING 1
50 #define RSAENH_HASHSTATE_FINISHED 2
51 typedef struct _RSAENH_TLS1PRF_PARAMS
53 CRYPT_DATA_BLOB blobLabel
;
54 CRYPT_DATA_BLOB blobSeed
;
55 } RSAENH_TLS1PRF_PARAMS
;
57 typedef struct tagCRYPTHASH
66 BYTE abHashValue
[RSAENH_MAX_HASH_SIZE
];
68 RSAENH_TLS1PRF_PARAMS tpPRFParams
;
71 /******************************************************************************
72 * CRYPTKEY - key objects
74 #define RSAENH_MAGIC_KEY 0x73620457u
75 #define RSAENH_MAX_KEY_SIZE 48
76 #define RSAENH_MAX_BLOCK_SIZE 24
77 #define RSAENH_KEYSTATE_IDLE 0
78 #define RSAENH_KEYSTATE_ENCRYPTING 1
79 #define RSAENH_KEYSTATE_DECRYPTING 2
80 #define RSAENH_KEYSTATE_MASTERKEY 3
81 typedef struct _RSAENH_SCHANNEL_INFO
83 SCHANNEL_ALG saEncAlg
;
84 SCHANNEL_ALG saMACAlg
;
85 CRYPT_DATA_BLOB blobClientRandom
;
86 CRYPT_DATA_BLOB blobServerRandom
;
87 } RSAENH_SCHANNEL_INFO
;
89 typedef struct tagCRYPTKEY
102 BYTE abKeyValue
[RSAENH_MAX_KEY_SIZE
];
103 BYTE abInitVector
[RSAENH_MAX_BLOCK_SIZE
];
104 BYTE abChainVector
[RSAENH_MAX_BLOCK_SIZE
];
105 RSAENH_SCHANNEL_INFO siSChannelInfo
;
108 /******************************************************************************
109 * KEYCONTAINER - key containers
111 #define RSAENH_PERSONALITY_BASE 0u
112 #define RSAENH_PERSONALITY_STRONG 1u
113 #define RSAENH_PERSONALITY_ENHANCED 2u
114 #define RSAENH_PERSONALITY_SCHANNEL 3u
116 #define RSAENH_MAGIC_CONTAINER 0x26384993u
117 typedef struct tagKEYCONTAINER
123 DWORD dwEnumContainersCtr
;
124 CHAR szName
[MAX_PATH
];
125 CHAR szProvName
[MAX_PATH
];
126 HCRYPTKEY hKeyExchangeKeyPair
;
127 HCRYPTKEY hSignatureKeyPair
;
130 /******************************************************************************
131 * Some magic constants
133 #define RSAENH_ENCRYPT 1
134 #define RSAENH_DECRYPT 0
135 #define RSAENH_HMAC_DEF_IPAD_CHAR 0x36
136 #define RSAENH_HMAC_DEF_OPAD_CHAR 0x5c
137 #define RSAENH_HMAC_DEF_PAD_LEN 64
138 #define RSAENH_DES_EFFECTIVE_KEYLEN 56
139 #define RSAENH_DES_STORAGE_KEYLEN 64
140 #define RSAENH_3DES112_EFFECTIVE_KEYLEN 112
141 #define RSAENH_3DES112_STORAGE_KEYLEN 128
142 #define RSAENH_3DES_EFFECTIVE_KEYLEN 168
143 #define RSAENH_3DES_STORAGE_KEYLEN 192
144 #define RSAENH_MAGIC_RSA2 0x32415352
145 #define RSAENH_MAGIC_RSA1 0x31415352
146 #define RSAENH_PKC_BLOCKTYPE 0x02
147 #define RSAENH_SSL3_VERSION_MAJOR 3
148 #define RSAENH_SSL3_VERSION_MINOR 0
149 #define RSAENH_TLS1_VERSION_MAJOR 3
150 #define RSAENH_TLS1_VERSION_MINOR 1
151 #define RSAENH_REGKEY "Software\\Wine\\Crypto\\RSA\\%s"
153 #define RSAENH_MIN(a,b) ((a)<(b)?(a):(b))
154 /******************************************************************************
155 * aProvEnumAlgsEx - Defines the capabilities of the CSP personalities.
157 #define RSAENH_MAX_ENUMALGS 20
158 #define RSAENH_PCT1_SSL2_SSL3_TLS1 (CRYPT_FLAG_PCT1|CRYPT_FLAG_SSL2|CRYPT_FLAG_SSL3|CRYPT_FLAG_TLS1)
159 static const PROV_ENUMALGS_EX aProvEnumAlgsEx
[4][RSAENH_MAX_ENUMALGS
+1] =
162 {CALG_RC2
, 40, 40, 56,0, 4,"RC2", 24,"RSA Data Security's RC2"},
163 {CALG_RC4
, 40, 40, 56,0, 4,"RC4", 24,"RSA Data Security's RC4"},
164 {CALG_DES
, 56, 56, 56,0, 4,"DES", 31,"Data Encryption Standard (DES)"},
165 {CALG_SHA
, 160,160, 160,CRYPT_FLAG_SIGNING
, 6,"SHA-1", 30,"Secure Hash Algorithm (SHA-1)"},
166 {CALG_MD2
, 128,128, 128,CRYPT_FLAG_SIGNING
, 4,"MD2", 23,"Message Digest 2 (MD2)"},
167 {CALG_MD4
, 128,128, 128,CRYPT_FLAG_SIGNING
, 4,"MD4", 23,"Message Digest 4 (MD4)"},
168 {CALG_MD5
, 128,128, 128,CRYPT_FLAG_SIGNING
, 4,"MD5", 23,"Message Digest 5 (MD5)"},
169 {CALG_SSL3_SHAMD5
,288,288,288,0, 12,"SSL3 SHAMD5",12,"SSL3 SHAMD5"},
170 {CALG_MAC
, 0, 0, 0,0, 4,"MAC", 28,"Message Authentication Code"},
171 {CALG_RSA_SIGN
, 512,384,16384,CRYPT_FLAG_SIGNING
|CRYPT_FLAG_IPSEC
,9,"RSA_SIGN",14,"RSA Signature"},
172 {CALG_RSA_KEYX
, 512,384, 1024,CRYPT_FLAG_SIGNING
|CRYPT_FLAG_IPSEC
,9,"RSA_KEYX",17,"RSA Key Exchange"},
173 {CALG_HMAC
, 0, 0, 0,0, 5,"HMAC", 18,"Hugo's MAC (HMAC)"},
174 {0, 0, 0, 0,0, 1,"", 1,""}
177 {CALG_RC2
, 128, 40, 128,0, 4,"RC2", 24,"RSA Data Security's RC2"},
178 {CALG_RC4
, 128, 40, 128,0, 4,"RC4", 24,"RSA Data Security's RC4"},
179 {CALG_DES
, 56, 56, 56,0, 4,"DES", 31,"Data Encryption Standard (DES)"},
180 {CALG_3DES_112
, 112,112, 112,0, 13,"3DES TWO KEY",19,"Two Key Triple DES"},
181 {CALG_3DES
, 168,168, 168,0, 5,"3DES", 21,"Three Key Triple DES"},
182 {CALG_SHA
, 160,160, 160,CRYPT_FLAG_SIGNING
, 6,"SHA-1", 30,"Secure Hash Algorithm (SHA-1)"},
183 {CALG_MD2
, 128,128, 128,CRYPT_FLAG_SIGNING
, 4,"MD2", 23,"Message Digest 2 (MD2)"},
184 {CALG_MD4
, 128,128, 128,CRYPT_FLAG_SIGNING
, 4,"MD4", 23,"Message Digest 4 (MD4)"},
185 {CALG_MD5
, 128,128, 128,CRYPT_FLAG_SIGNING
, 4,"MD5", 23,"Message Digest 5 (MD5)"},
186 {CALG_SSL3_SHAMD5
,288,288,288,0, 12,"SSL3 SHAMD5",12,"SSL3 SHAMD5"},
187 {CALG_MAC
, 0, 0, 0,0, 4,"MAC", 28,"Message Authentication Code"},
188 {CALG_RSA_SIGN
,1024,384,16384,CRYPT_FLAG_SIGNING
|CRYPT_FLAG_IPSEC
,9,"RSA_SIGN",14,"RSA Signature"},
189 {CALG_RSA_KEYX
,1024,384,16384,CRYPT_FLAG_SIGNING
|CRYPT_FLAG_IPSEC
,9,"RSA_KEYX",17,"RSA Key Exchange"},
190 {CALG_HMAC
, 0, 0, 0,0, 5,"HMAC", 18,"Hugo's MAC (HMAC)"},
191 {0, 0, 0, 0,0, 1,"", 1,""}
194 {CALG_RC2
, 128, 40, 128,0, 4,"RC2", 24,"RSA Data Security's RC2"},
195 {CALG_RC4
, 128, 40, 128,0, 4,"RC4", 24,"RSA Data Security's RC4"},
196 {CALG_DES
, 56, 56, 56,0, 4,"DES", 31,"Data Encryption Standard (DES)"},
197 {CALG_3DES_112
, 112,112, 112,0, 13,"3DES TWO KEY",19,"Two Key Triple DES"},
198 {CALG_3DES
, 168,168, 168,0, 5,"3DES", 21,"Three Key Triple DES"},
199 {CALG_SHA
, 160,160, 160,CRYPT_FLAG_SIGNING
, 6,"SHA-1", 30,"Secure Hash Algorithm (SHA-1)"},
200 {CALG_MD2
, 128,128, 128,CRYPT_FLAG_SIGNING
, 4,"MD2", 23,"Message Digest 2 (MD2)"},
201 {CALG_MD4
, 128,128, 128,CRYPT_FLAG_SIGNING
, 4,"MD4", 23,"Message Digest 4 (MD4)"},
202 {CALG_MD5
, 128,128, 128,CRYPT_FLAG_SIGNING
, 4,"MD5", 23,"Message Digest 5 (MD5)"},
203 {CALG_SSL3_SHAMD5
,288,288,288,0, 12,"SSL3 SHAMD5",12,"SSL3 SHAMD5"},
204 {CALG_MAC
, 0, 0, 0,0, 4,"MAC", 28,"Message Authentication Code"},
205 {CALG_RSA_SIGN
,1024,384,16384,CRYPT_FLAG_SIGNING
|CRYPT_FLAG_IPSEC
,9,"RSA_SIGN",14,"RSA Signature"},
206 {CALG_RSA_KEYX
,1024,384,16384,CRYPT_FLAG_SIGNING
|CRYPT_FLAG_IPSEC
,9,"RSA_KEYX",17,"RSA Key Exchange"},
207 {CALG_HMAC
, 0, 0, 0,0, 5,"HMAC", 18,"Hugo's MAC (HMAC)"},
208 {0, 0, 0, 0,0, 1,"", 1,""}
211 {CALG_RC2
, 128, 40, 128,RSAENH_PCT1_SSL2_SSL3_TLS1
, 4,"RC2", 24,"RSA Data Security's RC2"},
212 {CALG_RC4
, 128, 40, 128,RSAENH_PCT1_SSL2_SSL3_TLS1
, 4,"RC4", 24,"RSA Data Security's RC4"},
213 {CALG_DES
, 56, 56, 56,RSAENH_PCT1_SSL2_SSL3_TLS1
, 4,"DES", 31,"Data Encryption Standard (DES)"},
214 {CALG_3DES_112
, 112,112, 112,RSAENH_PCT1_SSL2_SSL3_TLS1
,13,"3DES TWO KEY",19,"Two Key Triple DES"},
215 {CALG_3DES
, 168,168, 168,RSAENH_PCT1_SSL2_SSL3_TLS1
, 5,"3DES", 21,"Three Key Triple DES"},
216 {CALG_SHA
,160,160,160,CRYPT_FLAG_SIGNING
|RSAENH_PCT1_SSL2_SSL3_TLS1
,6,"SHA-1",30,"Secure Hash Algorithm (SHA-1)"},
217 {CALG_MD5
,128,128,128,CRYPT_FLAG_SIGNING
|RSAENH_PCT1_SSL2_SSL3_TLS1
,4,"MD5",23,"Message Digest 5 (MD5)"},
218 {CALG_SSL3_SHAMD5
,288,288,288,0, 12,"SSL3 SHAMD5",12,"SSL3 SHAMD5"},
219 {CALG_MAC
, 0, 0, 0,0, 4,"MAC", 28,"Message Authentication Code"},
220 {CALG_RSA_SIGN
,1024,384,16384,CRYPT_FLAG_SIGNING
|RSAENH_PCT1_SSL2_SSL3_TLS1
,9,"RSA_SIGN",14,"RSA Signature"},
221 {CALG_RSA_KEYX
,1024,384,16384,CRYPT_FLAG_SIGNING
|RSAENH_PCT1_SSL2_SSL3_TLS1
,9,"RSA_KEYX",17,"RSA Key Exchange"},
222 {CALG_HMAC
, 0, 0, 0,0, 5,"HMAC", 18,"Hugo's MAC (HMAC)"},
223 {CALG_PCT1_MASTER
,128,128,128,CRYPT_FLAG_PCT1
, 12,"PCT1 MASTER",12,"PCT1 Master"},
224 {CALG_SSL2_MASTER
,40,40, 192,CRYPT_FLAG_SSL2
, 12,"SSL2 MASTER",12,"SSL2 Master"},
225 {CALG_SSL3_MASTER
,384,384,384,CRYPT_FLAG_SSL3
, 12,"SSL3 MASTER",12,"SSL3 Master"},
226 {CALG_TLS1_MASTER
,384,384,384,CRYPT_FLAG_TLS1
, 12,"TLS1 MASTER",12,"TLS1 Master"},
227 {CALG_SCHANNEL_MASTER_HASH
,0,0,-1,0, 16,"SCH MASTER HASH",21,"SChannel Master Hash"},
228 {CALG_SCHANNEL_MAC_KEY
,0,0,-1,0, 12,"SCH MAC KEY",17,"SChannel MAC Key"},
229 {CALG_SCHANNEL_ENC_KEY
,0,0,-1,0, 12,"SCH ENC KEY",24,"SChannel Encryption Key"},
230 {CALG_TLS1PRF
, 0, 0, -1,0, 9,"TLS1 PRF", 28,"TLS1 Pseudo Random Function"},
231 {0, 0, 0, 0,0, 1,"", 1,""}
235 /******************************************************************************
236 * API forward declarations
239 RSAENH_CPGetKeyParam(
270 RSAENH_CPSetHashParam(
274 BYTE
*pbData
, DWORD dwFlags
278 RSAENH_CPGetHashParam(
288 RSAENH_CPDestroyHash(
323 /******************************************************************************
324 * CSP's handle table (used by all acquired key containers)
326 static HANDLETABLE handle_table
;
328 /******************************************************************************
331 * Initializes and destroys the handle table for the CSP's handles.
333 int WINAPI
DllMain(HINSTANCE hInstance
, DWORD fdwReason
, PVOID pvReserved
)
337 case DLL_PROCESS_ATTACH
:
338 DisableThreadLibraryCalls(hInstance
);
339 init_handle_table(&handle_table
);
342 case DLL_PROCESS_DETACH
:
343 destroy_handle_table(&handle_table
);
349 /******************************************************************************
350 * copy_param [Internal]
352 * Helper function that supports the standard WINAPI protocol for querying data
356 * pbBuffer [O] Buffer where the queried parameter is copied to, if it is large enough.
357 * May be NUL if the required buffer size is to be queried only.
358 * pdwBufferSize [I/O] In: Size of the buffer at pbBuffer
359 * Out: Size of parameter pbParam
360 * pbParam [I] Parameter value.
361 * dwParamSize [I] Size of pbParam
364 * Success: TRUE (pbParam was copied into pbBuffer or pbBuffer is NULL)
365 * Failure: FALSE (pbBuffer is not large enough to hold pbParam). Last error: ERROR_MORE_DATA
367 static inline BOOL
copy_param(
368 BYTE
*pbBuffer
, DWORD
*pdwBufferSize
, CONST BYTE
*pbParam
, DWORD dwParamSize
)
372 if (dwParamSize
> *pdwBufferSize
)
374 SetLastError(ERROR_MORE_DATA
);
375 *pdwBufferSize
= dwParamSize
;
378 memcpy(pbBuffer
, pbParam
, dwParamSize
);
380 *pdwBufferSize
= dwParamSize
;
384 /******************************************************************************
385 * get_algid_info [Internal]
387 * Query CSP capabilities for a given crypto algorithm.
390 * hProv [I] Handle to a key container of the CSP whose capabilities are to be queried.
391 * algid [I] Identifier of the crypto algorithm about which information is requested.
394 * Success: Pointer to a PROV_ENUMALGS_EX struct containing information about the crypto algorithm.
395 * Failure: NULL (algid not supported)
397 static inline const PROV_ENUMALGS_EX
* get_algid_info(HCRYPTPROV hProv
, ALG_ID algid
) {
398 const PROV_ENUMALGS_EX
*iterator
;
399 KEYCONTAINER
*pKeyContainer
;
401 if (!lookup_handle(&handle_table
, hProv
, RSAENH_MAGIC_CONTAINER
, (OBJECTHDR
**)&pKeyContainer
)) {
402 SetLastError(NTE_BAD_UID
);
406 for (iterator
= aProvEnumAlgsEx
[pKeyContainer
->dwPersonality
]; iterator
->aiAlgid
; iterator
++) {
407 if (iterator
->aiAlgid
== algid
) return iterator
;
410 SetLastError(NTE_BAD_ALGID
);
414 /******************************************************************************
415 * copy_data_blob [Internal]
417 * deeply copies a DATA_BLOB
420 * dst [O] That's where the blob will be copied to
421 * src [I] Source blob
425 * Failure: FALSE (GetLastError() == NTE_NO_MEMORY
428 * Use free_data_blob to release resources occupied by copy_data_blob.
430 static inline BOOL
copy_data_blob(PCRYPT_DATA_BLOB dst
, CONST PCRYPT_DATA_BLOB src
) {
431 dst
->pbData
= HeapAlloc(GetProcessHeap(), 0, src
->cbData
);
433 SetLastError(NTE_NO_MEMORY
);
436 dst
->cbData
= src
->cbData
;
437 memcpy(dst
->pbData
, src
->pbData
, src
->cbData
);
441 /******************************************************************************
442 * concat_data_blobs [Internal]
444 * Concatenates two blobs
447 * dst [O] The new blob will be copied here
448 * src1 [I] Prefix blob
449 * src2 [I] Appendix blob
453 * Failure: FALSE (GetLastError() == NTE_NO_MEMORY)
456 * Release resources occupied by concat_data_blobs with free_data_blobs
458 static inline BOOL
concat_data_blobs(PCRYPT_DATA_BLOB dst
, CONST PCRYPT_DATA_BLOB src1
,
459 CONST PCRYPT_DATA_BLOB src2
)
461 dst
->cbData
= src1
->cbData
+ src2
->cbData
;
462 dst
->pbData
= HeapAlloc(GetProcessHeap(), 0, dst
->cbData
);
464 SetLastError(NTE_NO_MEMORY
);
467 memcpy(dst
->pbData
, src1
->pbData
, src1
->cbData
);
468 memcpy(dst
->pbData
+ src1
->cbData
, src2
->pbData
, src2
->cbData
);
472 /******************************************************************************
473 * free_data_blob [Internal]
475 * releases resource occupied by a dynamically allocated CRYPT_DATA_BLOB
478 * pBlob [I] Heap space occupied by pBlob->pbData is released
480 static inline void free_data_blob(PCRYPT_DATA_BLOB pBlob
) {
481 HeapFree(GetProcessHeap(), 0, pBlob
->pbData
);
484 /******************************************************************************
485 * init_data_blob [Internal]
487 static inline void init_data_blob(PCRYPT_DATA_BLOB pBlob
) {
488 pBlob
->pbData
= NULL
;
492 /******************************************************************************
493 * free_hmac_info [Internal]
495 * Deeply free an HMAC_INFO struct.
498 * hmac_info [I] Pointer to the HMAC_INFO struct to be freed.
501 * See Internet RFC 2104 for details on the HMAC algorithm.
503 static inline void free_hmac_info(PHMAC_INFO hmac_info
) {
504 if (!hmac_info
) return;
505 HeapFree(GetProcessHeap(), 0, hmac_info
->pbInnerString
);
506 HeapFree(GetProcessHeap(), 0, hmac_info
->pbOuterString
);
507 HeapFree(GetProcessHeap(), 0, hmac_info
);
510 /******************************************************************************
511 * copy_hmac_info [Internal]
513 * Deeply copy an HMAC_INFO struct
516 * dst [O] Pointer to a location where the pointer to the HMAC_INFO copy will be stored.
517 * src [I] Pointer to the HMAC_INFO struct to be copied.
524 * See Internet RFC 2104 for details on the HMAC algorithm.
526 static BOOL
copy_hmac_info(PHMAC_INFO
*dst
, PHMAC_INFO src
) {
527 if (!src
) return FALSE
;
528 *dst
= HeapAlloc(GetProcessHeap(), 0, sizeof(HMAC_INFO
));
529 if (!*dst
) return FALSE
;
530 memcpy(*dst
, src
, sizeof(HMAC_INFO
));
531 (*dst
)->pbInnerString
= NULL
;
532 (*dst
)->pbOuterString
= NULL
;
533 if ((*dst
)->cbInnerString
== 0) (*dst
)->cbInnerString
= RSAENH_HMAC_DEF_PAD_LEN
;
534 (*dst
)->pbInnerString
= HeapAlloc(GetProcessHeap(), 0, (*dst
)->cbInnerString
);
535 if (!(*dst
)->pbInnerString
) {
536 free_hmac_info(*dst
);
539 if (src
->cbInnerString
)
540 memcpy((*dst
)->pbInnerString
, src
->pbInnerString
, src
->cbInnerString
);
542 memset((*dst
)->pbInnerString
, RSAENH_HMAC_DEF_IPAD_CHAR
, RSAENH_HMAC_DEF_PAD_LEN
);
543 if ((*dst
)->cbOuterString
== 0) (*dst
)->cbOuterString
= RSAENH_HMAC_DEF_PAD_LEN
;
544 (*dst
)->pbOuterString
= HeapAlloc(GetProcessHeap(), 0, (*dst
)->cbOuterString
);
545 if (!(*dst
)->pbOuterString
) {
546 free_hmac_info(*dst
);
549 if (src
->cbOuterString
)
550 memcpy((*dst
)->pbOuterString
, src
->pbOuterString
, src
->cbOuterString
);
552 memset((*dst
)->pbOuterString
, RSAENH_HMAC_DEF_OPAD_CHAR
, RSAENH_HMAC_DEF_PAD_LEN
);
556 /******************************************************************************
557 * destroy_hash [Internal]
559 * Destructor for hash objects
562 * pCryptHash [I] Pointer to the hash object to be destroyed.
563 * Will be invalid after function returns!
565 static void destroy_hash(OBJECTHDR
*pObject
)
567 CRYPTHASH
*pCryptHash
= (CRYPTHASH
*)pObject
;
569 free_hmac_info(pCryptHash
->pHMACInfo
);
570 free_data_blob(&pCryptHash
->tpPRFParams
.blobLabel
);
571 free_data_blob(&pCryptHash
->tpPRFParams
.blobSeed
);
572 HeapFree(GetProcessHeap(), 0, pCryptHash
);
575 /******************************************************************************
576 * init_hash [Internal]
578 * Initialize (or reset) a hash object
581 * pCryptHash [I] The hash object to be initialized.
583 static inline BOOL
init_hash(CRYPTHASH
*pCryptHash
) {
586 switch (pCryptHash
->aiAlgid
)
589 if (pCryptHash
->pHMACInfo
) {
590 const PROV_ENUMALGS_EX
*pAlgInfo
;
592 pAlgInfo
= get_algid_info(pCryptHash
->hProv
, pCryptHash
->pHMACInfo
->HashAlgid
);
593 if (!pAlgInfo
) return FALSE
;
594 pCryptHash
->dwHashSize
= pAlgInfo
->dwDefaultLen
>> 3;
595 init_hash_impl(pCryptHash
->pHMACInfo
->HashAlgid
, &pCryptHash
->context
);
596 update_hash_impl(pCryptHash
->pHMACInfo
->HashAlgid
, &pCryptHash
->context
,
597 pCryptHash
->pHMACInfo
->pbInnerString
,
598 pCryptHash
->pHMACInfo
->cbInnerString
);
603 dwLen
= sizeof(DWORD
);
604 RSAENH_CPGetKeyParam(pCryptHash
->hProv
, pCryptHash
->hKey
, KP_BLOCKLEN
,
605 (BYTE
*)&pCryptHash
->dwHashSize
, &dwLen
, 0);
606 pCryptHash
->dwHashSize
>>= 3;
610 return init_hash_impl(pCryptHash
->aiAlgid
, &pCryptHash
->context
);
614 /******************************************************************************
615 * update_hash [Internal]
617 * Hashes the given data and updates the hash object's state accordingly
620 * pCryptHash [I] Hash object to be updated.
621 * pbData [I] Pointer to data stream to be hashed.
622 * dwDataLen [I] Length of data stream.
624 static inline void update_hash(CRYPTHASH
*pCryptHash
, CONST BYTE
*pbData
, DWORD dwDataLen
) {
627 switch (pCryptHash
->aiAlgid
)
630 if (pCryptHash
->pHMACInfo
)
631 update_hash_impl(pCryptHash
->pHMACInfo
->HashAlgid
, &pCryptHash
->context
,
636 pbTemp
= HeapAlloc(GetProcessHeap(), 0, dwDataLen
);
638 memcpy(pbTemp
, pbData
, dwDataLen
);
639 RSAENH_CPEncrypt(pCryptHash
->hProv
, pCryptHash
->hKey
, (HCRYPTHASH
)NULL
, FALSE
, 0,
640 pbTemp
, &dwDataLen
, dwDataLen
);
641 HeapFree(GetProcessHeap(), 0, pbTemp
);
645 update_hash_impl(pCryptHash
->aiAlgid
, &pCryptHash
->context
, pbData
, dwDataLen
);
649 /******************************************************************************
650 * finalize_hash [Internal]
652 * Finalizes the hash, after all data has been hashed with update_hash.
653 * No additional data can be hashed afterwards until the hash gets initialized again.
656 * pCryptHash [I] Hash object to be finalized.
658 static inline void finalize_hash(CRYPTHASH
*pCryptHash
) {
661 switch (pCryptHash
->aiAlgid
)
664 if (pCryptHash
->pHMACInfo
) {
665 BYTE abHashValue
[RSAENH_MAX_HASH_SIZE
];
667 finalize_hash_impl(pCryptHash
->pHMACInfo
->HashAlgid
, &pCryptHash
->context
,
668 pCryptHash
->abHashValue
);
669 memcpy(abHashValue
, pCryptHash
->abHashValue
, pCryptHash
->dwHashSize
);
670 init_hash_impl(pCryptHash
->pHMACInfo
->HashAlgid
, &pCryptHash
->context
);
671 update_hash_impl(pCryptHash
->pHMACInfo
->HashAlgid
, &pCryptHash
->context
,
672 pCryptHash
->pHMACInfo
->pbOuterString
,
673 pCryptHash
->pHMACInfo
->cbOuterString
);
674 update_hash_impl(pCryptHash
->pHMACInfo
->HashAlgid
, &pCryptHash
->context
,
675 abHashValue
, pCryptHash
->dwHashSize
);
676 finalize_hash_impl(pCryptHash
->pHMACInfo
->HashAlgid
, &pCryptHash
->context
,
677 pCryptHash
->abHashValue
);
683 RSAENH_CPEncrypt(pCryptHash
->hProv
, pCryptHash
->hKey
, (HCRYPTHASH
)NULL
, TRUE
, 0,
684 pCryptHash
->abHashValue
, &dwDataLen
, pCryptHash
->dwHashSize
);
688 finalize_hash_impl(pCryptHash
->aiAlgid
, &pCryptHash
->context
, pCryptHash
->abHashValue
);
692 /******************************************************************************
693 * destroy_key [Internal]
695 * Destructor for key objects
698 * pCryptKey [I] Pointer to the key object to be destroyed.
699 * Will be invalid after function returns!
701 static void destroy_key(OBJECTHDR
*pObject
)
703 CRYPTKEY
*pCryptKey
= (CRYPTKEY
*)pObject
;
705 free_key_impl(pCryptKey
->aiAlgid
, &pCryptKey
->context
);
706 free_data_blob(&pCryptKey
->siSChannelInfo
.blobClientRandom
);
707 free_data_blob(&pCryptKey
->siSChannelInfo
.blobServerRandom
);
708 HeapFree(GetProcessHeap(), 0, pCryptKey
);
711 /******************************************************************************
712 * setup_key [Internal]
714 * Initialize (or reset) a key object
717 * pCryptKey [I] The key object to be initialized.
719 static inline void setup_key(CRYPTKEY
*pCryptKey
) {
720 pCryptKey
->dwState
= RSAENH_KEYSTATE_IDLE
;
721 memcpy(pCryptKey
->abChainVector
, pCryptKey
->abInitVector
, sizeof(pCryptKey
->abChainVector
));
722 setup_key_impl(pCryptKey
->aiAlgid
, &pCryptKey
->context
, pCryptKey
->dwKeyLen
,
723 pCryptKey
->dwSaltLen
, pCryptKey
->abKeyValue
);
726 /******************************************************************************
729 * Creates a new key object without assigning the actual binary key value.
730 * This is done by CPDeriveKey, CPGenKey or CPImportKey, which call this function.
733 * hProv [I] Handle to the provider to which the created key will belong.
734 * aiAlgid [I] The new key shall use the crypto algorithm idenfied by aiAlgid.
735 * dwFlags [I] Upper 16 bits give the key length.
736 * Lower 16 bits: CRYPT_CREATE_SALT, CRYPT_NO_SALT
737 * ppCryptKey [O] Pointer to the created key
740 * Success: Handle to the created key.
741 * Failure: INVALID_HANDLE_VALUE
743 static HCRYPTKEY
new_key(HCRYPTPROV hProv
, ALG_ID aiAlgid
, DWORD dwFlags
, CRYPTKEY
**ppCryptKey
)
747 DWORD dwKeyLen
= HIWORD(dwFlags
);
748 const PROV_ENUMALGS_EX
*peaAlgidInfo
;
753 * Retrieve the CSP's capabilities for the given ALG_ID value
755 peaAlgidInfo
= get_algid_info(hProv
, aiAlgid
);
756 if (!peaAlgidInfo
) return (HCRYPTKEY
)INVALID_HANDLE_VALUE
;
759 * Assume the default key length, if none is specified explicitly
761 if (dwKeyLen
== 0) dwKeyLen
= peaAlgidInfo
->dwDefaultLen
;
764 * Check if the requested key length is supported by the current CSP.
765 * Adjust key length's for DES algorithms.
769 if (dwKeyLen
== RSAENH_DES_EFFECTIVE_KEYLEN
) {
770 dwKeyLen
= RSAENH_DES_STORAGE_KEYLEN
;
772 if (dwKeyLen
!= RSAENH_DES_STORAGE_KEYLEN
) {
773 SetLastError(NTE_BAD_FLAGS
);
774 return (HCRYPTKEY
)INVALID_HANDLE_VALUE
;
779 if (dwKeyLen
== RSAENH_3DES112_EFFECTIVE_KEYLEN
) {
780 dwKeyLen
= RSAENH_3DES112_STORAGE_KEYLEN
;
782 if (dwKeyLen
!= RSAENH_3DES112_STORAGE_KEYLEN
) {
783 SetLastError(NTE_BAD_FLAGS
);
784 return (HCRYPTKEY
)INVALID_HANDLE_VALUE
;
789 if (dwKeyLen
== RSAENH_3DES_EFFECTIVE_KEYLEN
) {
790 dwKeyLen
= RSAENH_3DES_STORAGE_KEYLEN
;
792 if (dwKeyLen
!= RSAENH_3DES_STORAGE_KEYLEN
) {
793 SetLastError(NTE_BAD_FLAGS
);
794 return (HCRYPTKEY
)INVALID_HANDLE_VALUE
;
800 dwKeyLen
> peaAlgidInfo
->dwMaxLen
||
801 dwKeyLen
< peaAlgidInfo
->dwMinLen
)
803 SetLastError(NTE_BAD_FLAGS
);
804 return (HCRYPTKEY
)INVALID_HANDLE_VALUE
;
808 hCryptKey
= (HCRYPTKEY
)new_object(&handle_table
, sizeof(CRYPTKEY
), RSAENH_MAGIC_KEY
,
809 destroy_key
, (OBJECTHDR
**)&pCryptKey
);
810 if (hCryptKey
!= (HCRYPTKEY
)INVALID_HANDLE_VALUE
)
812 pCryptKey
->aiAlgid
= aiAlgid
;
813 pCryptKey
->hProv
= hProv
;
814 pCryptKey
->dwModeBits
= 0;
815 pCryptKey
->dwPermissions
= CRYPT_ENCRYPT
| CRYPT_DECRYPT
| CRYPT_READ
| CRYPT_WRITE
|
817 pCryptKey
->dwKeyLen
= dwKeyLen
>> 3;
818 if ((dwFlags
& CRYPT_CREATE_SALT
) || (dwKeyLen
== 40 && !(dwFlags
& CRYPT_NO_SALT
)))
819 pCryptKey
->dwSaltLen
= 16 /*FIXME*/ - pCryptKey
->dwKeyLen
;
821 pCryptKey
->dwSaltLen
= 0;
822 memset(pCryptKey
->abKeyValue
, 0, sizeof(pCryptKey
->abKeyValue
));
823 memset(pCryptKey
->abInitVector
, 0, sizeof(pCryptKey
->abInitVector
));
824 init_data_blob(&pCryptKey
->siSChannelInfo
.blobClientRandom
);
825 init_data_blob(&pCryptKey
->siSChannelInfo
.blobServerRandom
);
829 case CALG_PCT1_MASTER
:
830 case CALG_SSL2_MASTER
:
831 case CALG_SSL3_MASTER
:
832 case CALG_TLS1_MASTER
:
834 pCryptKey
->dwBlockLen
= 0;
835 pCryptKey
->dwMode
= 0;
842 pCryptKey
->dwBlockLen
= 8;
843 pCryptKey
->dwMode
= CRYPT_MODE_CBC
;
848 pCryptKey
->dwBlockLen
= dwKeyLen
>> 3;
849 pCryptKey
->dwMode
= 0;
853 *ppCryptKey
= pCryptKey
;
859 /******************************************************************************
860 * destroy_key_container [Internal]
862 * Destructor for key containers.
865 * pObjectHdr [I] Pointer to the key container to be destroyed.
867 static void destroy_key_container(OBJECTHDR
*pObjectHdr
)
869 KEYCONTAINER
*pKeyContainer
= (KEYCONTAINER
*)pObjectHdr
;
870 DATA_BLOB blobIn
, blobOut
;
872 CHAR szRSABase
[MAX_PATH
];
877 if (!(pKeyContainer
->dwFlags
& CRYPT_VERIFYCONTEXT
)) {
878 /* On WinXP, persistent keys are stored in a file located at:
879 * $AppData$\\Microsoft\\Crypto\\RSA\\$SID$\\some_hex_string
881 sprintf(szRSABase
, RSAENH_REGKEY
, pKeyContainer
->szName
);
883 if (pKeyContainer
->dwFlags
& CRYPT_MACHINE_KEYSET
) {
884 hRootKey
= HKEY_LOCAL_MACHINE
;
886 hRootKey
= HKEY_CURRENT_USER
;
889 /* @@ Wine registry key: HKLM\Software\Wine\Crypto\RSA */
890 /* @@ Wine registry key: HKCU\Software\Wine\Crypto\RSA */
891 if (RegCreateKeyExA(hRootKey
, szRSABase
, 0, NULL
, REG_OPTION_NON_VOLATILE
,
892 KEY_WRITE
, NULL
, &hKey
, NULL
) == ERROR_SUCCESS
)
894 if (lookup_handle(&handle_table
, pKeyContainer
->hKeyExchangeKeyPair
, RSAENH_MAGIC_KEY
,
897 if (RSAENH_CPExportKey(pKey
->hProv
, pKeyContainer
->hKeyExchangeKeyPair
, 0,
898 PRIVATEKEYBLOB
, 0, 0, &dwLen
))
900 pbKey
= HeapAlloc(GetProcessHeap(), 0, dwLen
);
903 if (RSAENH_CPExportKey(pKey
->hProv
, pKeyContainer
->hKeyExchangeKeyPair
, 0,
904 PRIVATEKEYBLOB
, 0, pbKey
, &dwLen
))
906 blobIn
.pbData
= pbKey
;
907 blobIn
.cbData
= dwLen
;
909 if (CryptProtectData(&blobIn
, NULL
, NULL
, NULL
, NULL
,
910 (pKeyContainer
->dwFlags
& CRYPT_MACHINE_KEYSET
) ?
911 CRYPTPROTECT_LOCAL_MACHINE
: 0,
914 RegSetValueExA(hKey
, "KeyExchangeKeyPair", 0, REG_BINARY
,
915 blobOut
.pbData
, blobOut
.cbData
);
916 HeapFree(GetProcessHeap(), 0, blobOut
.pbData
);
919 HeapFree(GetProcessHeap(), 0, pbKey
);
922 release_handle(&handle_table
, pKeyContainer
->hKeyExchangeKeyPair
,
926 if (lookup_handle(&handle_table
, pKeyContainer
->hSignatureKeyPair
, RSAENH_MAGIC_KEY
,
929 if (RSAENH_CPExportKey(pKey
->hProv
, pKeyContainer
->hSignatureKeyPair
, 0,
930 PRIVATEKEYBLOB
, 0, 0, &dwLen
))
932 pbKey
= HeapAlloc(GetProcessHeap(), 0, dwLen
);
935 if (RSAENH_CPExportKey(pKey
->hProv
, pKeyContainer
->hSignatureKeyPair
, 0,
936 PRIVATEKEYBLOB
, 0, pbKey
, &dwLen
))
938 blobIn
.pbData
= pbKey
;
939 blobIn
.cbData
= dwLen
;
941 if (CryptProtectData(&blobIn
, NULL
, NULL
, NULL
, NULL
,
942 (pKeyContainer
->dwFlags
& CRYPT_MACHINE_KEYSET
) ?
943 CRYPTPROTECT_LOCAL_MACHINE
: 0,
946 RegSetValueExA(hKey
, "SignatureKeyPair", 0, REG_BINARY
,
947 blobOut
.pbData
, blobOut
.cbData
);
948 HeapFree(GetProcessHeap(), 0, blobOut
.pbData
);
951 HeapFree(GetProcessHeap(), 0, pbKey
);
954 release_handle(&handle_table
, pKeyContainer
->hSignatureKeyPair
,
962 HeapFree( GetProcessHeap(), 0, pKeyContainer
);
965 /******************************************************************************
966 * new_key_container [Internal]
968 * Create a new key container. The personality (RSA Base, Strong or Enhanced CP)
969 * of the CSP is determined via the pVTable->pszProvName string.
972 * pszContainerName [I] Name of the key container.
973 * pVTable [I] Callback functions and context info provided by the OS
976 * Success: Handle to the new key container.
977 * Failure: INVALID_HANDLE_VALUE
979 static HCRYPTPROV
new_key_container(PCCH pszContainerName
, DWORD dwFlags
, PVTableProvStruc pVTable
)
981 KEYCONTAINER
*pKeyContainer
;
982 HCRYPTPROV hKeyContainer
;
984 hKeyContainer
= (HCRYPTPROV
)new_object(&handle_table
, sizeof(KEYCONTAINER
), RSAENH_MAGIC_CONTAINER
,
985 destroy_key_container
, (OBJECTHDR
**)&pKeyContainer
);
986 if (hKeyContainer
!= (HCRYPTPROV
)INVALID_HANDLE_VALUE
)
988 lstrcpynA(pKeyContainer
->szName
, pszContainerName
, MAX_PATH
);
989 pKeyContainer
->dwFlags
= dwFlags
;
990 pKeyContainer
->dwEnumAlgsCtr
= 0;
991 pKeyContainer
->hKeyExchangeKeyPair
= (HCRYPTKEY
)INVALID_HANDLE_VALUE
;
992 pKeyContainer
->hSignatureKeyPair
= (HCRYPTKEY
)INVALID_HANDLE_VALUE
;
993 if (pVTable
&& pVTable
->pszProvName
) {
994 lstrcpynA(pKeyContainer
->szProvName
, pVTable
->pszProvName
, MAX_PATH
);
995 if (!strcmp(pVTable
->pszProvName
, MS_DEF_PROV_A
)) {
996 pKeyContainer
->dwPersonality
= RSAENH_PERSONALITY_BASE
;
997 } else if (!strcmp(pVTable
->pszProvName
, MS_ENHANCED_PROV_A
)) {
998 pKeyContainer
->dwPersonality
= RSAENH_PERSONALITY_ENHANCED
;
999 } else if (!strcmp(pVTable
->pszProvName
, MS_DEF_RSA_SCHANNEL_PROV_A
)) {
1000 pKeyContainer
->dwPersonality
= RSAENH_PERSONALITY_SCHANNEL
;
1002 pKeyContainer
->dwPersonality
= RSAENH_PERSONALITY_STRONG
;
1006 /* The new key container has to be inserted into the CSP immediately
1007 * after creation to be available for CPGetProvParam's PP_ENUMCONTAINERS. */
1008 if (!(dwFlags
& CRYPT_VERIFYCONTEXT
)) {
1009 CHAR szRSABase
[MAX_PATH
];
1010 HKEY hRootKey
, hKey
;
1012 sprintf(szRSABase
, RSAENH_REGKEY
, pKeyContainer
->szName
);
1014 if (pKeyContainer
->dwFlags
& CRYPT_MACHINE_KEYSET
) {
1015 hRootKey
= HKEY_LOCAL_MACHINE
;
1017 hRootKey
= HKEY_CURRENT_USER
;
1020 /* @@ Wine registry key: HKLM\Software\Wine\Crypto\RSA */
1021 /* @@ Wine registry key: HKCU\Software\Wine\Crypto\RSA */
1022 RegCreateKeyA(hRootKey
, szRSABase
, &hKey
);
1027 return hKeyContainer
;
1030 /******************************************************************************
1031 * read_key_container [Internal]
1033 * Tries to read the persistent state of the key container (mainly the signature
1034 * and key exchange private keys) given by pszContainerName.
1037 * pszContainerName [I] Name of the key container to read from the registry
1038 * pVTable [I] Pointer to context data provided by the operating system
1041 * Success: Handle to the key container read from the registry
1042 * Failure: INVALID_HANDLE_VALUE
1044 static HCRYPTPROV
read_key_container(PCHAR pszContainerName
, DWORD dwFlags
, PVTableProvStruc pVTable
)
1046 CHAR szRSABase
[MAX_PATH
];
1048 HKEY hKey
, hRootKey
;
1049 DWORD dwValueType
, dwLen
;
1050 KEYCONTAINER
*pKeyContainer
;
1051 HCRYPTPROV hKeyContainer
;
1052 DATA_BLOB blobIn
, blobOut
;
1053 HCRYPTKEY hCryptKey
;
1055 sprintf(szRSABase
, RSAENH_REGKEY
, pszContainerName
);
1057 if (dwFlags
& CRYPT_MACHINE_KEYSET
) {
1058 hRootKey
= HKEY_LOCAL_MACHINE
;
1060 hRootKey
= HKEY_CURRENT_USER
;
1063 /* @@ Wine registry key: HKLM\Software\Wine\Crypto\RSA */
1064 /* @@ Wine registry key: HKCU\Software\Wine\Crypto\RSA */
1065 if (RegOpenKeyExA(hRootKey
, szRSABase
, 0, KEY_READ
, &hKey
) != ERROR_SUCCESS
)
1067 SetLastError(NTE_BAD_KEYSET
);
1068 return (HCRYPTPROV
)INVALID_HANDLE_VALUE
;
1071 hKeyContainer
= new_key_container(pszContainerName
, dwFlags
, pVTable
);
1072 if (hKeyContainer
!= (HCRYPTPROV
)INVALID_HANDLE_VALUE
)
1074 if (!lookup_handle(&handle_table
, hKeyContainer
, RSAENH_MAGIC_CONTAINER
,
1075 (OBJECTHDR
**)&pKeyContainer
))
1076 return (HCRYPTPROV
)INVALID_HANDLE_VALUE
;
1078 if (RegQueryValueExA(hKey
, "KeyExchangeKeyPair", 0, &dwValueType
, NULL
, &dwLen
) ==
1081 pbKey
= HeapAlloc(GetProcessHeap(), 0, dwLen
);
1084 if (RegQueryValueExA(hKey
, "KeyExchangeKeyPair", 0, &dwValueType
, pbKey
, &dwLen
) ==
1087 blobIn
.pbData
= pbKey
;
1088 blobIn
.cbData
= dwLen
;
1090 if (CryptUnprotectData(&blobIn
, NULL
, NULL
, NULL
, NULL
,
1091 (dwFlags
& CRYPT_MACHINE_KEYSET
) ? CRYPTPROTECT_LOCAL_MACHINE
: 0, &blobOut
))
1093 if(RSAENH_CPImportKey(hKeyContainer
, blobOut
.pbData
, blobOut
.cbData
, 0, 0,
1095 pKeyContainer
->hKeyExchangeKeyPair
= hCryptKey
;
1096 HeapFree(GetProcessHeap(), 0, blobOut
.pbData
);
1099 HeapFree(GetProcessHeap(), 0, pbKey
);
1103 if (RegQueryValueExA(hKey
, "SignatureKeyPair", 0, &dwValueType
, NULL
, &dwLen
) ==
1106 pbKey
= HeapAlloc(GetProcessHeap(), 0, dwLen
);
1109 if (RegQueryValueExA(hKey
, "SignatureKeyPair", 0, &dwValueType
, pbKey
, &dwLen
) ==
1112 blobIn
.pbData
= pbKey
;
1113 blobIn
.cbData
= dwLen
;
1115 if (CryptUnprotectData(&blobIn
, NULL
, NULL
, NULL
, NULL
,
1116 (dwFlags
& CRYPT_MACHINE_KEYSET
) ? CRYPTPROTECT_LOCAL_MACHINE
: 0, &blobOut
))
1118 if(RSAENH_CPImportKey(hKeyContainer
, blobOut
.pbData
, blobOut
.cbData
, 0, 0,
1120 pKeyContainer
->hSignatureKeyPair
= hCryptKey
;
1121 HeapFree(GetProcessHeap(), 0, blobOut
.pbData
);
1124 HeapFree(GetProcessHeap(), 0, pbKey
);
1129 return hKeyContainer
;
1132 /******************************************************************************
1133 * build_hash_signature [Internal]
1135 * Builds a padded version of a hash to match the length of the RSA key modulus.
1138 * pbSignature [O] The padded hash object is stored here.
1139 * dwLen [I] Length of the pbSignature buffer.
1140 * aiAlgid [I] Algorithm identifier of the hash to be padded.
1141 * abHashValue [I] The value of the hash object.
1142 * dwHashLen [I] Length of the hash value.
1143 * dwFlags [I] Selection of padding algorithm.
1147 * Failure: FALSE (NTE_BAD_ALGID)
1149 static BOOL
build_hash_signature(BYTE
*pbSignature
, DWORD dwLen
, ALG_ID aiAlgid
,
1150 CONST BYTE
*abHashValue
, DWORD dwHashLen
, DWORD dwFlags
)
1152 /* These prefixes are meant to be concatenated with hash values of the
1153 * respective kind to form a PKCS #7 DigestInfo. */
1154 static const struct tagOIDDescriptor
{
1157 CONST BYTE abOID
[18];
1158 } aOIDDescriptor
[5] = {
1159 { CALG_MD2
, 18, { 0x30, 0x20, 0x30, 0x0c, 0x06, 0x08, 0x2a, 0x86, 0x48,
1160 0x86, 0xf7, 0x0d, 0x02, 0x02, 0x05, 0x00, 0x04, 0x10 } },
1161 { CALG_MD4
, 18, { 0x30, 0x20, 0x30, 0x0c, 0x06, 0x08, 0x2a, 0x86, 0x48,
1162 0x86, 0xf7, 0x0d, 0x02, 0x04, 0x05, 0x00, 0x04, 0x10 } },
1163 { CALG_MD5
, 18, { 0x30, 0x20, 0x30, 0x0c, 0x06, 0x08, 0x2a, 0x86, 0x48,
1164 0x86, 0xf7, 0x0d, 0x02, 0x05, 0x05, 0x00, 0x04, 0x10 } },
1165 { CALG_SHA
, 15, { 0x30, 0x21, 0x30, 0x09, 0x06, 0x05, 0x2b, 0x0e, 0x03,
1166 0x02, 0x1a, 0x05, 0x00, 0x04, 0x14 } },
1169 DWORD dwIdxOID
, i
, j
;
1171 for (dwIdxOID
= 0; aOIDDescriptor
[dwIdxOID
].aiAlgid
; dwIdxOID
++) {
1172 if (aOIDDescriptor
[dwIdxOID
].aiAlgid
== aiAlgid
) break;
1175 if (!aOIDDescriptor
[dwIdxOID
].aiAlgid
) {
1176 SetLastError(NTE_BAD_ALGID
);
1180 /* Build the padded signature */
1181 if (dwFlags
& CRYPT_X931_FORMAT
) {
1182 pbSignature
[0] = 0x6b;
1183 for (i
=1; i
< dwLen
- dwHashLen
- 3; i
++) {
1184 pbSignature
[i
] = 0xbb;
1186 pbSignature
[i
++] = 0xba;
1187 for (j
=0; j
< dwHashLen
; j
++, i
++) {
1188 pbSignature
[i
] = abHashValue
[j
];
1190 pbSignature
[i
++] = 0x33;
1191 pbSignature
[i
++] = 0xcc;
1193 pbSignature
[0] = 0x00;
1194 pbSignature
[1] = 0x01;
1195 if (dwFlags
& CRYPT_NOHASHOID
) {
1196 for (i
=2; i
< dwLen
- 1 - dwHashLen
; i
++) {
1197 pbSignature
[i
] = 0xff;
1199 pbSignature
[i
++] = 0x00;
1201 for (i
=2; i
< dwLen
- 1 - aOIDDescriptor
[dwIdxOID
].dwLen
- dwHashLen
; i
++) {
1202 pbSignature
[i
] = 0xff;
1204 pbSignature
[i
++] = 0x00;
1205 for (j
=0; j
< aOIDDescriptor
[dwIdxOID
].dwLen
; j
++) {
1206 pbSignature
[i
++] = aOIDDescriptor
[dwIdxOID
].abOID
[j
];
1209 for (j
=0; j
< dwHashLen
; j
++) {
1210 pbSignature
[i
++] = abHashValue
[j
];
1217 /******************************************************************************
1220 * This is an implementation of the 'P_hash' helper function for TLS1's PRF.
1221 * It is used exclusively by tls1_prf. For details see RFC 2246, chapter 5.
1222 * The pseudo random stream generated by this function is exclusive or'ed with
1223 * the data in pbBuffer.
1226 * hHMAC [I] HMAC object, which will be used in pseudo random generation
1227 * pblobSeed [I] Seed value
1228 * pbBuffer [I/O] Pseudo random stream will be xor'ed to the provided data
1229 * dwBufferLen [I] Number of pseudo random bytes desired
1235 static BOOL
tls1_p(HCRYPTHASH hHMAC
, CONST PCRYPT_DATA_BLOB pblobSeed
, PBYTE pbBuffer
, DWORD dwBufferLen
)
1238 BYTE abAi
[RSAENH_MAX_HASH_SIZE
];
1241 if (!lookup_handle(&handle_table
, hHMAC
, RSAENH_MAGIC_HASH
, (OBJECTHDR
**)&pHMAC
)) {
1242 SetLastError(NTE_BAD_HASH
);
1246 /* compute A_1 = HMAC(seed) */
1248 update_hash(pHMAC
, pblobSeed
->pbData
, pblobSeed
->cbData
);
1249 finalize_hash(pHMAC
);
1250 memcpy(abAi
, pHMAC
->abHashValue
, pHMAC
->dwHashSize
);
1253 /* compute HMAC(A_i + seed) */
1255 update_hash(pHMAC
, abAi
, pHMAC
->dwHashSize
);
1256 update_hash(pHMAC
, pblobSeed
->pbData
, pblobSeed
->cbData
);
1257 finalize_hash(pHMAC
);
1259 /* pseudo random stream := CONCAT_{i=1..n} ( HMAC(A_i + seed) ) */
1261 if (i
>= dwBufferLen
) break;
1262 pbBuffer
[i
] ^= pHMAC
->abHashValue
[i
% pHMAC
->dwHashSize
];
1264 } while (i
% pHMAC
->dwHashSize
);
1266 /* compute A_{i+1} = HMAC(A_i) */
1268 update_hash(pHMAC
, abAi
, pHMAC
->dwHashSize
);
1269 finalize_hash(pHMAC
);
1270 memcpy(abAi
, pHMAC
->abHashValue
, pHMAC
->dwHashSize
);
1271 } while (i
< dwBufferLen
);
1276 /******************************************************************************
1277 * tls1_prf [Internal]
1279 * TLS1 pseudo random function as specified in RFC 2246, chapter 5
1282 * hProv [I] Key container used to compute the pseudo random stream
1283 * hSecret [I] Key that holds the (pre-)master secret
1284 * pblobLabel [I] Descriptive label
1285 * pblobSeed [I] Seed value
1286 * pbBuffer [O] Pseudo random numbers will be stored here
1287 * dwBufferLen [I] Number of pseudo random bytes desired
1293 static BOOL
tls1_prf(HCRYPTPROV hProv
, HCRYPTPROV hSecret
, CONST PCRYPT_DATA_BLOB pblobLabel
,
1294 CONST PCRYPT_DATA_BLOB pblobSeed
, PBYTE pbBuffer
, DWORD dwBufferLen
)
1296 HMAC_INFO hmacInfo
= { 0, NULL
, 0, NULL
, 0 };
1297 HCRYPTHASH hHMAC
= (HCRYPTHASH
)INVALID_HANDLE_VALUE
;
1298 HCRYPTKEY hHalfSecret
= (HCRYPTKEY
)INVALID_HANDLE_VALUE
;
1299 CRYPTKEY
*pHalfSecret
, *pSecret
;
1300 DWORD dwHalfSecretLen
;
1301 BOOL result
= FALSE
;
1302 CRYPT_DATA_BLOB blobLabelSeed
;
1304 TRACE("(hProv=%08lx, hSecret=%08lx, pblobLabel=%p, pblobSeed=%p, pbBuffer=%p, dwBufferLen=%d)\n",
1305 hProv
, hSecret
, pblobLabel
, pblobSeed
, pbBuffer
, dwBufferLen
);
1307 if (!lookup_handle(&handle_table
, hSecret
, RSAENH_MAGIC_KEY
, (OBJECTHDR
**)&pSecret
)) {
1308 SetLastError(NTE_FAIL
);
1312 dwHalfSecretLen
= (pSecret
->dwKeyLen
+1)/2;
1314 /* concatenation of the label and the seed */
1315 if (!concat_data_blobs(&blobLabelSeed
, pblobLabel
, pblobSeed
)) goto exit
;
1317 /* zero out the buffer, since two random streams will be xor'ed into it. */
1318 memset(pbBuffer
, 0, dwBufferLen
);
1320 /* build a 'fake' key, to hold the secret. CALG_SSL2_MASTER is used since it provides
1321 * the biggest range of valid key lengths. */
1322 hHalfSecret
= new_key(hProv
, CALG_SSL2_MASTER
, MAKELONG(0,dwHalfSecretLen
*8), &pHalfSecret
);
1323 if (hHalfSecret
== (HCRYPTKEY
)INVALID_HANDLE_VALUE
) goto exit
;
1325 /* Derive an HMAC_MD5 hash and call the helper function. */
1326 memcpy(pHalfSecret
->abKeyValue
, pSecret
->abKeyValue
, dwHalfSecretLen
);
1327 if (!RSAENH_CPCreateHash(hProv
, CALG_HMAC
, hHalfSecret
, 0, &hHMAC
)) goto exit
;
1328 hmacInfo
.HashAlgid
= CALG_MD5
;
1329 if (!RSAENH_CPSetHashParam(hProv
, hHMAC
, HP_HMAC_INFO
, (BYTE
*)&hmacInfo
, 0)) goto exit
;
1330 if (!tls1_p(hHMAC
, &blobLabelSeed
, pbBuffer
, dwBufferLen
)) goto exit
;
1332 /* Reconfigure to HMAC_SHA hash and call helper function again. */
1333 memcpy(pHalfSecret
->abKeyValue
, pSecret
->abKeyValue
+ (pSecret
->dwKeyLen
/2), dwHalfSecretLen
);
1334 hmacInfo
.HashAlgid
= CALG_SHA
;
1335 if (!RSAENH_CPSetHashParam(hProv
, hHMAC
, HP_HMAC_INFO
, (BYTE
*)&hmacInfo
, 0)) goto exit
;
1336 if (!tls1_p(hHMAC
, &blobLabelSeed
, pbBuffer
, dwBufferLen
)) goto exit
;
1340 release_handle(&handle_table
, hHalfSecret
, RSAENH_MAGIC_KEY
);
1341 if (hHMAC
!= (HCRYPTHASH
)INVALID_HANDLE_VALUE
) RSAENH_CPDestroyHash(hProv
, hHMAC
);
1342 free_data_blob(&blobLabelSeed
);
1346 /******************************************************************************
1347 * pad_data [Internal]
1349 * Helper function for data padding according to PKCS1 #2
1352 * abData [I] The data to be padded
1353 * dwDataLen [I] Length of the data
1354 * abBuffer [O] Padded data will be stored here
1355 * dwBufferLen [I] Length of the buffer (also length of padded data)
1356 * dwFlags [I] Padding format (CRYPT_SSL2_FALLBACK)
1360 * Failure: FALSE (NTE_BAD_LEN, too much data to pad)
1362 static BOOL
pad_data(CONST BYTE
*abData
, DWORD dwDataLen
, BYTE
*abBuffer
, DWORD dwBufferLen
,
1367 /* Ensure there is enough space for PKCS1 #2 padding */
1368 if (dwDataLen
> dwBufferLen
-11) {
1369 SetLastError(NTE_BAD_LEN
);
1373 memmove(abBuffer
+ dwBufferLen
- dwDataLen
, abData
, dwDataLen
);
1376 abBuffer
[1] = RSAENH_PKC_BLOCKTYPE
;
1377 for (i
=2; i
< dwBufferLen
- dwDataLen
- 1; i
++)
1378 do gen_rand_impl(&abBuffer
[i
], 1); while (!abBuffer
[i
]);
1379 if (dwFlags
& CRYPT_SSL2_FALLBACK
)
1380 for (i
-=8; i
< dwBufferLen
- dwDataLen
- 1; i
++)
1387 /******************************************************************************
1388 * unpad_data [Internal]
1390 * Remove the PKCS1 padding from RSA decrypted data
1393 * abData [I] The padded data
1394 * dwDataLen [I] Length of the padded data
1395 * abBuffer [O] Data without padding will be stored here
1396 * dwBufferLen [I/O] I: Length of the buffer, O: Length of unpadded data
1397 * dwFlags [I] Currently none defined
1401 * Failure: FALSE, (NTE_BAD_DATA, no valid PKCS1 padding or buffer too small)
1403 static BOOL
unpad_data(CONST BYTE
*abData
, DWORD dwDataLen
, BYTE
*abBuffer
, DWORD
*dwBufferLen
,
1408 for (i
=2; i
<dwDataLen
; i
++)
1412 if ((i
== dwDataLen
) || (*dwBufferLen
< dwDataLen
- i
- 1) ||
1413 (abData
[0] != 0x00) || (abData
[1] != RSAENH_PKC_BLOCKTYPE
))
1415 SetLastError(NTE_BAD_DATA
);
1419 *dwBufferLen
= dwDataLen
- i
- 1;
1420 memmove(abBuffer
, abData
+ i
+ 1, *dwBufferLen
);
1424 /******************************************************************************
1425 * CPAcquireContext (RSAENH.@)
1427 * Acquire a handle to the key container specified by pszContainer
1430 * phProv [O] Pointer to the location the acquired handle will be written to.
1431 * pszContainer [I] Name of the desired key container. See Notes
1432 * dwFlags [I] Flags. See Notes.
1433 * pVTable [I] Pointer to a PVTableProvStruct containing callbacks.
1440 * If pszContainer is NULL or points to a zero length string the user's login
1441 * name will be used as the key container name.
1443 * If the CRYPT_NEW_KEYSET flag is set in dwFlags a new keyset will be created.
1444 * If a keyset with the given name already exists, the function fails and sets
1445 * last error to NTE_EXISTS. If CRYPT_NEW_KEYSET is not set and the specified
1446 * key container does not exist, function fails and sets last error to
1449 BOOL WINAPI
RSAENH_CPAcquireContext(HCRYPTPROV
*phProv
, LPSTR pszContainer
,
1450 DWORD dwFlags
, PVTableProvStruc pVTable
)
1452 CHAR szKeyContainerName
[MAX_PATH
];
1453 CHAR szRegKey
[MAX_PATH
];
1455 TRACE("(phProv=%p, pszContainer=%s, dwFlags=%08x, pVTable=%p)\n", phProv
,
1456 debugstr_a(pszContainer
), dwFlags
, pVTable
);
1458 if (pszContainer
&& *pszContainer
)
1460 lstrcpynA(szKeyContainerName
, pszContainer
, MAX_PATH
);
1464 DWORD dwLen
= sizeof(szKeyContainerName
);
1465 if (!GetUserNameA(szKeyContainerName
, &dwLen
)) return FALSE
;
1468 switch (dwFlags
& (CRYPT_NEWKEYSET
|CRYPT_VERIFYCONTEXT
|CRYPT_DELETEKEYSET
))
1471 *phProv
= read_key_container(szKeyContainerName
, dwFlags
, pVTable
);
1474 case CRYPT_DELETEKEYSET
:
1475 if (snprintf(szRegKey
, MAX_PATH
, RSAENH_REGKEY
, szKeyContainerName
) >= MAX_PATH
) {
1476 SetLastError(NTE_BAD_KEYSET_PARAM
);
1480 if (dwFlags
& CRYPT_MACHINE_KEYSET
)
1481 hRootKey
= HKEY_LOCAL_MACHINE
;
1483 hRootKey
= HKEY_CURRENT_USER
;
1484 if (!RegDeleteKeyA(hRootKey
, szRegKey
)) {
1485 SetLastError(ERROR_SUCCESS
);
1488 SetLastError(NTE_BAD_KEYSET
);
1494 case CRYPT_NEWKEYSET
:
1495 *phProv
= read_key_container(szKeyContainerName
, dwFlags
, pVTable
);
1496 if (*phProv
!= (HCRYPTPROV
)INVALID_HANDLE_VALUE
)
1498 release_handle(&handle_table
, *phProv
, RSAENH_MAGIC_CONTAINER
);
1499 TRACE("Can't create new keyset, already exists\n");
1500 SetLastError(NTE_EXISTS
);
1503 *phProv
= new_key_container(szKeyContainerName
, dwFlags
, pVTable
);
1506 case CRYPT_VERIFYCONTEXT
:
1508 TRACE("pszContainer should be NULL\n");
1509 SetLastError(NTE_BAD_FLAGS
);
1512 *phProv
= new_key_container("", dwFlags
, pVTable
);
1516 *phProv
= (HCRYPTPROV
)INVALID_HANDLE_VALUE
;
1517 SetLastError(NTE_BAD_FLAGS
);
1521 if (*phProv
!= (HCRYPTPROV
)INVALID_HANDLE_VALUE
) {
1522 SetLastError(ERROR_SUCCESS
);
1529 /******************************************************************************
1530 * CPCreateHash (RSAENH.@)
1532 * CPCreateHash creates and initalizes a new hash object.
1535 * hProv [I] Handle to the key container to which the new hash will belong.
1536 * Algid [I] Identifies the hash algorithm, which will be used for the hash.
1537 * hKey [I] Handle to a session key applied for keyed hashes.
1538 * dwFlags [I] Currently no flags defined. Must be zero.
1539 * phHash [O] Points to the location where a handle to the new hash will be stored.
1546 * hKey is a handle to a session key applied in keyed hashes like MAC and HMAC.
1547 * If a normal hash object is to be created (like e.g. MD2 or SHA1) hKey must be zero.
1549 BOOL WINAPI
RSAENH_CPCreateHash(HCRYPTPROV hProv
, ALG_ID Algid
, HCRYPTKEY hKey
, DWORD dwFlags
,
1552 CRYPTKEY
*pCryptKey
;
1553 CRYPTHASH
*pCryptHash
;
1554 const PROV_ENUMALGS_EX
*peaAlgidInfo
;
1556 TRACE("(hProv=%08lx, Algid=%08x, hKey=%08lx, dwFlags=%08x, phHash=%p)\n", hProv
, Algid
, hKey
,
1559 peaAlgidInfo
= get_algid_info(hProv
, Algid
);
1560 if (!peaAlgidInfo
) return FALSE
;
1564 SetLastError(NTE_BAD_FLAGS
);
1568 if (Algid
== CALG_MAC
|| Algid
== CALG_HMAC
|| Algid
== CALG_SCHANNEL_MASTER_HASH
||
1569 Algid
== CALG_TLS1PRF
)
1571 if (!lookup_handle(&handle_table
, hKey
, RSAENH_MAGIC_KEY
, (OBJECTHDR
**)&pCryptKey
)) {
1572 SetLastError(NTE_BAD_KEY
);
1576 if ((Algid
== CALG_MAC
) && (GET_ALG_TYPE(pCryptKey
->aiAlgid
) != ALG_TYPE_BLOCK
)) {
1577 SetLastError(NTE_BAD_KEY
);
1581 if ((Algid
== CALG_SCHANNEL_MASTER_HASH
|| Algid
== CALG_TLS1PRF
) &&
1582 (pCryptKey
->aiAlgid
!= CALG_TLS1_MASTER
))
1584 SetLastError(NTE_BAD_KEY
);
1588 if ((Algid
== CALG_TLS1PRF
) && (pCryptKey
->dwState
!= RSAENH_KEYSTATE_MASTERKEY
)) {
1589 SetLastError(NTE_BAD_KEY_STATE
);
1594 *phHash
= (HCRYPTHASH
)new_object(&handle_table
, sizeof(CRYPTHASH
), RSAENH_MAGIC_HASH
,
1595 destroy_hash
, (OBJECTHDR
**)&pCryptHash
);
1596 if (!pCryptHash
) return FALSE
;
1598 pCryptHash
->aiAlgid
= Algid
;
1599 pCryptHash
->hKey
= hKey
;
1600 pCryptHash
->hProv
= hProv
;
1601 pCryptHash
->dwState
= RSAENH_HASHSTATE_IDLE
;
1602 pCryptHash
->pHMACInfo
= (PHMAC_INFO
)NULL
;
1603 pCryptHash
->dwHashSize
= peaAlgidInfo
->dwDefaultLen
>> 3;
1604 init_data_blob(&pCryptHash
->tpPRFParams
.blobLabel
);
1605 init_data_blob(&pCryptHash
->tpPRFParams
.blobSeed
);
1607 if (Algid
== CALG_SCHANNEL_MASTER_HASH
) {
1608 static const char keyex
[] = "key expansion";
1609 BYTE key_expansion
[sizeof keyex
];
1610 CRYPT_DATA_BLOB blobRandom
, blobKeyExpansion
= { 13, key_expansion
};
1612 memcpy( key_expansion
, keyex
, sizeof keyex
);
1614 if (pCryptKey
->dwState
!= RSAENH_KEYSTATE_MASTERKEY
) {
1615 static const char msec
[] = "master secret";
1616 BYTE master_secret
[sizeof msec
];
1617 CRYPT_DATA_BLOB blobLabel
= { 13, master_secret
};
1618 BYTE abKeyValue
[48];
1620 memcpy( master_secret
, msec
, sizeof msec
);
1622 /* See RFC 2246, chapter 8.1 */
1623 if (!concat_data_blobs(&blobRandom
,
1624 &pCryptKey
->siSChannelInfo
.blobClientRandom
,
1625 &pCryptKey
->siSChannelInfo
.blobServerRandom
))
1629 tls1_prf(hProv
, hKey
, &blobLabel
, &blobRandom
, abKeyValue
, 48);
1630 pCryptKey
->dwState
= RSAENH_KEYSTATE_MASTERKEY
;
1631 memcpy(pCryptKey
->abKeyValue
, abKeyValue
, 48);
1632 free_data_blob(&blobRandom
);
1635 /* See RFC 2246, chapter 6.3 */
1636 if (!concat_data_blobs(&blobRandom
,
1637 &pCryptKey
->siSChannelInfo
.blobServerRandom
,
1638 &pCryptKey
->siSChannelInfo
.blobClientRandom
))
1642 tls1_prf(hProv
, hKey
, &blobKeyExpansion
, &blobRandom
, pCryptHash
->abHashValue
,
1643 RSAENH_MAX_HASH_SIZE
);
1644 free_data_blob(&blobRandom
);
1647 return init_hash(pCryptHash
);
1650 /******************************************************************************
1651 * CPDestroyHash (RSAENH.@)
1653 * Releases the handle to a hash object. The object is destroyed if it's reference
1654 * count reaches zero.
1657 * hProv [I] Handle to the key container to which the hash object belongs.
1658 * hHash [I] Handle to the hash object to be released.
1664 BOOL WINAPI
RSAENH_CPDestroyHash(HCRYPTPROV hProv
, HCRYPTHASH hHash
)
1666 TRACE("(hProv=%08lx, hHash=%08lx)\n", hProv
, hHash
);
1668 if (!is_valid_handle(&handle_table
, hProv
, RSAENH_MAGIC_CONTAINER
))
1670 SetLastError(NTE_BAD_UID
);
1674 if (!release_handle(&handle_table
, hHash
, RSAENH_MAGIC_HASH
))
1676 SetLastError(NTE_BAD_HASH
);
1683 /******************************************************************************
1684 * CPDestroyKey (RSAENH.@)
1686 * Releases the handle to a key object. The object is destroyed if it's reference
1687 * count reaches zero.
1690 * hProv [I] Handle to the key container to which the key object belongs.
1691 * hKey [I] Handle to the key object to be released.
1697 BOOL WINAPI
RSAENH_CPDestroyKey(HCRYPTPROV hProv
, HCRYPTKEY hKey
)
1699 TRACE("(hProv=%08lx, hKey=%08lx)\n", hProv
, hKey
);
1701 if (!is_valid_handle(&handle_table
, hProv
, RSAENH_MAGIC_CONTAINER
))
1703 SetLastError(NTE_BAD_UID
);
1707 if (!release_handle(&handle_table
, hKey
, RSAENH_MAGIC_KEY
))
1709 SetLastError(NTE_BAD_KEY
);
1716 /******************************************************************************
1717 * CPDuplicateHash (RSAENH.@)
1719 * Clones a hash object including it's current state.
1722 * hUID [I] Handle to the key container the hash belongs to.
1723 * hHash [I] Handle to the hash object to be cloned.
1724 * pdwReserved [I] Reserved. Must be NULL.
1725 * dwFlags [I] No flags are currently defined. Must be 0.
1726 * phHash [O] Handle to the cloned hash object.
1732 BOOL WINAPI
RSAENH_CPDuplicateHash(HCRYPTPROV hUID
, HCRYPTHASH hHash
, DWORD
*pdwReserved
,
1733 DWORD dwFlags
, HCRYPTHASH
*phHash
)
1735 CRYPTHASH
*pSrcHash
, *pDestHash
;
1737 TRACE("(hUID=%08lx, hHash=%08lx, pdwReserved=%p, dwFlags=%08x, phHash=%p)\n", hUID
, hHash
,
1738 pdwReserved
, dwFlags
, phHash
);
1740 if (!is_valid_handle(&handle_table
, hUID
, RSAENH_MAGIC_CONTAINER
))
1742 SetLastError(NTE_BAD_UID
);
1746 if (!lookup_handle(&handle_table
, hHash
, RSAENH_MAGIC_HASH
, (OBJECTHDR
**)&pSrcHash
))
1748 SetLastError(NTE_BAD_HASH
);
1752 if (!phHash
|| pdwReserved
|| dwFlags
)
1754 SetLastError(ERROR_INVALID_PARAMETER
);
1758 *phHash
= (HCRYPTHASH
)new_object(&handle_table
, sizeof(CRYPTHASH
), RSAENH_MAGIC_HASH
,
1759 destroy_hash
, (OBJECTHDR
**)&pDestHash
);
1760 if (*phHash
!= (HCRYPTHASH
)INVALID_HANDLE_VALUE
)
1762 memcpy(pDestHash
, pSrcHash
, sizeof(CRYPTHASH
));
1763 duplicate_hash_impl(pSrcHash
->aiAlgid
, &pSrcHash
->context
, &pDestHash
->context
);
1764 copy_hmac_info(&pDestHash
->pHMACInfo
, pSrcHash
->pHMACInfo
);
1765 copy_data_blob(&pDestHash
->tpPRFParams
.blobLabel
, &pSrcHash
->tpPRFParams
.blobLabel
);
1766 copy_data_blob(&pDestHash
->tpPRFParams
.blobSeed
, &pSrcHash
->tpPRFParams
.blobSeed
);
1769 return *phHash
!= (HCRYPTHASH
)INVALID_HANDLE_VALUE
;
1772 /******************************************************************************
1773 * CPDuplicateKey (RSAENH.@)
1775 * Clones a key object including it's current state.
1778 * hUID [I] Handle to the key container the hash belongs to.
1779 * hKey [I] Handle to the key object to be cloned.
1780 * pdwReserved [I] Reserved. Must be NULL.
1781 * dwFlags [I] No flags are currently defined. Must be 0.
1782 * phHash [O] Handle to the cloned key object.
1788 BOOL WINAPI
RSAENH_CPDuplicateKey(HCRYPTPROV hUID
, HCRYPTKEY hKey
, DWORD
*pdwReserved
,
1789 DWORD dwFlags
, HCRYPTKEY
*phKey
)
1791 CRYPTKEY
*pSrcKey
, *pDestKey
;
1793 TRACE("(hUID=%08lx, hKey=%08lx, pdwReserved=%p, dwFlags=%08x, phKey=%p)\n", hUID
, hKey
,
1794 pdwReserved
, dwFlags
, phKey
);
1796 if (!is_valid_handle(&handle_table
, hUID
, RSAENH_MAGIC_CONTAINER
))
1798 SetLastError(NTE_BAD_UID
);
1802 if (!lookup_handle(&handle_table
, hKey
, RSAENH_MAGIC_KEY
, (OBJECTHDR
**)&pSrcKey
))
1804 SetLastError(NTE_BAD_KEY
);
1808 if (!phKey
|| pdwReserved
|| dwFlags
)
1810 SetLastError(ERROR_INVALID_PARAMETER
);
1814 *phKey
= (HCRYPTKEY
)new_object(&handle_table
, sizeof(CRYPTKEY
), RSAENH_MAGIC_KEY
, destroy_key
,
1815 (OBJECTHDR
**)&pDestKey
);
1816 if (*phKey
!= (HCRYPTKEY
)INVALID_HANDLE_VALUE
)
1818 memcpy(pDestKey
, pSrcKey
, sizeof(CRYPTKEY
));
1819 copy_data_blob(&pDestKey
->siSChannelInfo
.blobServerRandom
,
1820 &pSrcKey
->siSChannelInfo
.blobServerRandom
);
1821 copy_data_blob(&pDestKey
->siSChannelInfo
.blobClientRandom
,
1822 &pSrcKey
->siSChannelInfo
.blobClientRandom
);
1823 duplicate_key_impl(pSrcKey
->aiAlgid
, &pSrcKey
->context
, &pDestKey
->context
);
1832 /******************************************************************************
1833 * CPEncrypt (RSAENH.@)
1838 * hProv [I] The key container hKey and hHash belong to.
1839 * hKey [I] The key used to encrypt the data.
1840 * hHash [I] An optional hash object for parallel hashing. See notes.
1841 * Final [I] Indicates if this is the last block of data to encrypt.
1842 * dwFlags [I] Currently no flags defined. Must be zero.
1843 * pbData [I/O] Pointer to the data to encrypt. Encrypted data will also be stored there.
1844 * pdwDataLen [I/O] I: Length of data to encrypt, O: Length of encrypted data.
1845 * dwBufLen [I] Size of the buffer at pbData.
1852 * If a hash object handle is provided in hHash, it will be updated with the plaintext.
1853 * This is useful for message signatures.
1855 * This function uses the standard WINAPI protocol for querying data of dynamic length.
1857 BOOL WINAPI
RSAENH_CPEncrypt(HCRYPTPROV hProv
, HCRYPTKEY hKey
, HCRYPTHASH hHash
, BOOL Final
,
1858 DWORD dwFlags
, BYTE
*pbData
, DWORD
*pdwDataLen
, DWORD dwBufLen
)
1860 CRYPTKEY
*pCryptKey
;
1861 BYTE
*in
, out
[RSAENH_MAX_BLOCK_SIZE
], o
[RSAENH_MAX_BLOCK_SIZE
];
1862 DWORD dwEncryptedLen
, i
, j
, k
;
1864 TRACE("(hProv=%08lx, hKey=%08lx, hHash=%08lx, Final=%d, dwFlags=%08x, pbData=%p, "
1865 "pdwDataLen=%p, dwBufLen=%d)\n", hProv
, hKey
, hHash
, Final
, dwFlags
, pbData
, pdwDataLen
,
1868 if (!is_valid_handle(&handle_table
, hProv
, RSAENH_MAGIC_CONTAINER
))
1870 SetLastError(NTE_BAD_UID
);
1876 SetLastError(NTE_BAD_FLAGS
);
1880 if (!lookup_handle(&handle_table
, hKey
, RSAENH_MAGIC_KEY
, (OBJECTHDR
**)&pCryptKey
))
1882 SetLastError(NTE_BAD_KEY
);
1886 if (pCryptKey
->dwState
== RSAENH_KEYSTATE_IDLE
)
1887 pCryptKey
->dwState
= RSAENH_KEYSTATE_ENCRYPTING
;
1889 if (pCryptKey
->dwState
!= RSAENH_KEYSTATE_ENCRYPTING
)
1891 SetLastError(NTE_BAD_DATA
);
1895 if (is_valid_handle(&handle_table
, hHash
, RSAENH_MAGIC_HASH
)) {
1896 if (!RSAENH_CPHashData(hProv
, hHash
, pbData
, *pdwDataLen
, 0)) return FALSE
;
1899 if (GET_ALG_TYPE(pCryptKey
->aiAlgid
) == ALG_TYPE_BLOCK
) {
1900 if (!Final
&& (*pdwDataLen
% pCryptKey
->dwBlockLen
)) {
1901 SetLastError(NTE_BAD_DATA
);
1905 dwEncryptedLen
= (*pdwDataLen
/pCryptKey
->dwBlockLen
+(Final
?1:0))*pCryptKey
->dwBlockLen
;
1907 if (pbData
== NULL
) {
1908 *pdwDataLen
= dwEncryptedLen
;
1912 for (i
=*pdwDataLen
; i
<dwEncryptedLen
&& i
<dwBufLen
; i
++) pbData
[i
] = dwEncryptedLen
- *pdwDataLen
;
1913 *pdwDataLen
= dwEncryptedLen
;
1915 if (*pdwDataLen
> dwBufLen
)
1917 SetLastError(ERROR_MORE_DATA
);
1921 for (i
=0, in
=pbData
; i
<*pdwDataLen
; i
+=pCryptKey
->dwBlockLen
, in
+=pCryptKey
->dwBlockLen
) {
1922 switch (pCryptKey
->dwMode
) {
1923 case CRYPT_MODE_ECB
:
1924 encrypt_block_impl(pCryptKey
->aiAlgid
, 0, &pCryptKey
->context
, in
, out
,
1928 case CRYPT_MODE_CBC
:
1929 for (j
=0; j
<pCryptKey
->dwBlockLen
; j
++) in
[j
] ^= pCryptKey
->abChainVector
[j
];
1930 encrypt_block_impl(pCryptKey
->aiAlgid
, 0, &pCryptKey
->context
, in
, out
,
1932 memcpy(pCryptKey
->abChainVector
, out
, pCryptKey
->dwBlockLen
);
1935 case CRYPT_MODE_CFB
:
1936 for (j
=0; j
<pCryptKey
->dwBlockLen
; j
++) {
1937 encrypt_block_impl(pCryptKey
->aiAlgid
, 0, &pCryptKey
->context
,
1938 pCryptKey
->abChainVector
, o
, RSAENH_ENCRYPT
);
1939 out
[j
] = in
[j
] ^ o
[0];
1940 for (k
=0; k
<pCryptKey
->dwBlockLen
-1; k
++)
1941 pCryptKey
->abChainVector
[k
] = pCryptKey
->abChainVector
[k
+1];
1942 pCryptKey
->abChainVector
[k
] = out
[j
];
1947 SetLastError(NTE_BAD_ALGID
);
1950 memcpy(in
, out
, pCryptKey
->dwBlockLen
);
1952 } else if (GET_ALG_TYPE(pCryptKey
->aiAlgid
) == ALG_TYPE_STREAM
) {
1953 if (pbData
== NULL
) {
1954 *pdwDataLen
= dwBufLen
;
1957 encrypt_stream_impl(pCryptKey
->aiAlgid
, &pCryptKey
->context
, pbData
, *pdwDataLen
);
1958 } else if (GET_ALG_TYPE(pCryptKey
->aiAlgid
) == ALG_TYPE_RSA
) {
1959 if (pCryptKey
->aiAlgid
== CALG_RSA_SIGN
) {
1960 SetLastError(NTE_BAD_KEY
);
1964 *pdwDataLen
= pCryptKey
->dwBlockLen
;
1967 if (dwBufLen
< pCryptKey
->dwBlockLen
) {
1968 SetLastError(ERROR_MORE_DATA
);
1971 if (!pad_data(pbData
, *pdwDataLen
, pbData
, pCryptKey
->dwBlockLen
, dwFlags
)) return FALSE
;
1972 encrypt_block_impl(pCryptKey
->aiAlgid
, PK_PUBLIC
, &pCryptKey
->context
, pbData
, pbData
, RSAENH_ENCRYPT
);
1973 *pdwDataLen
= pCryptKey
->dwBlockLen
;
1976 SetLastError(NTE_BAD_TYPE
);
1980 if (Final
) setup_key(pCryptKey
);
1985 /******************************************************************************
1986 * CPDecrypt (RSAENH.@)
1991 * hProv [I] The key container hKey and hHash belong to.
1992 * hKey [I] The key used to decrypt the data.
1993 * hHash [I] An optional hash object for parallel hashing. See notes.
1994 * Final [I] Indicates if this is the last block of data to decrypt.
1995 * dwFlags [I] Currently no flags defined. Must be zero.
1996 * pbData [I/O] Pointer to the data to decrypt. Plaintext will also be stored there.
1997 * pdwDataLen [I/O] I: Length of ciphertext, O: Length of plaintext.
2004 * If a hash object handle is provided in hHash, it will be updated with the plaintext.
2005 * This is useful for message signatures.
2007 * This function uses the standard WINAPI protocol for querying data of dynamic length.
2009 BOOL WINAPI
RSAENH_CPDecrypt(HCRYPTPROV hProv
, HCRYPTKEY hKey
, HCRYPTHASH hHash
, BOOL Final
,
2010 DWORD dwFlags
, BYTE
*pbData
, DWORD
*pdwDataLen
)
2012 CRYPTKEY
*pCryptKey
;
2013 BYTE
*in
, out
[RSAENH_MAX_BLOCK_SIZE
], o
[RSAENH_MAX_BLOCK_SIZE
];
2017 TRACE("(hProv=%08lx, hKey=%08lx, hHash=%08lx, Final=%d, dwFlags=%08x, pbData=%p, "
2018 "pdwDataLen=%p)\n", hProv
, hKey
, hHash
, Final
, dwFlags
, pbData
, pdwDataLen
);
2020 if (!is_valid_handle(&handle_table
, hProv
, RSAENH_MAGIC_CONTAINER
))
2022 SetLastError(NTE_BAD_UID
);
2028 SetLastError(NTE_BAD_FLAGS
);
2032 if (!lookup_handle(&handle_table
, hKey
, RSAENH_MAGIC_KEY
, (OBJECTHDR
**)&pCryptKey
))
2034 SetLastError(NTE_BAD_KEY
);
2038 if (pCryptKey
->dwState
== RSAENH_KEYSTATE_IDLE
)
2039 pCryptKey
->dwState
= RSAENH_KEYSTATE_DECRYPTING
;
2041 if (pCryptKey
->dwState
!= RSAENH_KEYSTATE_DECRYPTING
)
2043 SetLastError(NTE_BAD_DATA
);
2049 if (GET_ALG_TYPE(pCryptKey
->aiAlgid
) == ALG_TYPE_BLOCK
) {
2050 for (i
=0, in
=pbData
; i
<*pdwDataLen
; i
+=pCryptKey
->dwBlockLen
, in
+=pCryptKey
->dwBlockLen
) {
2051 switch (pCryptKey
->dwMode
) {
2052 case CRYPT_MODE_ECB
:
2053 encrypt_block_impl(pCryptKey
->aiAlgid
, 0, &pCryptKey
->context
, in
, out
,
2057 case CRYPT_MODE_CBC
:
2058 encrypt_block_impl(pCryptKey
->aiAlgid
, 0, &pCryptKey
->context
, in
, out
,
2060 for (j
=0; j
<pCryptKey
->dwBlockLen
; j
++) out
[j
] ^= pCryptKey
->abChainVector
[j
];
2061 memcpy(pCryptKey
->abChainVector
, in
, pCryptKey
->dwBlockLen
);
2064 case CRYPT_MODE_CFB
:
2065 for (j
=0; j
<pCryptKey
->dwBlockLen
; j
++) {
2066 encrypt_block_impl(pCryptKey
->aiAlgid
, 0, &pCryptKey
->context
,
2067 pCryptKey
->abChainVector
, o
, RSAENH_ENCRYPT
);
2068 out
[j
] = in
[j
] ^ o
[0];
2069 for (k
=0; k
<pCryptKey
->dwBlockLen
-1; k
++)
2070 pCryptKey
->abChainVector
[k
] = pCryptKey
->abChainVector
[k
+1];
2071 pCryptKey
->abChainVector
[k
] = in
[j
];
2076 SetLastError(NTE_BAD_ALGID
);
2079 memcpy(in
, out
, pCryptKey
->dwBlockLen
);
2081 if (Final
) *pdwDataLen
-= pbData
[*pdwDataLen
-1];
2083 } else if (GET_ALG_TYPE(pCryptKey
->aiAlgid
) == ALG_TYPE_STREAM
) {
2084 encrypt_stream_impl(pCryptKey
->aiAlgid
, &pCryptKey
->context
, pbData
, *pdwDataLen
);
2085 } else if (GET_ALG_TYPE(pCryptKey
->aiAlgid
) == ALG_TYPE_RSA
) {
2086 if (pCryptKey
->aiAlgid
== CALG_RSA_SIGN
) {
2087 SetLastError(NTE_BAD_KEY
);
2090 encrypt_block_impl(pCryptKey
->aiAlgid
, PK_PRIVATE
, &pCryptKey
->context
, pbData
, pbData
, RSAENH_DECRYPT
);
2091 if (!unpad_data(pbData
, pCryptKey
->dwBlockLen
, pbData
, pdwDataLen
, dwFlags
)) return FALSE
;
2094 SetLastError(NTE_BAD_TYPE
);
2098 if (Final
) setup_key(pCryptKey
);
2100 if (is_valid_handle(&handle_table
, hHash
, RSAENH_MAGIC_HASH
)) {
2101 if (*pdwDataLen
>dwMax
||
2102 !RSAENH_CPHashData(hProv
, hHash
, pbData
, *pdwDataLen
, 0)) return FALSE
;
2108 /******************************************************************************
2109 * CPExportKey (RSAENH.@)
2111 * Export a key into a binary large object (BLOB).
2114 * hProv [I] Key container from which a key is to be exported.
2115 * hKey [I] Key to be exported.
2116 * hPubKey [I] Key used to encrypt sensitive BLOB data.
2117 * dwBlobType [I] SIMPLEBLOB, PUBLICKEYBLOB or PRIVATEKEYBLOB.
2118 * dwFlags [I] Currently none defined.
2119 * pbData [O] Pointer to a buffer where the BLOB will be written to.
2120 * pdwDataLen [I/O] I: Size of buffer at pbData, O: Size of BLOB
2126 BOOL WINAPI
RSAENH_CPExportKey(HCRYPTPROV hProv
, HCRYPTKEY hKey
, HCRYPTKEY hPubKey
,
2127 DWORD dwBlobType
, DWORD dwFlags
, BYTE
*pbData
, DWORD
*pdwDataLen
)
2129 CRYPTKEY
*pCryptKey
, *pPubKey
;
2130 BLOBHEADER
*pBlobHeader
= (BLOBHEADER
*)pbData
;
2131 RSAPUBKEY
*pRSAPubKey
= (RSAPUBKEY
*)(pBlobHeader
+1);
2132 ALG_ID
*pAlgid
= (ALG_ID
*)(pBlobHeader
+1);
2135 TRACE("(hProv=%08lx, hKey=%08lx, hPubKey=%08lx, dwBlobType=%08x, dwFlags=%08x, pbData=%p,"
2136 "pdwDataLen=%p)\n", hProv
, hKey
, hPubKey
, dwBlobType
, dwFlags
, pbData
, pdwDataLen
);
2138 if (!is_valid_handle(&handle_table
, hProv
, RSAENH_MAGIC_CONTAINER
))
2140 SetLastError(NTE_BAD_UID
);
2144 if (!lookup_handle(&handle_table
, hKey
, RSAENH_MAGIC_KEY
, (OBJECTHDR
**)&pCryptKey
))
2146 SetLastError(NTE_BAD_KEY
);
2150 if (dwFlags
& CRYPT_SSL2_FALLBACK
) {
2151 if (pCryptKey
->aiAlgid
!= CALG_SSL2_MASTER
) {
2152 SetLastError(NTE_BAD_KEY
);
2157 switch ((BYTE
)dwBlobType
)
2160 if (!lookup_handle(&handle_table
, hPubKey
, RSAENH_MAGIC_KEY
, (OBJECTHDR
**)&pPubKey
)){
2161 SetLastError(NTE_BAD_PUBLIC_KEY
); /* FIXME: error_code? */
2165 if (!(GET_ALG_CLASS(pCryptKey
->aiAlgid
)&(ALG_CLASS_DATA_ENCRYPT
|ALG_CLASS_MSG_ENCRYPT
))) {
2166 SetLastError(NTE_BAD_KEY
); /* FIXME: error code? */
2170 dwDataLen
= sizeof(BLOBHEADER
) + sizeof(ALG_ID
) + pPubKey
->dwBlockLen
;
2172 if (*pdwDataLen
< dwDataLen
) {
2173 SetLastError(ERROR_MORE_DATA
);
2174 *pdwDataLen
= dwDataLen
;
2178 pBlobHeader
->bType
= SIMPLEBLOB
;
2179 pBlobHeader
->bVersion
= CUR_BLOB_VERSION
;
2180 pBlobHeader
->reserved
= 0;
2181 pBlobHeader
->aiKeyAlg
= pCryptKey
->aiAlgid
;
2183 *pAlgid
= pPubKey
->aiAlgid
;
2185 if (!pad_data(pCryptKey
->abKeyValue
, pCryptKey
->dwKeyLen
, (BYTE
*)(pAlgid
+1),
2186 pPubKey
->dwBlockLen
, dwFlags
))
2191 encrypt_block_impl(pPubKey
->aiAlgid
, PK_PUBLIC
, &pPubKey
->context
, (BYTE
*)(pAlgid
+1),
2192 (BYTE
*)(pAlgid
+1), RSAENH_ENCRYPT
);
2194 *pdwDataLen
= dwDataLen
;
2198 if (is_valid_handle(&handle_table
, hPubKey
, RSAENH_MAGIC_KEY
)) {
2199 SetLastError(NTE_BAD_KEY
); /* FIXME: error code? */
2203 if ((pCryptKey
->aiAlgid
!= CALG_RSA_KEYX
) && (pCryptKey
->aiAlgid
!= CALG_RSA_SIGN
)) {
2204 SetLastError(NTE_BAD_KEY
);
2208 dwDataLen
= sizeof(BLOBHEADER
) + sizeof(RSAPUBKEY
) + pCryptKey
->dwKeyLen
;
2210 if (*pdwDataLen
< dwDataLen
) {
2211 SetLastError(ERROR_MORE_DATA
);
2212 *pdwDataLen
= dwDataLen
;
2216 pBlobHeader
->bType
= PUBLICKEYBLOB
;
2217 pBlobHeader
->bVersion
= CUR_BLOB_VERSION
;
2218 pBlobHeader
->reserved
= 0;
2219 pBlobHeader
->aiKeyAlg
= pCryptKey
->aiAlgid
;
2221 pRSAPubKey
->magic
= RSAENH_MAGIC_RSA1
;
2222 pRSAPubKey
->bitlen
= pCryptKey
->dwKeyLen
<< 3;
2224 export_public_key_impl((BYTE
*)(pRSAPubKey
+1), &pCryptKey
->context
,
2225 pCryptKey
->dwKeyLen
, &pRSAPubKey
->pubexp
);
2227 *pdwDataLen
= dwDataLen
;
2230 case PRIVATEKEYBLOB
:
2231 if ((pCryptKey
->aiAlgid
!= CALG_RSA_KEYX
) && (pCryptKey
->aiAlgid
!= CALG_RSA_SIGN
)) {
2232 SetLastError(NTE_BAD_KEY
);
2236 dwDataLen
= sizeof(BLOBHEADER
) + sizeof(RSAPUBKEY
) +
2237 2 * pCryptKey
->dwKeyLen
+ 5 * ((pCryptKey
->dwKeyLen
+ 1) >> 1);
2239 if (*pdwDataLen
< dwDataLen
) {
2240 SetLastError(ERROR_MORE_DATA
);
2241 *pdwDataLen
= dwDataLen
;
2245 pBlobHeader
->bType
= PRIVATEKEYBLOB
;
2246 pBlobHeader
->bVersion
= CUR_BLOB_VERSION
;
2247 pBlobHeader
->reserved
= 0;
2248 pBlobHeader
->aiKeyAlg
= pCryptKey
->aiAlgid
;
2250 pRSAPubKey
->magic
= RSAENH_MAGIC_RSA2
;
2251 pRSAPubKey
->bitlen
= pCryptKey
->dwKeyLen
<< 3;
2253 export_private_key_impl((BYTE
*)(pRSAPubKey
+1), &pCryptKey
->context
,
2254 pCryptKey
->dwKeyLen
, &pRSAPubKey
->pubexp
);
2256 *pdwDataLen
= dwDataLen
;
2260 SetLastError(NTE_BAD_TYPE
); /* FIXME: error code? */
2265 /******************************************************************************
2266 * CPImportKey (RSAENH.@)
2268 * Import a BLOB'ed key into a key container.
2271 * hProv [I] Key container into which the key is to be imported.
2272 * pbData [I] Pointer to a buffer which holds the BLOB.
2273 * dwDataLen [I] Length of data in buffer at pbData.
2274 * hPubKey [I] Key used to decrypt sensitive BLOB data.
2275 * dwFlags [I] Currently none defined.
2276 * phKey [O] Handle to the imported key.
2282 BOOL WINAPI
RSAENH_CPImportKey(HCRYPTPROV hProv
, CONST BYTE
*pbData
, DWORD dwDataLen
,
2283 HCRYPTKEY hPubKey
, DWORD dwFlags
, HCRYPTKEY
*phKey
)
2285 KEYCONTAINER
*pKeyContainer
;
2286 CRYPTKEY
*pCryptKey
, *pPubKey
;
2287 CONST BLOBHEADER
*pBlobHeader
= (CONST BLOBHEADER
*)pbData
;
2288 CONST RSAPUBKEY
*pRSAPubKey
= (CONST RSAPUBKEY
*)(pBlobHeader
+1);
2289 CONST ALG_ID
*pAlgid
= (CONST ALG_ID
*)(pBlobHeader
+1);
2290 CONST BYTE
*pbKeyStream
= (CONST BYTE
*)(pAlgid
+ 1);
2296 TRACE("(hProv=%08lx, pbData=%p, dwDataLen=%d, hPubKey=%08lx, dwFlags=%08x, phKey=%p)\n",
2297 hProv
, pbData
, dwDataLen
, hPubKey
, dwFlags
, phKey
);
2299 if (!lookup_handle(&handle_table
, hProv
, RSAENH_MAGIC_CONTAINER
,
2300 (OBJECTHDR
**)&pKeyContainer
))
2302 SetLastError(NTE_BAD_UID
);
2306 if (dwDataLen
< sizeof(BLOBHEADER
) ||
2307 pBlobHeader
->bVersion
!= CUR_BLOB_VERSION
||
2308 pBlobHeader
->reserved
!= 0)
2310 SetLastError(NTE_BAD_DATA
);
2314 switch (pBlobHeader
->bType
)
2316 case PRIVATEKEYBLOB
:
2317 if ((dwDataLen
< sizeof(BLOBHEADER
) + sizeof(RSAPUBKEY
)) ||
2318 (pRSAPubKey
->magic
!= RSAENH_MAGIC_RSA2
) ||
2319 (dwDataLen
< sizeof(BLOBHEADER
) + sizeof(RSAPUBKEY
) +
2320 (2 * pRSAPubKey
->bitlen
>> 3) + (5 * ((pRSAPubKey
->bitlen
+8)>>4))))
2322 SetLastError(NTE_BAD_DATA
);
2326 *phKey
= new_key(hProv
, pBlobHeader
->aiKeyAlg
, MAKELONG(0,pRSAPubKey
->bitlen
), &pCryptKey
);
2327 if (*phKey
== (HCRYPTKEY
)INVALID_HANDLE_VALUE
) return FALSE
;
2328 setup_key(pCryptKey
);
2329 ret
= import_private_key_impl((CONST BYTE
*)(pRSAPubKey
+1), &pCryptKey
->context
,
2330 pRSAPubKey
->bitlen
/8, pRSAPubKey
->pubexp
);
2332 switch (pBlobHeader
->aiKeyAlg
)
2336 TRACE("installing signing key\n");
2337 RSAENH_CPDestroyKey(hProv
, pKeyContainer
->hSignatureKeyPair
);
2338 copy_handle(&handle_table
, *phKey
, RSAENH_MAGIC_KEY
,
2339 &pKeyContainer
->hSignatureKeyPair
);
2341 case AT_KEYEXCHANGE
:
2343 TRACE("installing key exchange key\n");
2344 RSAENH_CPDestroyKey(hProv
, pKeyContainer
->hKeyExchangeKeyPair
);
2345 copy_handle(&handle_table
, *phKey
, RSAENH_MAGIC_KEY
,
2346 &pKeyContainer
->hKeyExchangeKeyPair
);
2353 if ((dwDataLen
< sizeof(BLOBHEADER
) + sizeof(RSAPUBKEY
)) ||
2354 (pRSAPubKey
->magic
!= RSAENH_MAGIC_RSA1
) ||
2355 (dwDataLen
< sizeof(BLOBHEADER
) + sizeof(RSAPUBKEY
) + (pRSAPubKey
->bitlen
>> 3)))
2357 SetLastError(NTE_BAD_DATA
);
2361 /* Since this is a public key blob, only the public key is
2362 * available, so only signature verification is possible.
2364 algID
= pBlobHeader
->aiKeyAlg
;
2365 *phKey
= new_key(hProv
, algID
, MAKELONG(0,pRSAPubKey
->bitlen
), &pCryptKey
);
2366 if (*phKey
== (HCRYPTKEY
)INVALID_HANDLE_VALUE
) return FALSE
;
2367 setup_key(pCryptKey
);
2368 ret
= import_public_key_impl((CONST BYTE
*)(pRSAPubKey
+1), &pCryptKey
->context
,
2369 pRSAPubKey
->bitlen
>> 3, pRSAPubKey
->pubexp
);
2371 switch (pBlobHeader
->aiKeyAlg
)
2373 case AT_KEYEXCHANGE
:
2375 TRACE("installing public key\n");
2376 RSAENH_CPDestroyKey(hProv
, pKeyContainer
->hKeyExchangeKeyPair
);
2377 copy_handle(&handle_table
, *phKey
, RSAENH_MAGIC_KEY
,
2378 &pKeyContainer
->hKeyExchangeKeyPair
);
2385 if (!lookup_handle(&handle_table
, hPubKey
, RSAENH_MAGIC_KEY
, (OBJECTHDR
**)&pPubKey
) ||
2386 pPubKey
->aiAlgid
!= CALG_RSA_KEYX
)
2388 SetLastError(NTE_BAD_PUBLIC_KEY
); /* FIXME: error code? */
2392 if (dwDataLen
< sizeof(BLOBHEADER
)+sizeof(ALG_ID
)+pPubKey
->dwBlockLen
)
2394 SetLastError(NTE_BAD_DATA
); /* FIXME: error code */
2398 pbDecrypted
= HeapAlloc(GetProcessHeap(), 0, pPubKey
->dwBlockLen
);
2399 if (!pbDecrypted
) return FALSE
;
2400 encrypt_block_impl(pPubKey
->aiAlgid
, PK_PRIVATE
, &pPubKey
->context
, pbKeyStream
, pbDecrypted
,
2403 dwKeyLen
= RSAENH_MAX_KEY_SIZE
;
2404 if (!unpad_data(pbDecrypted
, pPubKey
->dwBlockLen
, pbDecrypted
, &dwKeyLen
, dwFlags
)) {
2405 HeapFree(GetProcessHeap(), 0, pbDecrypted
);
2409 *phKey
= new_key(hProv
, pBlobHeader
->aiKeyAlg
, dwKeyLen
<<19, &pCryptKey
);
2410 if (*phKey
== (HCRYPTKEY
)INVALID_HANDLE_VALUE
)
2412 HeapFree(GetProcessHeap(), 0, pbDecrypted
);
2415 memcpy(pCryptKey
->abKeyValue
, pbDecrypted
, dwKeyLen
);
2416 HeapFree(GetProcessHeap(), 0, pbDecrypted
);
2417 setup_key(pCryptKey
);
2421 SetLastError(NTE_BAD_TYPE
); /* FIXME: error code? */
2426 /******************************************************************************
2427 * CPGenKey (RSAENH.@)
2429 * Generate a key in the key container
2432 * hProv [I] Key container for which a key is to be generated.
2433 * Algid [I] Crypto algorithm identifier for the key to be generated.
2434 * dwFlags [I] Upper 16 bits: Binary length of key. Lower 16 bits: Flags. See Notes
2435 * phKey [O] Handle to the generated key.
2442 * Flags currently not considered.
2445 * Private key-exchange- and signature-keys can be generated with Algid AT_KEYEXCHANGE
2446 * and AT_SIGNATURE values.
2448 BOOL WINAPI
RSAENH_CPGenKey(HCRYPTPROV hProv
, ALG_ID Algid
, DWORD dwFlags
, HCRYPTKEY
*phKey
)
2450 KEYCONTAINER
*pKeyContainer
;
2451 CRYPTKEY
*pCryptKey
;
2453 TRACE("(hProv=%08lx, aiAlgid=%d, dwFlags=%08x, phKey=%p)\n", hProv
, Algid
, dwFlags
, phKey
);
2455 if (!lookup_handle(&handle_table
, hProv
, RSAENH_MAGIC_CONTAINER
,
2456 (OBJECTHDR
**)&pKeyContainer
))
2458 /* MSDN: hProv not containing valid context handle */
2459 SetLastError(NTE_BAD_UID
);
2467 *phKey
= new_key(hProv
, CALG_RSA_SIGN
, dwFlags
, &pCryptKey
);
2469 new_key_impl(pCryptKey
->aiAlgid
, &pCryptKey
->context
, pCryptKey
->dwKeyLen
);
2470 setup_key(pCryptKey
);
2471 if (Algid
== AT_SIGNATURE
) {
2472 RSAENH_CPDestroyKey(hProv
, pKeyContainer
->hSignatureKeyPair
);
2473 copy_handle(&handle_table
, *phKey
, RSAENH_MAGIC_KEY
,
2474 &pKeyContainer
->hSignatureKeyPair
);
2479 case AT_KEYEXCHANGE
:
2481 *phKey
= new_key(hProv
, CALG_RSA_KEYX
, dwFlags
, &pCryptKey
);
2483 new_key_impl(pCryptKey
->aiAlgid
, &pCryptKey
->context
, pCryptKey
->dwKeyLen
);
2484 setup_key(pCryptKey
);
2485 if (Algid
== AT_KEYEXCHANGE
) {
2486 RSAENH_CPDestroyKey(hProv
, pKeyContainer
->hKeyExchangeKeyPair
);
2487 copy_handle(&handle_table
, *phKey
, RSAENH_MAGIC_KEY
,
2488 &pKeyContainer
->hKeyExchangeKeyPair
);
2498 case CALG_PCT1_MASTER
:
2499 case CALG_SSL2_MASTER
:
2500 case CALG_SSL3_MASTER
:
2501 case CALG_TLS1_MASTER
:
2502 *phKey
= new_key(hProv
, Algid
, dwFlags
, &pCryptKey
);
2504 gen_rand_impl(pCryptKey
->abKeyValue
, RSAENH_MAX_KEY_SIZE
);
2506 case CALG_SSL3_MASTER
:
2507 pCryptKey
->abKeyValue
[0] = RSAENH_SSL3_VERSION_MAJOR
;
2508 pCryptKey
->abKeyValue
[1] = RSAENH_SSL3_VERSION_MINOR
;
2511 case CALG_TLS1_MASTER
:
2512 pCryptKey
->abKeyValue
[0] = RSAENH_TLS1_VERSION_MAJOR
;
2513 pCryptKey
->abKeyValue
[1] = RSAENH_TLS1_VERSION_MINOR
;
2516 setup_key(pCryptKey
);
2521 /* MSDN: Algorithm not supported specified by Algid */
2522 SetLastError(NTE_BAD_ALGID
);
2526 return *phKey
!= (HCRYPTKEY
)INVALID_HANDLE_VALUE
;
2529 /******************************************************************************
2530 * CPGenRandom (RSAENH.@)
2532 * Generate a random byte stream.
2535 * hProv [I] Key container that is used to generate random bytes.
2536 * dwLen [I] Specifies the number of requested random data bytes.
2537 * pbBuffer [O] Random bytes will be stored here.
2543 BOOL WINAPI
RSAENH_CPGenRandom(HCRYPTPROV hProv
, DWORD dwLen
, BYTE
*pbBuffer
)
2545 TRACE("(hProv=%08lx, dwLen=%d, pbBuffer=%p)\n", hProv
, dwLen
, pbBuffer
);
2547 if (!is_valid_handle(&handle_table
, hProv
, RSAENH_MAGIC_CONTAINER
))
2549 /* MSDN: hProv not containing valid context handle */
2550 SetLastError(NTE_BAD_UID
);
2554 return gen_rand_impl(pbBuffer
, dwLen
);
2557 /******************************************************************************
2558 * CPGetHashParam (RSAENH.@)
2560 * Query parameters of an hash object.
2563 * hProv [I] The kea container, which the hash belongs to.
2564 * hHash [I] The hash object that is to be queried.
2565 * dwParam [I] Specifies the parameter that is to be queried.
2566 * pbData [I] Pointer to the buffer where the parameter value will be stored.
2567 * pdwDataLen [I/O] I: Buffer length at pbData, O: Length of the parameter value.
2568 * dwFlags [I] None currently defined.
2575 * Valid dwParams are: HP_ALGID, HP_HASHSIZE, HP_HASHVALUE. The hash will be
2576 * finalized if HP_HASHVALUE is queried.
2578 BOOL WINAPI
RSAENH_CPGetHashParam(HCRYPTPROV hProv
, HCRYPTHASH hHash
, DWORD dwParam
, BYTE
*pbData
,
2579 DWORD
*pdwDataLen
, DWORD dwFlags
)
2581 CRYPTHASH
*pCryptHash
;
2583 TRACE("(hProv=%08lx, hHash=%08lx, dwParam=%08x, pbData=%p, pdwDataLen=%p, dwFlags=%08x)\n",
2584 hProv
, hHash
, dwParam
, pbData
, pdwDataLen
, dwFlags
);
2586 if (!is_valid_handle(&handle_table
, hProv
, RSAENH_MAGIC_CONTAINER
))
2588 SetLastError(NTE_BAD_UID
);
2594 SetLastError(NTE_BAD_FLAGS
);
2598 if (!lookup_handle(&handle_table
, hHash
, RSAENH_MAGIC_HASH
,
2599 (OBJECTHDR
**)&pCryptHash
))
2601 SetLastError(NTE_BAD_HASH
);
2607 SetLastError(ERROR_INVALID_PARAMETER
);
2614 return copy_param(pbData
, pdwDataLen
, (CONST BYTE
*)&pCryptHash
->aiAlgid
,
2618 return copy_param(pbData
, pdwDataLen
, (CONST BYTE
*)&pCryptHash
->dwHashSize
,
2622 if (pCryptHash
->aiAlgid
== CALG_TLS1PRF
) {
2623 return tls1_prf(hProv
, pCryptHash
->hKey
, &pCryptHash
->tpPRFParams
.blobLabel
,
2624 &pCryptHash
->tpPRFParams
.blobSeed
, pbData
, *pdwDataLen
);
2627 if ( pbData
== NULL
) {
2628 *pdwDataLen
= pCryptHash
->dwHashSize
;
2632 if (pCryptHash
->dwState
== RSAENH_HASHSTATE_IDLE
) {
2633 SetLastError(NTE_BAD_HASH_STATE
);
2637 if (pbData
&& (pCryptHash
->dwState
!= RSAENH_HASHSTATE_FINISHED
))
2639 finalize_hash(pCryptHash
);
2640 pCryptHash
->dwState
= RSAENH_HASHSTATE_FINISHED
;
2643 return copy_param(pbData
, pdwDataLen
, (CONST BYTE
*)pCryptHash
->abHashValue
,
2644 pCryptHash
->dwHashSize
);
2647 SetLastError(NTE_BAD_TYPE
);
2652 /******************************************************************************
2653 * CPSetKeyParam (RSAENH.@)
2655 * Set a parameter of a key object
2658 * hProv [I] The key container to which the key belongs.
2659 * hKey [I] The key for which a parameter is to be set.
2660 * dwParam [I] Parameter type. See Notes.
2661 * pbData [I] Pointer to the parameter value.
2662 * dwFlags [I] Currently none defined.
2669 * Defined dwParam types are:
2670 * - KP_MODE: Values MODE_CBC, MODE_ECB, MODE_CFB.
2671 * - KP_MODE_BITS: Shift width for cipher feedback mode. (Currently ignored by MS CSP's)
2672 * - KP_PERMISSIONS: Or'ed combination of CRYPT_ENCRYPT, CRYPT_DECRYPT,
2673 * CRYPT_EXPORT, CRYPT_READ, CRYPT_WRITE, CRYPT_MAC
2674 * - KP_IV: Initialization vector
2676 BOOL WINAPI
RSAENH_CPSetKeyParam(HCRYPTPROV hProv
, HCRYPTKEY hKey
, DWORD dwParam
, BYTE
*pbData
,
2679 CRYPTKEY
*pCryptKey
;
2681 TRACE("(hProv=%08lx, hKey=%08lx, dwParam=%08x, pbData=%p, dwFlags=%08x)\n", hProv
, hKey
,
2682 dwParam
, pbData
, dwFlags
);
2684 if (!is_valid_handle(&handle_table
, hProv
, RSAENH_MAGIC_CONTAINER
))
2686 SetLastError(NTE_BAD_UID
);
2691 SetLastError(NTE_BAD_FLAGS
);
2695 if (!lookup_handle(&handle_table
, hKey
, RSAENH_MAGIC_KEY
, (OBJECTHDR
**)&pCryptKey
))
2697 SetLastError(NTE_BAD_KEY
);
2703 pCryptKey
->dwMode
= *(DWORD
*)pbData
;
2707 pCryptKey
->dwModeBits
= *(DWORD
*)pbData
;
2710 case KP_PERMISSIONS
:
2711 pCryptKey
->dwPermissions
= *(DWORD
*)pbData
;
2715 memcpy(pCryptKey
->abInitVector
, pbData
, pCryptKey
->dwBlockLen
);
2718 case KP_SCHANNEL_ALG
:
2719 switch (((PSCHANNEL_ALG
)pbData
)->dwUse
) {
2720 case SCHANNEL_ENC_KEY
:
2721 memcpy(&pCryptKey
->siSChannelInfo
.saEncAlg
, pbData
, sizeof(SCHANNEL_ALG
));
2724 case SCHANNEL_MAC_KEY
:
2725 memcpy(&pCryptKey
->siSChannelInfo
.saMACAlg
, pbData
, sizeof(SCHANNEL_ALG
));
2729 SetLastError(NTE_FAIL
); /* FIXME: error code */
2734 case KP_CLIENT_RANDOM
:
2735 return copy_data_blob(&pCryptKey
->siSChannelInfo
.blobClientRandom
, (PCRYPT_DATA_BLOB
)pbData
);
2737 case KP_SERVER_RANDOM
:
2738 return copy_data_blob(&pCryptKey
->siSChannelInfo
.blobServerRandom
, (PCRYPT_DATA_BLOB
)pbData
);
2741 SetLastError(NTE_BAD_TYPE
);
2746 /******************************************************************************
2747 * CPGetKeyParam (RSAENH.@)
2749 * Query a key parameter.
2752 * hProv [I] The key container, which the key belongs to.
2753 * hHash [I] The key object that is to be queried.
2754 * dwParam [I] Specifies the parameter that is to be queried.
2755 * pbData [I] Pointer to the buffer where the parameter value will be stored.
2756 * pdwDataLen [I/O] I: Buffer length at pbData, O: Length of the parameter value.
2757 * dwFlags [I] None currently defined.
2764 * Defined dwParam types are:
2765 * - KP_MODE: Values MODE_CBC, MODE_ECB, MODE_CFB.
2766 * - KP_MODE_BITS: Shift width for cipher feedback mode.
2767 * (Currently ignored by MS CSP's - always eight)
2768 * - KP_PERMISSIONS: Or'ed combination of CRYPT_ENCRYPT, CRYPT_DECRYPT,
2769 * CRYPT_EXPORT, CRYPT_READ, CRYPT_WRITE, CRYPT_MAC
2770 * - KP_IV: Initialization vector.
2771 * - KP_KEYLEN: Bitwidth of the key.
2772 * - KP_BLOCKLEN: Size of a block cipher block.
2773 * - KP_SALT: Salt value.
2775 BOOL WINAPI
RSAENH_CPGetKeyParam(HCRYPTPROV hProv
, HCRYPTKEY hKey
, DWORD dwParam
, BYTE
*pbData
,
2776 DWORD
*pdwDataLen
, DWORD dwFlags
)
2778 CRYPTKEY
*pCryptKey
;
2781 TRACE("(hProv=%08lx, hKey=%08lx, dwParam=%08x, pbData=%p, pdwDataLen=%p dwFlags=%08x)\n",
2782 hProv
, hKey
, dwParam
, pbData
, pdwDataLen
, dwFlags
);
2784 if (!is_valid_handle(&handle_table
, hProv
, RSAENH_MAGIC_CONTAINER
))
2786 SetLastError(NTE_BAD_UID
);
2791 SetLastError(NTE_BAD_FLAGS
);
2795 if (!lookup_handle(&handle_table
, hKey
, RSAENH_MAGIC_KEY
, (OBJECTHDR
**)&pCryptKey
))
2797 SetLastError(NTE_BAD_KEY
);
2804 return copy_param(pbData
, pdwDataLen
, (CONST BYTE
*)pCryptKey
->abInitVector
,
2805 pCryptKey
->dwBlockLen
);
2808 return copy_param(pbData
, pdwDataLen
,
2809 (CONST BYTE
*)&pCryptKey
->abKeyValue
[pCryptKey
->dwKeyLen
], pCryptKey
->dwSaltLen
);
2812 dwBitLen
= pCryptKey
->dwKeyLen
<< 3;
2813 return copy_param(pbData
, pdwDataLen
, (CONST BYTE
*)&dwBitLen
, sizeof(DWORD
));
2816 dwBitLen
= pCryptKey
->dwBlockLen
<< 3;
2817 return copy_param(pbData
, pdwDataLen
, (CONST BYTE
*)&dwBitLen
, sizeof(DWORD
));
2820 return copy_param(pbData
, pdwDataLen
, (CONST BYTE
*)&pCryptKey
->dwMode
, sizeof(DWORD
));
2823 return copy_param(pbData
, pdwDataLen
, (CONST BYTE
*)&pCryptKey
->dwModeBits
,
2826 case KP_PERMISSIONS
:
2827 return copy_param(pbData
, pdwDataLen
, (CONST BYTE
*)&pCryptKey
->dwPermissions
,
2831 return copy_param(pbData
, pdwDataLen
, (CONST BYTE
*)&pCryptKey
->aiAlgid
, sizeof(DWORD
));
2834 SetLastError(NTE_BAD_TYPE
);
2839 /******************************************************************************
2840 * CPGetProvParam (RSAENH.@)
2842 * Query a CSP parameter.
2845 * hProv [I] The key container that is to be queried.
2846 * dwParam [I] Specifies the parameter that is to be queried.
2847 * pbData [I] Pointer to the buffer where the parameter value will be stored.
2848 * pdwDataLen [I/O] I: Buffer length at pbData, O: Length of the parameter value.
2849 * dwFlags [I] CRYPT_FIRST: Start enumeration (for PP_ENUMALGS{_EX}).
2855 * Defined dwParam types:
2856 * - PP_CONTAINER: Name of the key container.
2857 * - PP_NAME: Name of the cryptographic service provider.
2858 * - PP_SIG_KEYSIZE_INC: RSA signature keywidth granularity in bits.
2859 * - PP_KEYX_KEYSIZE_INC: RSA key-exchange keywidth granularity in bits.
2860 * - PP_ENUMALGS{_EX}: Query provider capabilities.
2862 BOOL WINAPI
RSAENH_CPGetProvParam(HCRYPTPROV hProv
, DWORD dwParam
, BYTE
*pbData
,
2863 DWORD
*pdwDataLen
, DWORD dwFlags
)
2865 KEYCONTAINER
*pKeyContainer
;
2866 PROV_ENUMALGS provEnumalgs
;
2868 CHAR szRSABase
[MAX_PATH
];
2869 HKEY hKey
, hRootKey
;
2871 /* This is for dwParam 41, which does not seem to be documented
2872 * on MSDN. IE6 SP1 asks for it in the 'About' dialog, however.
2873 * Returning this BLOB seems to satisfy IE. The marked 0x00 seem
2874 * to be 'don't care's. If you know anything more specific about
2875 * provider parameter 41, please report to wine-devel@winehq.org */
2876 static CONST BYTE abWTF
[96] = {
2877 0xb0, 0x25, 0x63, 0x86, 0x9c, 0xab, 0xb6, 0x37,
2878 0xe8, 0x82, /**/0x00,/**/ 0x72, 0x06, 0xb2, /**/0x00,/**/ 0x3b,
2879 0x60, 0x35, /**/0x00,/**/ 0x3b, 0x88, 0xce, /**/0x00,/**/ 0x82,
2880 0xbc, 0x7a, /**/0x00,/**/ 0xb7, 0x4f, 0x7e, /**/0x00,/**/ 0xde,
2881 0x92, 0xf1, /**/0x00,/**/ 0x83, 0xea, 0x5e, /**/0x00,/**/ 0xc8,
2882 0x12, 0x1e, 0xd4, 0x06, 0xf7, 0x66, /**/0x00,/**/ 0x01,
2883 0x29, 0xa4, /**/0x00,/**/ 0xf8, 0x24, 0x0c, /**/0x00,/**/ 0x33,
2884 0x06, 0x80, /**/0x00,/**/ 0x02, 0x46, 0x0b, /**/0x00,/**/ 0x6d,
2885 0x5b, 0xca, /**/0x00,/**/ 0x9a, 0x10, 0xf0, /**/0x00,/**/ 0x05,
2886 0x19, 0xd0, /**/0x00,/**/ 0x2c, 0xf6, 0x27, /**/0x00,/**/ 0xaa,
2887 0x7c, 0x6f, /**/0x00,/**/ 0xb9, 0xd8, 0x72, /**/0x00,/**/ 0x03,
2888 0xf3, 0x81, /**/0x00,/**/ 0xfa, 0xe8, 0x26, /**/0x00,/**/ 0xca
2891 TRACE("(hProv=%08lx, dwParam=%08x, pbData=%p, pdwDataLen=%p, dwFlags=%08x)\n",
2892 hProv
, dwParam
, pbData
, pdwDataLen
, dwFlags
);
2895 SetLastError(ERROR_INVALID_PARAMETER
);
2899 if (!lookup_handle(&handle_table
, hProv
, RSAENH_MAGIC_CONTAINER
,
2900 (OBJECTHDR
**)&pKeyContainer
))
2902 /* MSDN: hProv not containing valid context handle */
2903 SetLastError(NTE_BAD_UID
);
2910 return copy_param(pbData
, pdwDataLen
, (CONST BYTE
*)pKeyContainer
->szName
,
2911 strlen(pKeyContainer
->szName
)+1);
2914 return copy_param(pbData
, pdwDataLen
, (CONST BYTE
*)pKeyContainer
->szProvName
,
2915 strlen(pKeyContainer
->szProvName
)+1);
2917 case PP_SIG_KEYSIZE_INC
:
2918 case PP_KEYX_KEYSIZE_INC
:
2920 return copy_param(pbData
, pdwDataLen
, (CONST BYTE
*)&dwTemp
, sizeof(dwTemp
));
2923 dwTemp
= CRYPT_IMPL_SOFTWARE
;
2924 return copy_param(pbData
, pdwDataLen
, (CONST BYTE
*)&dwTemp
, sizeof(dwTemp
));
2927 dwTemp
= 0x00000200;
2928 return copy_param(pbData
, pdwDataLen
, (CONST BYTE
*)&dwTemp
, sizeof(dwTemp
));
2930 case PP_ENUMCONTAINERS
:
2931 if ((dwFlags
& CRYPT_FIRST
) == CRYPT_FIRST
) pKeyContainer
->dwEnumContainersCtr
= 0;
2934 *pdwDataLen
= (DWORD
)MAX_PATH
+ 1;
2938 sprintf(szRSABase
, RSAENH_REGKEY
, "");
2940 if (dwFlags
& CRYPT_MACHINE_KEYSET
) {
2941 hRootKey
= HKEY_LOCAL_MACHINE
;
2943 hRootKey
= HKEY_CURRENT_USER
;
2946 if (RegOpenKeyExA(hRootKey
, szRSABase
, 0, KEY_READ
, &hKey
) != ERROR_SUCCESS
)
2948 SetLastError(ERROR_NO_MORE_ITEMS
);
2952 dwTemp
= *pdwDataLen
;
2953 switch (RegEnumKeyExA(hKey
, pKeyContainer
->dwEnumContainersCtr
, (LPSTR
)pbData
, &dwTemp
,
2954 NULL
, NULL
, NULL
, NULL
))
2956 case ERROR_MORE_DATA
:
2957 *pdwDataLen
= (DWORD
)MAX_PATH
+ 1;
2960 pKeyContainer
->dwEnumContainersCtr
++;
2964 case ERROR_NO_MORE_ITEMS
:
2966 SetLastError(ERROR_NO_MORE_ITEMS
);
2972 case PP_ENUMALGS_EX
:
2973 if (((pKeyContainer
->dwEnumAlgsCtr
>= RSAENH_MAX_ENUMALGS
-1) ||
2974 (!aProvEnumAlgsEx
[pKeyContainer
->dwPersonality
]
2975 [pKeyContainer
->dwEnumAlgsCtr
+1].aiAlgid
)) &&
2976 ((dwFlags
& CRYPT_FIRST
) != CRYPT_FIRST
))
2978 SetLastError(ERROR_NO_MORE_ITEMS
);
2982 if (dwParam
== PP_ENUMALGS
) {
2983 if (pbData
&& (*pdwDataLen
>= sizeof(PROV_ENUMALGS
)))
2984 pKeyContainer
->dwEnumAlgsCtr
= ((dwFlags
& CRYPT_FIRST
) == CRYPT_FIRST
) ?
2985 0 : pKeyContainer
->dwEnumAlgsCtr
+1;
2987 provEnumalgs
.aiAlgid
= aProvEnumAlgsEx
2988 [pKeyContainer
->dwPersonality
][pKeyContainer
->dwEnumAlgsCtr
].aiAlgid
;
2989 provEnumalgs
.dwBitLen
= aProvEnumAlgsEx
2990 [pKeyContainer
->dwPersonality
][pKeyContainer
->dwEnumAlgsCtr
].dwDefaultLen
;
2991 provEnumalgs
.dwNameLen
= aProvEnumAlgsEx
2992 [pKeyContainer
->dwPersonality
][pKeyContainer
->dwEnumAlgsCtr
].dwNameLen
;
2993 memcpy(provEnumalgs
.szName
, aProvEnumAlgsEx
2994 [pKeyContainer
->dwPersonality
][pKeyContainer
->dwEnumAlgsCtr
].szName
,
2997 return copy_param(pbData
, pdwDataLen
, (CONST BYTE
*)&provEnumalgs
,
2998 sizeof(PROV_ENUMALGS
));
3000 if (pbData
&& (*pdwDataLen
>= sizeof(PROV_ENUMALGS_EX
)))
3001 pKeyContainer
->dwEnumAlgsCtr
= ((dwFlags
& CRYPT_FIRST
) == CRYPT_FIRST
) ?
3002 0 : pKeyContainer
->dwEnumAlgsCtr
+1;
3004 return copy_param(pbData
, pdwDataLen
,
3005 (CONST BYTE
*)&aProvEnumAlgsEx
3006 [pKeyContainer
->dwPersonality
][pKeyContainer
->dwEnumAlgsCtr
],
3007 sizeof(PROV_ENUMALGS_EX
));
3010 case 41: /* Undocumented. Asked for by IE About dialog */
3011 return copy_param(pbData
, pdwDataLen
, abWTF
, sizeof(abWTF
));
3014 /* MSDN: Unknown parameter number in dwParam */
3015 SetLastError(NTE_BAD_TYPE
);
3020 /******************************************************************************
3021 * CPDeriveKey (RSAENH.@)
3023 * Derives a key from a hash value.
3026 * hProv [I] Key container for which a key is to be generated.
3027 * Algid [I] Crypto algorithm identifier for the key to be generated.
3028 * hBaseData [I] Hash from whose value the key will be derived.
3029 * dwFlags [I] See Notes.
3030 * phKey [O] The generated key.
3038 * - CRYPT_EXPORTABLE: Key can be exported.
3039 * - CRYPT_NO_SALT: No salt is used for 40 bit keys.
3040 * - CRYPT_CREATE_SALT: Use remaining bits as salt value.
3042 BOOL WINAPI
RSAENH_CPDeriveKey(HCRYPTPROV hProv
, ALG_ID Algid
, HCRYPTHASH hBaseData
,
3043 DWORD dwFlags
, HCRYPTKEY
*phKey
)
3045 CRYPTKEY
*pCryptKey
, *pMasterKey
;
3046 CRYPTHASH
*pCryptHash
;
3047 BYTE abHashValue
[RSAENH_MAX_HASH_SIZE
*2];
3050 TRACE("(hProv=%08lx, Algid=%d, hBaseData=%08lx, dwFlags=%08x phKey=%p)\n", hProv
, Algid
,
3051 hBaseData
, dwFlags
, phKey
);
3053 if (!is_valid_handle(&handle_table
, hProv
, RSAENH_MAGIC_CONTAINER
))
3055 SetLastError(NTE_BAD_UID
);
3059 if (!lookup_handle(&handle_table
, hBaseData
, RSAENH_MAGIC_HASH
,
3060 (OBJECTHDR
**)&pCryptHash
))
3062 SetLastError(NTE_BAD_HASH
);
3068 SetLastError(ERROR_INVALID_PARAMETER
);
3072 switch (GET_ALG_CLASS(Algid
))
3074 case ALG_CLASS_DATA_ENCRYPT
:
3075 *phKey
= new_key(hProv
, Algid
, dwFlags
, &pCryptKey
);
3076 if (*phKey
== (HCRYPTKEY
)INVALID_HANDLE_VALUE
) return FALSE
;
3079 * We derive the key material from the hash.
3080 * If the hash value is not large enough for the claimed key, we have to construct
3081 * a larger binary value based on the hash. This is documented in MSDN: CryptDeriveKey.
3083 dwLen
= RSAENH_MAX_HASH_SIZE
;
3084 RSAENH_CPGetHashParam(pCryptHash
->hProv
, hBaseData
, HP_HASHVAL
, abHashValue
, &dwLen
, 0);
3086 if (dwLen
< pCryptKey
->dwKeyLen
) {
3087 BYTE pad1
[RSAENH_HMAC_DEF_PAD_LEN
], pad2
[RSAENH_HMAC_DEF_PAD_LEN
];
3088 BYTE old_hashval
[RSAENH_MAX_HASH_SIZE
];
3091 memcpy(old_hashval
, pCryptHash
->abHashValue
, RSAENH_MAX_HASH_SIZE
);
3093 for (i
=0; i
<RSAENH_HMAC_DEF_PAD_LEN
; i
++) {
3094 pad1
[i
] = RSAENH_HMAC_DEF_IPAD_CHAR
^ (i
<dwLen
? abHashValue
[i
] : 0);
3095 pad2
[i
] = RSAENH_HMAC_DEF_OPAD_CHAR
^ (i
<dwLen
? abHashValue
[i
] : 0);
3098 init_hash(pCryptHash
);
3099 update_hash(pCryptHash
, pad1
, RSAENH_HMAC_DEF_PAD_LEN
);
3100 finalize_hash(pCryptHash
);
3101 memcpy(abHashValue
, pCryptHash
->abHashValue
, pCryptHash
->dwHashSize
);
3103 init_hash(pCryptHash
);
3104 update_hash(pCryptHash
, pad2
, RSAENH_HMAC_DEF_PAD_LEN
);
3105 finalize_hash(pCryptHash
);
3106 memcpy(abHashValue
+pCryptHash
->dwHashSize
, pCryptHash
->abHashValue
,
3107 pCryptHash
->dwHashSize
);
3109 memcpy(pCryptHash
->abHashValue
, old_hashval
, RSAENH_MAX_HASH_SIZE
);
3112 memcpy(pCryptKey
->abKeyValue
, abHashValue
,
3113 RSAENH_MIN(pCryptKey
->dwKeyLen
, sizeof(pCryptKey
->abKeyValue
)));
3116 case ALG_CLASS_MSG_ENCRYPT
:
3117 if (!lookup_handle(&handle_table
, pCryptHash
->hKey
, RSAENH_MAGIC_KEY
,
3118 (OBJECTHDR
**)&pMasterKey
))
3120 SetLastError(NTE_FAIL
); /* FIXME error code */
3126 /* See RFC 2246, chapter 6.3 Key calculation */
3127 case CALG_SCHANNEL_ENC_KEY
:
3128 *phKey
= new_key(hProv
, pMasterKey
->siSChannelInfo
.saEncAlg
.Algid
,
3129 MAKELONG(LOWORD(dwFlags
),pMasterKey
->siSChannelInfo
.saEncAlg
.cBits
),
3131 if (*phKey
== (HCRYPTKEY
)INVALID_HANDLE_VALUE
) return FALSE
;
3132 memcpy(pCryptKey
->abKeyValue
,
3133 pCryptHash
->abHashValue
+ (
3134 2 * (pMasterKey
->siSChannelInfo
.saMACAlg
.cBits
/ 8) +
3135 ((dwFlags
& CRYPT_SERVER
) ?
3136 (pMasterKey
->siSChannelInfo
.saEncAlg
.cBits
/ 8) : 0)),
3137 pMasterKey
->siSChannelInfo
.saEncAlg
.cBits
/ 8);
3138 memcpy(pCryptKey
->abInitVector
,
3139 pCryptHash
->abHashValue
+ (
3140 2 * (pMasterKey
->siSChannelInfo
.saMACAlg
.cBits
/ 8) +
3141 2 * (pMasterKey
->siSChannelInfo
.saEncAlg
.cBits
/ 8) +
3142 ((dwFlags
& CRYPT_SERVER
) ? pCryptKey
->dwBlockLen
: 0)),
3143 pCryptKey
->dwBlockLen
);
3146 case CALG_SCHANNEL_MAC_KEY
:
3147 *phKey
= new_key(hProv
, Algid
,
3148 MAKELONG(LOWORD(dwFlags
),pMasterKey
->siSChannelInfo
.saMACAlg
.cBits
),
3150 if (*phKey
== (HCRYPTKEY
)INVALID_HANDLE_VALUE
) return FALSE
;
3151 memcpy(pCryptKey
->abKeyValue
,
3152 pCryptHash
->abHashValue
+ ((dwFlags
& CRYPT_SERVER
) ?
3153 pMasterKey
->siSChannelInfo
.saMACAlg
.cBits
/ 8 : 0),
3154 pMasterKey
->siSChannelInfo
.saMACAlg
.cBits
/ 8);
3158 SetLastError(NTE_BAD_ALGID
);
3164 SetLastError(NTE_BAD_ALGID
);
3168 setup_key(pCryptKey
);
3172 /******************************************************************************
3173 * CPGetUserKey (RSAENH.@)
3175 * Returns a handle to the user's private key-exchange- or signature-key.
3178 * hProv [I] The key container from which a user key is requested.
3179 * dwKeySpec [I] AT_KEYEXCHANGE or AT_SIGNATURE
3180 * phUserKey [O] Handle to the requested key or INVALID_HANDLE_VALUE in case of failure.
3187 * A newly created key container does not contain private user key. Create them with CPGenKey.
3189 BOOL WINAPI
RSAENH_CPGetUserKey(HCRYPTPROV hProv
, DWORD dwKeySpec
, HCRYPTKEY
*phUserKey
)
3191 KEYCONTAINER
*pKeyContainer
;
3193 TRACE("(hProv=%08lx, dwKeySpec=%08x, phUserKey=%p)\n", hProv
, dwKeySpec
, phUserKey
);
3195 if (!lookup_handle(&handle_table
, hProv
, RSAENH_MAGIC_CONTAINER
,
3196 (OBJECTHDR
**)&pKeyContainer
))
3198 /* MSDN: hProv not containing valid context handle */
3199 SetLastError(NTE_BAD_UID
);
3205 case AT_KEYEXCHANGE
:
3206 copy_handle(&handle_table
, pKeyContainer
->hKeyExchangeKeyPair
, RSAENH_MAGIC_KEY
,
3211 copy_handle(&handle_table
, pKeyContainer
->hSignatureKeyPair
, RSAENH_MAGIC_KEY
,
3216 *phUserKey
= (HCRYPTKEY
)INVALID_HANDLE_VALUE
;
3219 if (*phUserKey
== (HCRYPTKEY
)INVALID_HANDLE_VALUE
)
3221 /* MSDN: dwKeySpec parameter specifies nonexistent key */
3222 SetLastError(NTE_NO_KEY
);
3229 /******************************************************************************
3230 * CPHashData (RSAENH.@)
3232 * Updates a hash object with the given data.
3235 * hProv [I] Key container to which the hash object belongs.
3236 * hHash [I] Hash object which is to be updated.
3237 * pbData [I] Pointer to data with which the hash object is to be updated.
3238 * dwDataLen [I] Length of the data.
3239 * dwFlags [I] Currently none defined.
3246 * The actual hash value is queried with CPGetHashParam, which will finalize
3247 * the hash. Updating a finalized hash will fail with a last error NTE_BAD_HASH_STATE.
3249 BOOL WINAPI
RSAENH_CPHashData(HCRYPTPROV hProv
, HCRYPTHASH hHash
, CONST BYTE
*pbData
,
3250 DWORD dwDataLen
, DWORD dwFlags
)
3252 CRYPTHASH
*pCryptHash
;
3254 TRACE("(hProv=%08lx, hHash=%08lx, pbData=%p, dwDataLen=%d, dwFlags=%08x)\n",
3255 hProv
, hHash
, pbData
, dwDataLen
, dwFlags
);
3259 SetLastError(NTE_BAD_FLAGS
);
3263 if (!lookup_handle(&handle_table
, hHash
, RSAENH_MAGIC_HASH
,
3264 (OBJECTHDR
**)&pCryptHash
))
3266 SetLastError(NTE_BAD_HASH
);
3270 if (!get_algid_info(hProv
, pCryptHash
->aiAlgid
) || pCryptHash
->aiAlgid
== CALG_SSL3_SHAMD5
)
3272 SetLastError(NTE_BAD_ALGID
);
3276 if (pCryptHash
->dwState
== RSAENH_HASHSTATE_IDLE
)
3277 pCryptHash
->dwState
= RSAENH_HASHSTATE_HASHING
;
3279 if (pCryptHash
->dwState
!= RSAENH_HASHSTATE_HASHING
)
3281 SetLastError(NTE_BAD_HASH_STATE
);
3285 update_hash(pCryptHash
, pbData
, dwDataLen
);
3289 /******************************************************************************
3290 * CPHashSessionKey (RSAENH.@)
3292 * Updates a hash object with the binary representation of a symmetric key.
3295 * hProv [I] Key container to which the hash object belongs.
3296 * hHash [I] Hash object which is to be updated.
3297 * hKey [I] The symmetric key, whose binary value will be added to the hash.
3298 * dwFlags [I] CRYPT_LITTLE_ENDIAN, if the binary key value shall be interpreted as little endian.
3304 BOOL WINAPI
RSAENH_CPHashSessionKey(HCRYPTPROV hProv
, HCRYPTHASH hHash
, HCRYPTKEY hKey
,
3307 BYTE abKeyValue
[RSAENH_MAX_KEY_SIZE
], bTemp
;
3311 TRACE("(hProv=%08lx, hHash=%08lx, hKey=%08lx, dwFlags=%08x)\n", hProv
, hHash
, hKey
, dwFlags
);
3313 if (!lookup_handle(&handle_table
, hKey
, RSAENH_MAGIC_KEY
, (OBJECTHDR
**)&pKey
) ||
3314 (GET_ALG_CLASS(pKey
->aiAlgid
) != ALG_CLASS_DATA_ENCRYPT
))
3316 SetLastError(NTE_BAD_KEY
);
3320 if (dwFlags
& ~CRYPT_LITTLE_ENDIAN
) {
3321 SetLastError(NTE_BAD_FLAGS
);
3325 memcpy(abKeyValue
, pKey
->abKeyValue
, pKey
->dwKeyLen
);
3326 if (!(dwFlags
& CRYPT_LITTLE_ENDIAN
)) {
3327 for (i
=0; i
<pKey
->dwKeyLen
/2; i
++) {
3328 bTemp
= abKeyValue
[i
];
3329 abKeyValue
[i
] = abKeyValue
[pKey
->dwKeyLen
-i
-1];
3330 abKeyValue
[pKey
->dwKeyLen
-i
-1] = bTemp
;
3334 return RSAENH_CPHashData(hProv
, hHash
, abKeyValue
, pKey
->dwKeyLen
, 0);
3337 /******************************************************************************
3338 * CPReleaseContext (RSAENH.@)
3340 * Release a key container.
3343 * hProv [I] Key container to be released.
3344 * dwFlags [I] Currently none defined.
3350 BOOL WINAPI
RSAENH_CPReleaseContext(HCRYPTPROV hProv
, DWORD dwFlags
)
3352 TRACE("(hProv=%08lx, dwFlags=%08x)\n", hProv
, dwFlags
);
3354 if (!release_handle(&handle_table
, hProv
, RSAENH_MAGIC_CONTAINER
))
3356 /* MSDN: hProv not containing valid context handle */
3357 SetLastError(NTE_BAD_UID
);
3362 SetLastError(NTE_BAD_FLAGS
);
3369 /******************************************************************************
3370 * CPSetHashParam (RSAENH.@)
3372 * Set a parameter of a hash object
3375 * hProv [I] The key container to which the key belongs.
3376 * hHash [I] The hash object for which a parameter is to be set.
3377 * dwParam [I] Parameter type. See Notes.
3378 * pbData [I] Pointer to the parameter value.
3379 * dwFlags [I] Currently none defined.
3386 * Currently only the HP_HMAC_INFO dwParam type is defined.
3387 * The HMAC_INFO struct will be deep copied into the hash object.
3388 * See Internet RFC 2104 for details on the HMAC algorithm.
3390 BOOL WINAPI
RSAENH_CPSetHashParam(HCRYPTPROV hProv
, HCRYPTHASH hHash
, DWORD dwParam
,
3391 BYTE
*pbData
, DWORD dwFlags
)
3393 CRYPTHASH
*pCryptHash
;
3394 CRYPTKEY
*pCryptKey
;
3397 TRACE("(hProv=%08lx, hHash=%08lx, dwParam=%08x, pbData=%p, dwFlags=%08x)\n",
3398 hProv
, hHash
, dwParam
, pbData
, dwFlags
);
3400 if (!is_valid_handle(&handle_table
, hProv
, RSAENH_MAGIC_CONTAINER
))
3402 SetLastError(NTE_BAD_UID
);
3407 SetLastError(NTE_BAD_FLAGS
);
3411 if (!lookup_handle(&handle_table
, hHash
, RSAENH_MAGIC_HASH
,
3412 (OBJECTHDR
**)&pCryptHash
))
3414 SetLastError(NTE_BAD_HASH
);
3420 free_hmac_info(pCryptHash
->pHMACInfo
);
3421 if (!copy_hmac_info(&pCryptHash
->pHMACInfo
, (PHMAC_INFO
)pbData
)) return FALSE
;
3423 if (!lookup_handle(&handle_table
, pCryptHash
->hKey
, RSAENH_MAGIC_KEY
,
3424 (OBJECTHDR
**)&pCryptKey
))
3426 SetLastError(NTE_FAIL
); /* FIXME: correct error code? */
3430 for (i
=0; i
<RSAENH_MIN(pCryptKey
->dwKeyLen
,pCryptHash
->pHMACInfo
->cbInnerString
); i
++) {
3431 pCryptHash
->pHMACInfo
->pbInnerString
[i
] ^= pCryptKey
->abKeyValue
[i
];
3433 for (i
=0; i
<RSAENH_MIN(pCryptKey
->dwKeyLen
,pCryptHash
->pHMACInfo
->cbOuterString
); i
++) {
3434 pCryptHash
->pHMACInfo
->pbOuterString
[i
] ^= pCryptKey
->abKeyValue
[i
];
3437 init_hash(pCryptHash
);
3441 memcpy(pCryptHash
->abHashValue
, pbData
, pCryptHash
->dwHashSize
);
3442 pCryptHash
->dwState
= RSAENH_HASHSTATE_FINISHED
;
3445 case HP_TLS1PRF_SEED
:
3446 return copy_data_blob(&pCryptHash
->tpPRFParams
.blobSeed
, (PCRYPT_DATA_BLOB
)pbData
);
3448 case HP_TLS1PRF_LABEL
:
3449 return copy_data_blob(&pCryptHash
->tpPRFParams
.blobLabel
, (PCRYPT_DATA_BLOB
)pbData
);
3452 SetLastError(NTE_BAD_TYPE
);
3457 /******************************************************************************
3458 * CPSetProvParam (RSAENH.@)
3460 BOOL WINAPI
RSAENH_CPSetProvParam(HCRYPTPROV hProv
, DWORD dwParam
, BYTE
*pbData
, DWORD dwFlags
)
3466 /******************************************************************************
3467 * CPSignHash (RSAENH.@)
3469 * Sign a hash object
3472 * hProv [I] The key container, to which the hash object belongs.
3473 * hHash [I] The hash object to be signed.
3474 * dwKeySpec [I] AT_SIGNATURE or AT_KEYEXCHANGE: Key used to generate the signature.
3475 * sDescription [I] Should be NULL for security reasons.
3476 * dwFlags [I] 0, CRYPT_NOHASHOID or CRYPT_X931_FORMAT: Format of the signature.
3477 * pbSignature [O] Buffer, to which the signature will be stored. May be NULL to query SigLen.
3478 * pdwSigLen [I/O] Size of the buffer (in), Length of the signature (out)
3484 BOOL WINAPI
RSAENH_CPSignHash(HCRYPTPROV hProv
, HCRYPTHASH hHash
, DWORD dwKeySpec
,
3485 LPCWSTR sDescription
, DWORD dwFlags
, BYTE
*pbSignature
,
3488 HCRYPTKEY hCryptKey
;
3489 CRYPTKEY
*pCryptKey
;
3491 BYTE abHashValue
[RSAENH_MAX_HASH_SIZE
];
3494 TRACE("(hProv=%08lx, hHash=%08lx, dwKeySpec=%08x, sDescription=%s, dwFlags=%08x, "
3495 "pbSignature=%p, pdwSigLen=%p)\n", hProv
, hHash
, dwKeySpec
, debugstr_w(sDescription
),
3496 dwFlags
, pbSignature
, pdwSigLen
);
3498 if (dwFlags
& ~(CRYPT_NOHASHOID
|CRYPT_X931_FORMAT
)) {
3499 SetLastError(NTE_BAD_FLAGS
);
3503 if (!RSAENH_CPGetUserKey(hProv
, dwKeySpec
, &hCryptKey
)) return FALSE
;
3505 if (!lookup_handle(&handle_table
, hCryptKey
, RSAENH_MAGIC_KEY
,
3506 (OBJECTHDR
**)&pCryptKey
))
3508 SetLastError(NTE_NO_KEY
);
3513 *pdwSigLen
= pCryptKey
->dwKeyLen
;
3516 if (pCryptKey
->dwKeyLen
> *pdwSigLen
)
3518 SetLastError(ERROR_MORE_DATA
);
3519 *pdwSigLen
= pCryptKey
->dwKeyLen
;
3522 *pdwSigLen
= pCryptKey
->dwKeyLen
;
3525 if (!RSAENH_CPHashData(hProv
, hHash
, (CONST BYTE
*)sDescription
,
3526 (DWORD
)lstrlenW(sDescription
)*sizeof(WCHAR
), 0))
3532 dwHashLen
= sizeof(DWORD
);
3533 if (!RSAENH_CPGetHashParam(hProv
, hHash
, HP_ALGID
, (BYTE
*)&aiAlgid
, &dwHashLen
, 0)) return FALSE
;
3535 dwHashLen
= RSAENH_MAX_HASH_SIZE
;
3536 if (!RSAENH_CPGetHashParam(hProv
, hHash
, HP_HASHVAL
, abHashValue
, &dwHashLen
, 0)) return FALSE
;
3539 if (!build_hash_signature(pbSignature
, *pdwSigLen
, aiAlgid
, abHashValue
, dwHashLen
, dwFlags
)) {
3543 return encrypt_block_impl(pCryptKey
->aiAlgid
, PK_PRIVATE
, &pCryptKey
->context
, pbSignature
, pbSignature
, RSAENH_ENCRYPT
);
3546 /******************************************************************************
3547 * CPVerifySignature (RSAENH.@)
3549 * Verify the signature of a hash object.
3552 * hProv [I] The key container, to which the hash belongs.
3553 * hHash [I] The hash for which the signature is verified.
3554 * pbSignature [I] The binary signature.
3555 * dwSigLen [I] Length of the signature BLOB.
3556 * hPubKey [I] Public key used to verify the signature.
3557 * sDescription [I] Should be NULL for security reasons.
3558 * dwFlags [I] 0, CRYPT_NOHASHOID or CRYPT_X931_FORMAT: Format of the signature.
3561 * Success: TRUE (Signature is valid)
3562 * Failure: FALSE (GetLastError() == NTE_BAD_SIGNATURE, if signature is invalid)
3564 BOOL WINAPI
RSAENH_CPVerifySignature(HCRYPTPROV hProv
, HCRYPTHASH hHash
, CONST BYTE
*pbSignature
,
3565 DWORD dwSigLen
, HCRYPTKEY hPubKey
, LPCWSTR sDescription
,
3568 BYTE
*pbConstructed
= NULL
, *pbDecrypted
= NULL
;
3569 CRYPTKEY
*pCryptKey
;
3572 BYTE abHashValue
[RSAENH_MAX_HASH_SIZE
];
3575 TRACE("(hProv=%08lx, hHash=%08lx, pbSignature=%p, dwSigLen=%d, hPubKey=%08lx, sDescription=%s, "
3576 "dwFlags=%08x)\n", hProv
, hHash
, pbSignature
, dwSigLen
, hPubKey
, debugstr_w(sDescription
),
3579 if (dwFlags
& ~(CRYPT_NOHASHOID
|CRYPT_X931_FORMAT
)) {
3580 SetLastError(NTE_BAD_FLAGS
);
3584 if (!is_valid_handle(&handle_table
, hProv
, RSAENH_MAGIC_CONTAINER
))
3586 SetLastError(NTE_BAD_UID
);
3590 if (!lookup_handle(&handle_table
, hPubKey
, RSAENH_MAGIC_KEY
,
3591 (OBJECTHDR
**)&pCryptKey
))
3593 SetLastError(NTE_BAD_KEY
);
3598 if (!RSAENH_CPHashData(hProv
, hHash
, (CONST BYTE
*)sDescription
,
3599 (DWORD
)lstrlenW(sDescription
)*sizeof(WCHAR
), 0))
3605 dwHashLen
= sizeof(DWORD
);
3606 if (!RSAENH_CPGetHashParam(hProv
, hHash
, HP_ALGID
, (BYTE
*)&aiAlgid
, &dwHashLen
, 0)) return FALSE
;
3608 dwHashLen
= RSAENH_MAX_HASH_SIZE
;
3609 if (!RSAENH_CPGetHashParam(hProv
, hHash
, HP_HASHVAL
, abHashValue
, &dwHashLen
, 0)) return FALSE
;
3611 pbConstructed
= HeapAlloc(GetProcessHeap(), 0, dwSigLen
);
3612 if (!pbConstructed
) {
3613 SetLastError(NTE_NO_MEMORY
);
3617 pbDecrypted
= HeapAlloc(GetProcessHeap(), 0, dwSigLen
);
3619 SetLastError(NTE_NO_MEMORY
);
3623 if (!encrypt_block_impl(pCryptKey
->aiAlgid
, PK_PUBLIC
, &pCryptKey
->context
, pbSignature
, pbDecrypted
,
3629 if (!build_hash_signature(pbConstructed
, dwSigLen
, aiAlgid
, abHashValue
, dwHashLen
, dwFlags
)) {
3633 if (memcmp(pbDecrypted
, pbConstructed
, dwSigLen
)) {
3634 SetLastError(NTE_BAD_SIGNATURE
);
3640 HeapFree(GetProcessHeap(), 0, pbConstructed
);
3641 HeapFree(GetProcessHeap(), 0, pbDecrypted
);
3645 static const WCHAR szProviderKeys
[4][97] = {
3646 { 'S','o','f','t','w','a','r','e','\\',
3647 'M','i','c','r','o','s','o','f','t','\\','C','r','y','p','t','o','g','r',
3648 'a','p','h','y','\\','D','e','f','a','u','l','t','s','\\','P','r','o','v',
3649 'i','d','e','r','\\','M','i','c','r','o','s','o','f','t',' ','B','a','s',
3650 'e',' ','C','r','y','p','t','o','g','r','a','p','h','i','c',' ','P','r',
3651 'o','v','i','d','e','r',' ','v','1','.','0',0 },
3652 { 'S','o','f','t','w','a','r','e','\\',
3653 'M','i','c','r','o','s','o','f','t','\\','C','r','y','p','t','o','g','r',
3654 'a','p','h','y','\\','D','e','f','a','u','l','t','s','\\','P','r','o','v',
3655 'i','d','e','r','\\','M','i','c','r','o','s','o','f','t',' ',
3656 'E','n','h','a','n','c','e','d',
3657 ' ','C','r','y','p','t','o','g','r','a','p','h','i','c',' ','P','r',
3658 'o','v','i','d','e','r',' ','v','1','.','0',0 },
3659 { 'S','o','f','t','w','a','r','e','\\',
3660 'M','i','c','r','o','s','o','f','t','\\','C','r','y','p','t','o','g','r',
3661 'a','p','h','y','\\','D','e','f','a','u','l','t','s','\\','P','r','o','v',
3662 'i','d','e','r','\\','M','i','c','r','o','s','o','f','t',' ','S','t','r','o','n','g',
3663 ' ','C','r','y','p','t','o','g','r','a','p','h','i','c',' ','P','r',
3664 'o','v','i','d','e','r',0 },
3665 { 'S','o','f','t','w','a','r','e','\\','M','i','c','r','o','s','o','f','t','\\',
3666 'C','r','y','p','t','o','g','r','a','p','h','y','\\','D','e','f','a','u','l','t','s','\\',
3667 'P','r','o','v','i','d','e','r','\\','M','i','c','r','o','s','o','f','t',' ',
3668 'R','S','A',' ','S','C','h','a','n','n','e','l',' ',
3669 'C','r','y','p','t','o','g','r','a','p','h','i','c',' ','P','r','o','v','i','d','e','r',0 }
3671 static const WCHAR szDefaultKeys
[2][65] = {
3672 { 'S','o','f','t','w','a','r','e','\\',
3673 'M','i','c','r','o','s','o','f','t','\\','C','r','y','p','t','o','g','r',
3674 'a','p','h','y','\\','D','e','f','a','u','l','t','s','\\','P','r','o','v',
3675 'i','d','e','r',' ','T','y','p','e','s','\\','T','y','p','e',' ','0','0','1',0 },
3676 { 'S','o','f','t','w','a','r','e','\\',
3677 'M','i','c','r','o','s','o','f','t','\\','C','r','y','p','t','o','g','r',
3678 'a','p','h','y','\\','D','e','f','a','u','l','t','s','\\','P','r','o','v',
3679 'i','d','e','r',' ','T','y','p','e','s','\\','T','y','p','e',' ','0','1','2',0 }
3683 /******************************************************************************
3684 * DllRegisterServer (RSAENH.@)
3686 * Dll self registration.
3695 * Registers the following keys:
3696 * - HKLM\Software\Microsoft\Cryptography\Defaults\Provider\
3697 * Microsoft Base Cryptographic Provider v1.0
3698 * - HKLM\Software\Microsoft\Cryptography\Defaults\Provider\
3699 * Microsoft Enhanced Cryptographic Provider
3700 * - HKLM\Software\Microsoft\Cryptography\Defaults\Provider\
3701 * Microsoft Strong Cryptographpic Provider
3702 * - HKLM\Software\Microsoft\Cryptography\Defaults\Provider Types\Type 001
3704 HRESULT WINAPI
DllRegisterServer(void)
3711 for (i
=0; i
<4; i
++) {
3712 apiRet
= RegCreateKeyExW(HKEY_LOCAL_MACHINE
, szProviderKeys
[i
], 0, NULL
,
3713 REG_OPTION_NON_VOLATILE
, KEY_ALL_ACCESS
, NULL
, &key
, &dp
);
3715 if (apiRet
== ERROR_SUCCESS
)
3717 if (dp
== REG_CREATED_NEW_KEY
)
3719 static const WCHAR szImagePath
[] = { 'I','m','a','g','e',' ','P','a','t','h',0 };
3720 static const WCHAR szRSABase
[] = { 'r','s','a','e','n','h','.','d','l','l',0 };
3721 static const WCHAR szType
[] = { 'T','y','p','e',0 };
3722 static const WCHAR szSignature
[] = { 'S','i','g','n','a','t','u','r','e',0 };
3723 DWORD type
= (i
== 3) ? PROV_RSA_SCHANNEL
: PROV_RSA_FULL
;
3724 DWORD sign
= 0xdeadbeef;
3725 RegSetValueExW(key
, szImagePath
, 0, REG_SZ
, (const BYTE
*)szRSABase
,
3726 (lstrlenW(szRSABase
) + 1) * sizeof(WCHAR
));
3727 RegSetValueExW(key
, szType
, 0, REG_DWORD
, (LPBYTE
)&type
, sizeof(type
));
3728 RegSetValueExW(key
, szSignature
, 0, REG_BINARY
, (LPBYTE
)&sign
, sizeof(sign
));
3734 for (i
=0; i
<2; i
++) {
3735 apiRet
= RegCreateKeyExW(HKEY_LOCAL_MACHINE
, szDefaultKeys
[i
], 0, NULL
,
3736 REG_OPTION_NON_VOLATILE
, KEY_ALL_ACCESS
, NULL
, &key
, &dp
);
3737 if (apiRet
== ERROR_SUCCESS
)
3739 if (dp
== REG_CREATED_NEW_KEY
)
3741 static const WCHAR szName
[] = { 'N','a','m','e',0 };
3742 static const WCHAR szRSAName
[2][46] = {
3743 { 'M','i','c','r','o','s','o','f','t',' ', 'B','a','s','e',' ',
3744 'C','r','y','p','t','o','g','r','a','p','h','i','c',' ',
3745 'P','r','o','v','i','d','e','r',' ','v','1','.','0',0 },
3746 { 'M','i','c','r','o','s','o','f','t',' ','R','S','A',' ',
3747 'S','C','h','a','n','n','e','l',' ',
3748 'C','r','y','p','t','o','g','r','a','p','h','i','c',' ',
3749 'P','r','o','v','i','d','e','r',0 } };
3750 static const WCHAR szTypeName
[] = { 'T','y','p','e','N','a','m','e',0 };
3751 static const WCHAR szRSATypeName
[2][38] = {
3752 { 'R','S','A',' ','F','u','l','l',' ',
3753 '(','S','i','g','n','a','t','u','r','e',' ','a','n','d',' ',
3754 'K','e','y',' ','E','x','c','h','a','n','g','e',')',0 },
3755 { 'R','S','A',' ','S','C','h','a','n','n','e','l',0 } };
3757 RegSetValueExW(key
, szName
, 0, REG_SZ
,
3758 (const BYTE
*)szRSAName
[i
], lstrlenW(szRSAName
[i
])*sizeof(WCHAR
)+sizeof(WCHAR
));
3759 RegSetValueExW(key
, szTypeName
, 0, REG_SZ
,
3760 (const BYTE
*)szRSATypeName
[i
], lstrlenW(szRSATypeName
[i
])*sizeof(WCHAR
)+sizeof(WCHAR
));
3766 return HRESULT_FROM_WIN32(apiRet
);
3769 /******************************************************************************
3770 * DllUnregisterServer (RSAENH.@)
3772 * Dll self unregistration.
3780 * For the relevant keys see DllRegisterServer.
3782 HRESULT WINAPI
DllUnregisterServer(void)
3784 RegDeleteKeyW(HKEY_LOCAL_MACHINE
, szProviderKeys
[0]);
3785 RegDeleteKeyW(HKEY_LOCAL_MACHINE
, szProviderKeys
[1]);
3786 RegDeleteKeyW(HKEY_LOCAL_MACHINE
, szProviderKeys
[2]);
3787 RegDeleteKeyW(HKEY_LOCAL_MACHINE
, szProviderKeys
[3]);
3788 RegDeleteKeyW(HKEY_LOCAL_MACHINE
, szDefaultKeys
[0]);
3789 RegDeleteKeyW(HKEY_LOCAL_MACHINE
, szDefaultKeys
[1]);