21#include <freerdp/config.h>
26#include <freerdp/log.h>
27#include <winpr/crypto.h>
29#define TAG FREERDP_TAG("core")
31static const BYTE A[] = {
'A' };
32static const BYTE BB[] = {
'B',
'B' };
33static const BYTE CCC[] = {
'C',
'C',
'C' };
36static const BYTE pad1[40] = { 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36,
37 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36,
38 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36,
39 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36 };
42static const BYTE pad2[48] = { 0x5C, 0x5C, 0x5C, 0x5C, 0x5C, 0x5C, 0x5C, 0x5C, 0x5C, 0x5C,
43 0x5C, 0x5C, 0x5C, 0x5C, 0x5C, 0x5C, 0x5C, 0x5C, 0x5C, 0x5C,
44 0x5C, 0x5C, 0x5C, 0x5C, 0x5C, 0x5C, 0x5C, 0x5C, 0x5C, 0x5C,
45 0x5C, 0x5C, 0x5C, 0x5C, 0x5C, 0x5C, 0x5C, 0x5C, 0x5C, 0x5C,
46 0x5C, 0x5C, 0x5C, 0x5C, 0x5C, 0x5C, 0x5C, 0x5C };
48static const BYTE fips_reverse_table[256] = {
49 0x00, 0x80, 0x40, 0xc0, 0x20, 0xa0, 0x60, 0xe0, 0x10, 0x90, 0x50, 0xd0, 0x30, 0xb0, 0x70, 0xf0,
50 0x08, 0x88, 0x48, 0xc8, 0x28, 0xa8, 0x68, 0xe8, 0x18, 0x98, 0x58, 0xd8, 0x38, 0xb8, 0x78, 0xf8,
51 0x04, 0x84, 0x44, 0xc4, 0x24, 0xa4, 0x64, 0xe4, 0x14, 0x94, 0x54, 0xd4, 0x34, 0xb4, 0x74, 0xf4,
52 0x0c, 0x8c, 0x4c, 0xcc, 0x2c, 0xac, 0x6c, 0xec, 0x1c, 0x9c, 0x5c, 0xdc, 0x3c, 0xbc, 0x7c, 0xfc,
53 0x02, 0x82, 0x42, 0xc2, 0x22, 0xa2, 0x62, 0xe2, 0x12, 0x92, 0x52, 0xd2, 0x32, 0xb2, 0x72, 0xf2,
54 0x0a, 0x8a, 0x4a, 0xca, 0x2a, 0xaa, 0x6a, 0xea, 0x1a, 0x9a, 0x5a, 0xda, 0x3a, 0xba, 0x7a, 0xfa,
55 0x06, 0x86, 0x46, 0xc6, 0x26, 0xa6, 0x66, 0xe6, 0x16, 0x96, 0x56, 0xd6, 0x36, 0xb6, 0x76, 0xf6,
56 0x0e, 0x8e, 0x4e, 0xce, 0x2e, 0xae, 0x6e, 0xee, 0x1e, 0x9e, 0x5e, 0xde, 0x3e, 0xbe, 0x7e, 0xfe,
57 0x01, 0x81, 0x41, 0xc1, 0x21, 0xa1, 0x61, 0xe1, 0x11, 0x91, 0x51, 0xd1, 0x31, 0xb1, 0x71, 0xf1,
58 0x09, 0x89, 0x49, 0xc9, 0x29, 0xa9, 0x69, 0xe9, 0x19, 0x99, 0x59, 0xd9, 0x39, 0xb9, 0x79, 0xf9,
59 0x05, 0x85, 0x45, 0xc5, 0x25, 0xa5, 0x65, 0xe5, 0x15, 0x95, 0x55, 0xd5, 0x35, 0xb5, 0x75, 0xf5,
60 0x0d, 0x8d, 0x4d, 0xcd, 0x2d, 0xad, 0x6d, 0xed, 0x1d, 0x9d, 0x5d, 0xdd, 0x3d, 0xbd, 0x7d, 0xfd,
61 0x03, 0x83, 0x43, 0xc3, 0x23, 0xa3, 0x63, 0xe3, 0x13, 0x93, 0x53, 0xd3, 0x33, 0xb3, 0x73, 0xf3,
62 0x0b, 0x8b, 0x4b, 0xcb, 0x2b, 0xab, 0x6b, 0xeb, 0x1b, 0x9b, 0x5b, 0xdb, 0x3b, 0xbb, 0x7b, 0xfb,
63 0x07, 0x87, 0x47, 0xc7, 0x27, 0xa7, 0x67, 0xe7, 0x17, 0x97, 0x57, 0xd7, 0x37, 0xb7, 0x77, 0xf7,
64 0x0f, 0x8f, 0x4f, 0xcf, 0x2f, 0xaf, 0x6f, 0xef, 0x1f, 0x9f, 0x5f, 0xdf, 0x3f, 0xbf, 0x7f, 0xff
67static const BYTE fips_oddparity_table[256] = {
68 0x01, 0x01, 0x02, 0x02, 0x04, 0x04, 0x07, 0x07, 0x08, 0x08, 0x0b, 0x0b, 0x0d, 0x0d, 0x0e, 0x0e,
69 0x10, 0x10, 0x13, 0x13, 0x15, 0x15, 0x16, 0x16, 0x19, 0x19, 0x1a, 0x1a, 0x1c, 0x1c, 0x1f, 0x1f,
70 0x20, 0x20, 0x23, 0x23, 0x25, 0x25, 0x26, 0x26, 0x29, 0x29, 0x2a, 0x2a, 0x2c, 0x2c, 0x2f, 0x2f,
71 0x31, 0x31, 0x32, 0x32, 0x34, 0x34, 0x37, 0x37, 0x38, 0x38, 0x3b, 0x3b, 0x3d, 0x3d, 0x3e, 0x3e,
72 0x40, 0x40, 0x43, 0x43, 0x45, 0x45, 0x46, 0x46, 0x49, 0x49, 0x4a, 0x4a, 0x4c, 0x4c, 0x4f, 0x4f,
73 0x51, 0x51, 0x52, 0x52, 0x54, 0x54, 0x57, 0x57, 0x58, 0x58, 0x5b, 0x5b, 0x5d, 0x5d, 0x5e, 0x5e,
74 0x61, 0x61, 0x62, 0x62, 0x64, 0x64, 0x67, 0x67, 0x68, 0x68, 0x6b, 0x6b, 0x6d, 0x6d, 0x6e, 0x6e,
75 0x70, 0x70, 0x73, 0x73, 0x75, 0x75, 0x76, 0x76, 0x79, 0x79, 0x7a, 0x7a, 0x7c, 0x7c, 0x7f, 0x7f,
76 0x80, 0x80, 0x83, 0x83, 0x85, 0x85, 0x86, 0x86, 0x89, 0x89, 0x8a, 0x8a, 0x8c, 0x8c, 0x8f, 0x8f,
77 0x91, 0x91, 0x92, 0x92, 0x94, 0x94, 0x97, 0x97, 0x98, 0x98, 0x9b, 0x9b, 0x9d, 0x9d, 0x9e, 0x9e,
78 0xa1, 0xa1, 0xa2, 0xa2, 0xa4, 0xa4, 0xa7, 0xa7, 0xa8, 0xa8, 0xab, 0xab, 0xad, 0xad, 0xae, 0xae,
79 0xb0, 0xb0, 0xb3, 0xb3, 0xb5, 0xb5, 0xb6, 0xb6, 0xb9, 0xb9, 0xba, 0xba, 0xbc, 0xbc, 0xbf, 0xbf,
80 0xc1, 0xc1, 0xc2, 0xc2, 0xc4, 0xc4, 0xc7, 0xc7, 0xc8, 0xc8, 0xcb, 0xcb, 0xcd, 0xcd, 0xce, 0xce,
81 0xd0, 0xd0, 0xd3, 0xd3, 0xd5, 0xd5, 0xd6, 0xd6, 0xd9, 0xd9, 0xda, 0xda, 0xdc, 0xdc, 0xdf, 0xdf,
82 0xe0, 0xe0, 0xe3, 0xe3, 0xe5, 0xe5, 0xe6, 0xe6, 0xe9, 0xe9, 0xea, 0xea, 0xec, 0xec, 0xef, 0xef,
83 0xf1, 0xf1, 0xf2, 0xf2, 0xf4, 0xf4, 0xf7, 0xf7, 0xf8, 0xf8, 0xfb, 0xfb, 0xfd, 0xfd, 0xfe, 0xfe
86static BOOL security_salted_hash(
const BYTE* salt,
size_t salt_len,
const BYTE* input,
87 size_t length,
const BYTE* salt1,
size_t salt1_len,
88 const BYTE* salt2,
size_t salt2_len, BYTE* output,
size_t out_len)
90 WINPR_DIGEST_CTX* sha1 = NULL;
91 WINPR_DIGEST_CTX* md5 = NULL;
92 BYTE sha1_digest[WINPR_SHA1_DIGEST_LENGTH] = { 0 };
96 WINPR_ASSERT(out_len >= WINPR_MD5_DIGEST_LENGTH);
99 if (!(sha1 = winpr_Digest_New()))
102 if (!winpr_Digest_Init(sha1, WINPR_MD_SHA1))
105 if (!winpr_Digest_Update(sha1, input, length))
108 WINPR_ASSERT(salt_len == 48);
109 if (!winpr_Digest_Update(sha1, salt, salt_len))
112 WINPR_ASSERT(salt1_len == 32);
113 if (!winpr_Digest_Update(sha1, salt1, salt1_len))
116 WINPR_ASSERT(salt2_len == 32);
117 if (!winpr_Digest_Update(sha1, salt2, salt2_len))
120 if (!winpr_Digest_Final(sha1, sha1_digest,
sizeof(sha1_digest)))
124 if (!(md5 = winpr_Digest_New()))
132 if (!winpr_Digest_Init_Allow_FIPS(md5, WINPR_MD_MD5))
135 if (!winpr_Digest_Update(md5, salt, 48))
138 if (!winpr_Digest_Update(md5, sha1_digest,
sizeof(sha1_digest)))
141 if (!winpr_Digest_Final(md5, output, out_len))
146 winpr_Digest_Free(sha1);
147 winpr_Digest_Free(md5);
151static BOOL security_premaster_hash(
const BYTE* input,
size_t length,
const BYTE* premaster_secret,
152 size_t pre_len,
const BYTE* client_random,
size_t client_len,
153 const BYTE* server_random,
size_t server_len, BYTE* output,
157 return security_salted_hash(premaster_secret, pre_len, input, length, client_random, client_len,
158 server_random, server_len, output, out_len);
161BOOL security_master_secret(
const BYTE* premaster_secret,
size_t pre_len,
const BYTE* client_random,
162 size_t client_len,
const BYTE* server_random,
size_t server_len,
163 BYTE* output,
size_t out_len)
166 WINPR_ASSERT(out_len >= 32);
167 return security_premaster_hash(A,
sizeof(A), premaster_secret, pre_len, client_random,
168 client_len, server_random, server_len, &output[0], out_len) &&
169 security_premaster_hash(BB,
sizeof(BB), premaster_secret, pre_len, client_random,
170 client_len, server_random, server_len, &output[16],
172 security_premaster_hash(CCC,
sizeof(CCC), premaster_secret, pre_len, client_random,
173 client_len, server_random, server_len, &output[32],
177static BOOL security_master_hash(
const BYTE* input,
size_t length,
const BYTE* master_secret,
178 size_t master_len,
const BYTE* client_random,
size_t client_len,
179 const BYTE* server_random,
size_t server_len, BYTE* output,
183 return security_salted_hash(master_secret, master_len, input, length, server_random, server_len,
184 client_random, client_len, output, out_len);
187BOOL security_session_key_blob(
const BYTE* master_secret,
size_t master_len,
188 const BYTE* client_random,
size_t client_len,
189 const BYTE* server_random,
size_t server_len, BYTE* output,
193 WINPR_ASSERT(out_len >= 32);
194 return security_master_hash(A,
sizeof(A), master_secret, master_len, client_random, client_len,
195 server_random, server_len, &output[0], 16) &&
196 security_master_hash(BB,
sizeof(BB), master_secret, master_len, client_random,
197 client_len, server_random, server_len, &output[16], 16) &&
198 security_master_hash(CCC,
sizeof(CCC), master_secret, master_len, client_random,
199 client_len, server_random, server_len, &output[32], out_len - 32);
202void security_mac_salt_key(
const BYTE* session_key_blob, WINPR_ATTR_UNUSED
size_t session_len,
203 WINPR_ATTR_UNUSED
const BYTE* client_random,
204 WINPR_ATTR_UNUSED
size_t client_len,
205 WINPR_ATTR_UNUSED
const BYTE* server_random,
206 WINPR_ATTR_UNUSED
size_t server_len, BYTE* output,
207 WINPR_ATTR_UNUSED
size_t out_len)
210 WINPR_ASSERT(out_len >= 16);
211 WINPR_ASSERT(session_len >= 16);
212 memcpy(output, session_key_blob, 16);
215static BOOL security_md5_16_32_32(
const BYTE* in0,
const BYTE* in1,
const BYTE* in2, BYTE* output,
218 WINPR_DIGEST_CTX* md5 = NULL;
221 WINPR_ASSERT(WINPR_MD5_DIGEST_LENGTH <= out_len);
223 if (!(md5 = winpr_Digest_New()))
226 if (!winpr_Digest_Init(md5, WINPR_MD_MD5))
229 if (!winpr_Digest_Update(md5, in0, 16))
232 if (!winpr_Digest_Update(md5, in1, 32))
235 if (!winpr_Digest_Update(md5, in2, 32))
238 if (!winpr_Digest_Final(md5, output, out_len))
243 winpr_Digest_Free(md5);
247static BOOL security_md5_16_32_32_Allow_FIPS(
const BYTE* in0,
const BYTE* in1,
const BYTE* in2,
248 BYTE* output,
size_t out_len)
250 WINPR_DIGEST_CTX* md5 = NULL;
253 WINPR_ASSERT(out_len >= WINPR_MD5_DIGEST_LENGTH);
255 if (!(md5 = winpr_Digest_New()))
257 if (!winpr_Digest_Init_Allow_FIPS(md5, WINPR_MD_MD5))
259 if (!winpr_Digest_Update(md5, in0, 16))
261 if (!winpr_Digest_Update(md5, in1, 32))
263 if (!winpr_Digest_Update(md5, in2, 32))
265 if (!winpr_Digest_Final(md5, output, out_len))
270 winpr_Digest_Free(md5);
274BOOL security_licensing_encryption_key(
const BYTE* session_key_blob,
size_t session_len,
275 const BYTE* client_random,
size_t client_len,
276 const BYTE* server_random,
size_t server_len, BYTE* output,
279 if (session_len < 16)
289 return security_md5_16_32_32_Allow_FIPS(&session_key_blob[16], client_random, server_random,
293static void security_UINT32_le(BYTE* output, WINPR_ATTR_UNUSED
size_t out_len, UINT32 value)
295 WINPR_ASSERT(output);
296 WINPR_ASSERT(out_len >= 4);
297 output[0] = (value)&0xFF;
298 output[1] = (value >> 8) & 0xFF;
299 output[2] = (value >> 16) & 0xFF;
300 output[3] = (value >> 24) & 0xFF;
303BOOL security_mac_data(
const BYTE* mac_salt_key,
size_t mac_salt_key_length,
const BYTE* data,
304 size_t length, BYTE* output,
size_t output_length)
306 WINPR_DIGEST_CTX* sha1 = NULL;
307 WINPR_DIGEST_CTX* md5 = NULL;
308 BYTE length_le[4] = { 0 };
309 BYTE sha1_digest[WINPR_SHA1_DIGEST_LENGTH] = { 0 };
312 WINPR_ASSERT(length <= UINT32_MAX);
313 WINPR_ASSERT(mac_salt_key_length == WINPR_MD5_DIGEST_LENGTH);
314 WINPR_ASSERT(output_length == WINPR_MD5_DIGEST_LENGTH);
317 security_UINT32_le(length_le,
sizeof(length_le),
321 if (!(sha1 = winpr_Digest_New()))
324 if (!winpr_Digest_Init(sha1, WINPR_MD_SHA1))
327 if (!winpr_Digest_Update(sha1, mac_salt_key, mac_salt_key_length))
330 if (!winpr_Digest_Update(sha1, pad1,
sizeof(pad1)))
333 if (!winpr_Digest_Update(sha1, length_le,
sizeof(length_le)))
336 if (!winpr_Digest_Update(sha1, data, length))
339 if (!winpr_Digest_Final(sha1, sha1_digest,
sizeof(sha1_digest)))
343 if (!(md5 = winpr_Digest_New()))
352 if (!winpr_Digest_Init_Allow_FIPS(md5, WINPR_MD_MD5))
355 if (!winpr_Digest_Update(md5, mac_salt_key, 16))
358 if (!winpr_Digest_Update(md5, pad2,
sizeof(pad2)))
361 if (!winpr_Digest_Update(md5, sha1_digest,
sizeof(sha1_digest)))
364 if (!winpr_Digest_Final(md5, output, output_length))
370 WLog_ERR(TAG,
"failed to create security mac");
371 winpr_Digest_Free(sha1);
372 winpr_Digest_Free(md5);
376BOOL security_mac_signature(rdpRdp* rdp,
const BYTE* data, UINT32 length, BYTE* output,
379 WINPR_DIGEST_CTX* sha1 = NULL;
380 WINPR_DIGEST_CTX* md5 = NULL;
381 BYTE length_le[4] = { 0 };
382 BYTE md5_digest[WINPR_MD5_DIGEST_LENGTH] = { 0 };
383 BYTE sha1_digest[WINPR_SHA1_DIGEST_LENGTH] = { 0 };
387 WINPR_ASSERT(data || (length == 0));
388 WINPR_ASSERT(output);
389 WINPR_ASSERT(out_len >= 8);
393 security_UINT32_le(length_le,
sizeof(length_le), length);
396 if (!(sha1 = winpr_Digest_New()))
399 if (!winpr_Digest_Init(sha1, WINPR_MD_SHA1))
402 if (!winpr_Digest_Update(sha1, rdp->sign_key, rdp->rc4_key_len))
405 if (!winpr_Digest_Update(sha1, pad1,
sizeof(pad1)))
408 if (!winpr_Digest_Update(sha1, length_le,
sizeof(length_le)))
411 if (!winpr_Digest_Update(sha1, data, length))
414 if (!winpr_Digest_Final(sha1, sha1_digest,
sizeof(sha1_digest)))
418 if (!(md5 = winpr_Digest_New()))
421 if (!winpr_Digest_Init(md5, WINPR_MD_MD5))
424 if (!winpr_Digest_Update(md5, rdp->sign_key, rdp->rc4_key_len))
427 if (!winpr_Digest_Update(md5, pad2,
sizeof(pad2)))
430 if (!winpr_Digest_Update(md5, sha1_digest,
sizeof(sha1_digest)))
433 if (!winpr_Digest_Final(md5, md5_digest,
sizeof(md5_digest)))
436 memcpy(output, md5_digest, 8);
440 WLog_WARN(TAG,
"security mac generation failed");
441 winpr_Digest_Free(sha1);
442 winpr_Digest_Free(md5);
446BOOL security_salted_mac_signature(rdpRdp* rdp,
const BYTE* data, UINT32 length, BOOL encryption,
447 BYTE* output,
size_t out_len)
449 WINPR_DIGEST_CTX* sha1 = NULL;
450 WINPR_DIGEST_CTX* md5 = NULL;
451 BYTE length_le[4] = { 0 };
452 BYTE use_count_le[4] = { 0 };
453 BYTE md5_digest[WINPR_MD5_DIGEST_LENGTH] = { 0 };
454 BYTE sha1_digest[WINPR_SHA1_DIGEST_LENGTH] = { 0 };
458 WINPR_ASSERT(data || (length == 0));
459 WINPR_ASSERT(output);
460 WINPR_ASSERT(out_len >= 8);
464 security_UINT32_le(length_le,
sizeof(length_le), length);
468 security_UINT32_le(use_count_le,
sizeof(use_count_le), rdp->encrypt_checksum_use_count);
476 security_UINT32_le(use_count_le,
sizeof(use_count_le),
477 rdp->decrypt_checksum_use_count - 1u);
481 if (!(sha1 = winpr_Digest_New()))
484 if (!winpr_Digest_Init(sha1, WINPR_MD_SHA1))
487 if (!winpr_Digest_Update(sha1, rdp->sign_key, rdp->rc4_key_len))
490 if (!winpr_Digest_Update(sha1, pad1,
sizeof(pad1)))
493 if (!winpr_Digest_Update(sha1, length_le,
sizeof(length_le)))
496 if (!winpr_Digest_Update(sha1, data, length))
499 if (!winpr_Digest_Update(sha1, use_count_le,
sizeof(use_count_le)))
502 if (!winpr_Digest_Final(sha1, sha1_digest,
sizeof(sha1_digest)))
506 if (!(md5 = winpr_Digest_New()))
509 if (!winpr_Digest_Init(md5, WINPR_MD_MD5))
512 if (!winpr_Digest_Update(md5, rdp->sign_key, rdp->rc4_key_len))
515 if (!winpr_Digest_Update(md5, pad2,
sizeof(pad2)))
518 if (!winpr_Digest_Update(md5, sha1_digest,
sizeof(sha1_digest)))
521 if (!winpr_Digest_Final(md5, md5_digest,
sizeof(md5_digest)))
524 memcpy(output, md5_digest, 8);
528 WLog_WARN(TAG,
"security mac signature generation failed");
530 winpr_Digest_Free(sha1);
531 winpr_Digest_Free(md5);
535static BOOL security_A(
const BYTE* master_secret,
size_t master_len,
const BYTE* client_random,
536 size_t client_len,
const BYTE* server_random,
size_t server_len,
537 BYTE* output,
size_t out_len)
539 WINPR_ASSERT(out_len >= 32);
541 return security_premaster_hash(A,
sizeof(A), master_secret, master_len, client_random,
542 client_len, server_random, server_len, &output[0], 16) &&
543 security_premaster_hash(BB,
sizeof(BB), master_secret, master_len, client_random,
544 client_len, server_random, server_len, &output[16], 16) &&
545 security_premaster_hash(CCC,
sizeof(CCC), master_secret, master_len, client_random,
546 client_len, server_random, server_len, &output[32],
550static BOOL security_X(
const BYTE* master_secret,
size_t master_len,
const BYTE* client_random,
551 size_t client_len,
const BYTE* server_random,
size_t server_len,
552 BYTE* output,
size_t out_len)
554 const BYTE X[] = {
'X' };
555 const BYTE YY[] = {
'Y',
'Y' };
556 const BYTE ZZZ[] = {
'Z',
'Z',
'Z' };
558 WINPR_ASSERT(out_len >= 32);
560 return security_premaster_hash(X,
sizeof(X), master_secret, master_len, client_random,
561 client_len, server_random, server_len, &output[0], 16) &&
562 security_premaster_hash(YY,
sizeof(YY), master_secret, master_len, client_random,
563 client_len, server_random, server_len, &output[16], 16) &&
564 security_premaster_hash(ZZZ,
sizeof(ZZZ), master_secret, master_len, client_random,
565 client_len, server_random, server_len, &output[32],
569static void fips_expand_key_bits(
const BYTE* in, WINPR_ATTR_UNUSED
size_t in_len, BYTE* out,
570 WINPR_ATTR_UNUSED
size_t out_len)
572 BYTE buf[21] = { 0 };
575 WINPR_ASSERT(in_len >=
sizeof(buf));
578 WINPR_ASSERT(out_len >= 24);
581 for (
size_t i = 0; i <
sizeof(buf); i++)
582 buf[i] = fips_reverse_table[in[i]];
586 for (
size_t i = 0; i < 24; i++, b += 7)
588 const size_t p = b / 8;
589 const size_t r = b % 8;
591 WINPR_ASSERT(p <
sizeof(buf));
594 out[i] = (buf[p] << r) & 0xfe;
598 WINPR_ASSERT(p + 1 <
sizeof(buf));
600 BYTE c = (BYTE)(buf[p] << r) & 0xFF;
601 c |= buf[p + 1] >> (8 - r);
608 for (
size_t i = 0; i < 24; i++)
609 out[i] = fips_oddparity_table[fips_reverse_table[out[i]]];
612BOOL security_establish_keys(rdpRdp* rdp)
614 BYTE pre_master_secret[48] = { 0 };
615 BYTE master_secret[48] = { 0 };
616 BYTE session_key_blob[48] = { 0 };
617 BYTE salt[] = { 0xD1, 0x26, 0x9E };
621 const rdpSettings* settings = rdp->settings;
622 WINPR_ASSERT(settings);
626 WINPR_ASSERT(client_random);
627 WINPR_ASSERT(server_random);
629 const UINT32 ClientRandomLength =
631 const UINT32 ServerRandomLength =
633 WINPR_ASSERT(ClientRandomLength == 32);
634 WINPR_ASSERT(ServerRandomLength == 32);
636 if (settings->EncryptionMethods == ENCRYPTION_METHOD_FIPS)
638 BYTE client_encrypt_key_t[WINPR_SHA1_DIGEST_LENGTH + 1] = { 0 };
639 BYTE client_decrypt_key_t[WINPR_SHA1_DIGEST_LENGTH + 1] = { 0 };
640 WINPR_DIGEST_CTX* sha1 = winpr_Digest_New();
644 if (!winpr_Digest_Init(sha1, WINPR_MD_SHA1) ||
645 !winpr_Digest_Update(sha1, client_random + 16, 16) ||
646 !winpr_Digest_Update(sha1, server_random + 16, 16) ||
647 !winpr_Digest_Final(sha1, client_encrypt_key_t,
sizeof(client_encrypt_key_t)))
649 winpr_Digest_Free(sha1);
653 client_encrypt_key_t[20] = client_encrypt_key_t[0];
655 if (!winpr_Digest_Init(sha1, WINPR_MD_SHA1) ||
656 !winpr_Digest_Update(sha1, client_random, 16) ||
657 !winpr_Digest_Update(sha1, server_random, 16) ||
658 !winpr_Digest_Final(sha1, client_decrypt_key_t,
sizeof(client_decrypt_key_t)))
660 winpr_Digest_Free(sha1);
664 client_decrypt_key_t[20] = client_decrypt_key_t[0];
666 if (!winpr_Digest_Init(sha1, WINPR_MD_SHA1) ||
667 !winpr_Digest_Update(sha1, client_decrypt_key_t, WINPR_SHA1_DIGEST_LENGTH) ||
668 !winpr_Digest_Update(sha1, client_encrypt_key_t, WINPR_SHA1_DIGEST_LENGTH) ||
669 !winpr_Digest_Final(sha1, rdp->fips_sign_key, WINPR_SHA1_DIGEST_LENGTH))
671 winpr_Digest_Free(sha1);
675 winpr_Digest_Free(sha1);
677 if (settings->ServerMode)
679 fips_expand_key_bits(client_encrypt_key_t,
sizeof(client_encrypt_key_t),
680 rdp->fips_decrypt_key,
sizeof(rdp->fips_decrypt_key));
681 fips_expand_key_bits(client_decrypt_key_t,
sizeof(client_decrypt_key_t),
682 rdp->fips_encrypt_key,
sizeof(rdp->fips_encrypt_key));
686 fips_expand_key_bits(client_encrypt_key_t,
sizeof(client_encrypt_key_t),
687 rdp->fips_encrypt_key,
sizeof(rdp->fips_encrypt_key));
688 fips_expand_key_bits(client_decrypt_key_t,
sizeof(client_decrypt_key_t),
689 rdp->fips_decrypt_key,
sizeof(rdp->fips_decrypt_key));
693 memcpy(pre_master_secret, client_random, 24);
694 memcpy(pre_master_secret + 24, server_random, 24);
696 if (!security_A(pre_master_secret,
sizeof(pre_master_secret), client_random, ClientRandomLength,
697 server_random, ServerRandomLength, master_secret,
sizeof(master_secret)) ||
698 !security_X(master_secret,
sizeof(master_secret), client_random, ClientRandomLength,
699 server_random, ServerRandomLength, session_key_blob,
sizeof(session_key_blob)))
704 memcpy(rdp->sign_key, session_key_blob, 16);
706 if (settings->ServerMode)
708 status = security_md5_16_32_32(&session_key_blob[16], client_random, server_random,
709 rdp->encrypt_key,
sizeof(rdp->encrypt_key));
710 status &= security_md5_16_32_32(&session_key_blob[32], client_random, server_random,
711 rdp->decrypt_key,
sizeof(rdp->decrypt_key));
721 security_md5_16_32_32_Allow_FIPS(&session_key_blob[16], client_random, server_random,
722 rdp->decrypt_key,
sizeof(rdp->decrypt_key));
724 security_md5_16_32_32_Allow_FIPS(&session_key_blob[32], client_random, server_random,
725 rdp->encrypt_key,
sizeof(rdp->encrypt_key));
731 if (settings->EncryptionMethods == ENCRYPTION_METHOD_40BIT)
733 memcpy(rdp->sign_key, salt, 3);
734 memcpy(rdp->decrypt_key, salt, 3);
735 memcpy(rdp->encrypt_key, salt, 3);
736 rdp->rc4_key_len = 8;
738 else if (settings->EncryptionMethods == ENCRYPTION_METHOD_56BIT)
740 memcpy(rdp->sign_key, salt, 1);
741 memcpy(rdp->decrypt_key, salt, 1);
742 memcpy(rdp->encrypt_key, salt, 1);
743 rdp->rc4_key_len = 8;
745 else if (settings->EncryptionMethods == ENCRYPTION_METHOD_128BIT)
747 rdp->rc4_key_len = 16;
750 if (!security_lock(rdp))
752 memcpy(rdp->decrypt_update_key, rdp->decrypt_key, 16);
753 memcpy(rdp->encrypt_update_key, rdp->encrypt_key, 16);
754 rdp->decrypt_use_count = 0;
755 rdp->decrypt_checksum_use_count = 0;
756 rdp->encrypt_use_count = 0;
757 rdp->encrypt_checksum_use_count = 0;
759 return security_unlock(rdp);
762static BOOL security_key_update(BYTE* key, BYTE* update_key,
size_t key_len, rdpRdp* rdp)
764 BYTE sha1h[WINPR_SHA1_DIGEST_LENGTH] = { 0 };
765 WINPR_DIGEST_CTX* sha1 = NULL;
766 WINPR_DIGEST_CTX* md5 = NULL;
767 WINPR_RC4_CTX* rc4 = NULL;
768 BYTE salt[] = { 0xD1, 0x26, 0x9E };
770 WLog_DBG(TAG,
"updating RDP key");
772 if (!(sha1 = winpr_Digest_New()))
775 if (!winpr_Digest_Init(sha1, WINPR_MD_SHA1))
778 if (!winpr_Digest_Update(sha1, update_key, key_len))
781 if (!winpr_Digest_Update(sha1, pad1,
sizeof(pad1)))
784 if (!winpr_Digest_Update(sha1, key, key_len))
787 if (!winpr_Digest_Final(sha1, sha1h,
sizeof(sha1h)))
790 if (!(md5 = winpr_Digest_New()))
793 if (!winpr_Digest_Init(md5, WINPR_MD_MD5))
796 if (!winpr_Digest_Update(md5, update_key, key_len))
799 if (!winpr_Digest_Update(md5, pad2,
sizeof(pad2)))
802 if (!winpr_Digest_Update(md5, sha1h,
sizeof(sha1h)))
805 if (!winpr_Digest_Final(md5, key, WINPR_MD5_DIGEST_LENGTH))
808 if (!(rc4 = winpr_RC4_New(key, key_len)))
811 if (!winpr_RC4_Update(rc4, key_len, key, key))
814 if (rdp->settings->EncryptionMethods == ENCRYPTION_METHOD_40BIT)
815 memcpy(key, salt, 3);
816 else if (rdp->settings->EncryptionMethods == ENCRYPTION_METHOD_56BIT)
817 memcpy(key, salt, 1);
821 winpr_Digest_Free(sha1);
822 winpr_Digest_Free(md5);
827BOOL security_encrypt(BYTE* data,
size_t length, rdpRdp* rdp)
832 if (!rdp->rc4_encrypt_key)
834 WLog_ERR(TAG,
"rdp->rc4_encrypt_key=%p", rdp->rc4_encrypt_key);
838 if (rdp->encrypt_use_count >= 4096)
840 if (!security_key_update(rdp->encrypt_key, rdp->encrypt_update_key, rdp->rc4_key_len, rdp))
843 if (!rdp_reset_rc4_encrypt_keys(rdp))
847 if (!winpr_RC4_Update(rdp->rc4_encrypt_key, length, data, data))
850 rdp->encrypt_use_count++;
851 rdp->encrypt_checksum_use_count++;
857BOOL security_decrypt(BYTE* data,
size_t length, rdpRdp* rdp)
861 WINPR_ASSERT(data || (length == 0));
864 if (!rdp->rc4_decrypt_key)
866 WLog_ERR(TAG,
"rdp->rc4_decrypt_key=%p", rdp->rc4_decrypt_key);
870 if (rdp->decrypt_use_count >= 4096)
872 if (!security_key_update(rdp->decrypt_key, rdp->decrypt_update_key, rdp->rc4_key_len, rdp))
875 if (!rdp_reset_rc4_decrypt_keys(rdp))
879 if (!winpr_RC4_Update(rdp->rc4_decrypt_key, length, data, data))
882 rdp->decrypt_use_count += 1;
883 rdp->decrypt_checksum_use_count++;
887 WLog_WARN(TAG,
"Failed to decrypt security");
891BOOL security_hmac_signature(
const BYTE* data,
size_t length, BYTE* output,
size_t out_len,
894 BYTE buf[WINPR_SHA1_DIGEST_LENGTH] = { 0 };
895 BYTE use_count_le[4] = { 0 };
896 WINPR_HMAC_CTX* hmac = NULL;
900 WINPR_ASSERT(output);
904 security_UINT32_le(use_count_le,
sizeof(use_count_le), rdp->encrypt_use_count);
906 if (!(hmac = winpr_HMAC_New()))
909 if (!winpr_HMAC_Init(hmac, WINPR_MD_SHA1, rdp->fips_sign_key, WINPR_SHA1_DIGEST_LENGTH))
912 if (!winpr_HMAC_Update(hmac, data, length))
915 if (!winpr_HMAC_Update(hmac, use_count_le, 4))
918 if (!winpr_HMAC_Final(hmac, buf, WINPR_SHA1_DIGEST_LENGTH))
921 memmove(output, buf, 8);
924 winpr_HMAC_Free(hmac);
928BOOL security_fips_encrypt(BYTE* data,
size_t length, rdpRdp* rdp)
933 if (!winpr_Cipher_Update(rdp->fips_encrypt, data, length, data, &olen))
936 rdp->encrypt_use_count++;
942BOOL security_fips_decrypt(BYTE* data,
size_t length, rdpRdp* rdp)
946 if (!rdp || !rdp->fips_decrypt)
948 WLog_ERR(TAG,
"rdp=%p, rdp->fips_decrypt=%p", rdp, rdp ? rdp->fips_decrypt : NULL);
952 if (!winpr_Cipher_Update(rdp->fips_decrypt, data, length, data, &olen))
958BOOL security_fips_check_signature(
const BYTE* data,
size_t length,
const BYTE* sig,
size_t sig_len,
961 BYTE buf[WINPR_SHA1_DIGEST_LENGTH] = { 0 };
962 BYTE use_count_le[4] = { 0 };
963 WINPR_HMAC_CTX* hmac = NULL;
966 security_UINT32_le(use_count_le,
sizeof(use_count_le), rdp->decrypt_use_count++);
968 if (!(hmac = winpr_HMAC_New()))
971 if (!winpr_HMAC_Init(hmac, WINPR_MD_SHA1, rdp->fips_sign_key, WINPR_SHA1_DIGEST_LENGTH))
974 if (!winpr_HMAC_Update(hmac, data, length))
977 if (!winpr_HMAC_Update(hmac, use_count_le, 4))
980 if (!winpr_HMAC_Final(hmac, buf, WINPR_SHA1_DIGEST_LENGTH))
983 if ((sig_len >= 8) && (memcmp(sig, buf, 8) == 0))
988 WLog_WARN(TAG,
"signature check failed");
989 winpr_HMAC_Free(hmac);
993BOOL security_lock(rdpRdp* rdp)
996 EnterCriticalSection(&rdp->critical);
1000BOOL security_unlock(rdpRdp* rdp)
1003 LeaveCriticalSection(&rdp->critical);
FREERDP_API UINT32 freerdp_settings_get_uint32(const rdpSettings *settings, FreeRDP_Settings_Keys_UInt32 id)
Returns a UINT32 settings value.
FREERDP_API const void * freerdp_settings_get_pointer(const rdpSettings *settings, FreeRDP_Settings_Keys_Pointer id)
Returns a immutable pointer settings value.