X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=secure.c;h=45cebf02a0ff3c4283153ce74ea4ee33230a8c19;hb=1b88121b3e37f01bd226aa54f65f413f5d1fe49e;hp=1f7797b023e73fc05601a09ad89dfe9fbc8d0ebf;hpb=5e973666e6687d55db330a3596c05ffd53da2b95;p=rdpsrv diff --git a/secure.c b/secure.c index 1f7797b..45cebf0 100644 --- a/secure.c +++ b/secure.c @@ -266,8 +266,6 @@ sec_encrypt(uint8 * data, int length) use_count = 0; } - printf("RC4-ing %u bytes with DECRYPT, uc=%u\n", length, use_count); - RC4(&rc4_decrypt_key, length, data, data); use_count++; } @@ -847,11 +845,9 @@ sec_recv(void) if (/*g_encryption || !g_licence_issued*/ 1) { in_uint32_le(s, sec_flags); - printf("sec_flags=%x\n", sec_flags); if (sec_flags & SEC_ENCRYPT) { - printf("encrypt\n"); in_uint8s(s, 8); /* signature */ sec_decrypt(s->p, s->end - s->p); } @@ -860,7 +856,6 @@ sec_recv(void) { uint8 tag; in_uint8(s, tag); - printf("SEC_LICENSE_NEG tag %x\n", tag); if (tag == LICENCE_TAG_PRESENT) { process_presented_license(s); @@ -875,7 +870,6 @@ sec_recv(void) { STREAM s; - printf("Sending DEMAND_ACTIVE (0x%x bytes)\n", sizeof(demand_active)); s = sec_init(SEC_ENCRYPT, sizeof(demand_active)); out_uint8p(s, demand_active, sizeof(demand_active)); s_mark_end(s); @@ -888,7 +882,6 @@ sec_recv(void) if (sec_flags & SEC_LOGON_INFO) { - printf("Received logon packet!\n"); rdp_get_logon_info(s); // demand a license @@ -909,7 +902,6 @@ sec_recv(void) uint8 inr[SEC_MODULUS_SIZE]; int i; - printf("Receiving the client random!\n"); in_uint32_le(s, length); if (length != SEC_MODULUS_SIZE + SEC_PADDING_SIZE) { error("Client random was wrong size, %u bytes\n", length);