/[rdesktop]/sourceforge.net/trunk/rdesktop/secure.c
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /sourceforge.net/trunk/rdesktop/secure.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 28 by matty, Wed Jun 20 13:54:48 2001 UTC revision 30 by matty, Fri Sep 14 13:51:38 2001 UTC
# Line 1  Line 1 
1  /*  /*
2     rdesktop: A Remote Desktop Protocol client.     rdesktop: A Remote Desktop Protocol client.
3     Protocol services - RDP encryption and licensing     Protocol services - RDP encryption and licensing
4     Copyright (C) Matthew Chapman 1999-2000     Copyright (C) Matthew Chapman 1999-2001
5    
6     This program is free software; you can redistribute it and/or modify     This program is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by     it under the terms of the GNU General Public License as published by
# Line 28  extern char hostname[16]; Line 28  extern char hostname[16];
28  extern int width;  extern int width;
29  extern int height;  extern int height;
30  extern int keylayout;  extern int keylayout;
31  extern BOOL use_encryption;  extern BOOL encryption;
32  extern BOOL licence_issued;  extern BOOL licence_issued;
33    
34  static int rc4_key_len;  static int rc4_key_len;
# Line 126  sec_generate_keys(uint8 *client_key, uin Line 126  sec_generate_keys(uint8 *client_key, uin
126    
127          if (rc4_key_size == 1)          if (rc4_key_size == 1)
128          {          {
129                  DEBUG("40-bit encryption enabled\n");                  DEBUG(("40-bit encryption enabled\n"));
130                  sec_make_40bit(sec_sign_key);                  sec_make_40bit(sec_sign_key);
131                  sec_make_40bit(sec_decrypt_key);                  sec_make_40bit(sec_decrypt_key);
132                  sec_make_40bit(sec_encrypt_key);                  sec_make_40bit(sec_encrypt_key);
# Line 134  sec_generate_keys(uint8 *client_key, uin Line 134  sec_generate_keys(uint8 *client_key, uin
134          }          }
135          else          else
136          {          {
137                  DEBUG("128-bit encryption enabled\n");                  DEBUG(("128-bit encryption enabled\n"));
138                  rc4_key_len = 16;                  rc4_key_len = 16;
139          }          }
140    
# Line 339  sec_send(STREAM s, uint32 flags) Line 339  sec_send(STREAM s, uint32 flags)
339                  flags &= ~SEC_ENCRYPT;                  flags &= ~SEC_ENCRYPT;
340                  datalen = s->end - s->p - 8;                  datalen = s->end - s->p - 8;
341    
342  #if RDP_DEBUG  #if WITH_DEBUG
343                  DEBUG("Sending encrypted packet:\n");                  DEBUG(("Sending encrypted packet:\n"));
344                  hexdump(s->p + 8, datalen);                  hexdump(s->p + 8, datalen);
345  #endif  #endif
346    
# Line 418  sec_out_mcs_data(STREAM s) Line 418  sec_out_mcs_data(STREAM s)
418          /* Client encryption settings */          /* Client encryption settings */
419          out_uint16_le(s, SEC_TAG_CLI_CRYPT);          out_uint16_le(s, SEC_TAG_CLI_CRYPT);
420          out_uint16(s, 8);       /* length */          out_uint16(s, 8);       /* length */
421          out_uint32_le(s, use_encryption ? 1 : 0);       /* encryption enabled */          out_uint32_le(s, encryption ? 1 : 0);   /* encryption enabled */
422          s_mark_end(s);          s_mark_end(s);
423  }  }
424    
# Line 431  sec_parse_public_key(STREAM s, uint8 **m Line 431  sec_parse_public_key(STREAM s, uint8 **m
431          in_uint32_le(s, magic);          in_uint32_le(s, magic);
432          if (magic != SEC_RSA_MAGIC)          if (magic != SEC_RSA_MAGIC)
433          {          {
434                  ERROR("RSA magic 0x%x\n", magic);                  error("RSA magic 0x%x\n", magic);
435                  return False;                  return False;
436          }          }
437    
438          in_uint32_le(s, modulus_len);          in_uint32_le(s, modulus_len);
439          if (modulus_len != SEC_MODULUS_SIZE + SEC_PADDING_SIZE)          if (modulus_len != SEC_MODULUS_SIZE + SEC_PADDING_SIZE)
440          {          {
441                  ERROR("modulus len 0x%x\n", modulus_len);                  error("modulus len 0x%x\n", modulus_len);
442                  return False;                  return False;
443          }          }
444    
# Line 466  sec_parse_crypt_info(STREAM s, uint32 *r Line 466  sec_parse_crypt_info(STREAM s, uint32 *r
466    
467          if (random_len != SEC_RANDOM_SIZE)          if (random_len != SEC_RANDOM_SIZE)
468          {          {
469                  ERROR("random len %d\n", random_len);                  error("random len %d\n", random_len);
470                  return False;                  return False;
471          }          }
472    
# Line 501  sec_parse_crypt_info(STREAM s, uint32 *r Line 501  sec_parse_crypt_info(STREAM s, uint32 *r
501                                  break;                                  break;
502    
503                          default:                          default:
504                                  NOTIMP("crypt tag 0x%x\n", tag);                                  unimpl("crypt tag 0x%x\n", tag);
505                  }                  }
506    
507                  s->p = next_tag;                  s->p = next_tag;
# Line 559  sec_process_mcs_data(STREAM s) Line 559  sec_process_mcs_data(STREAM s)
559                                  break;                                  break;
560    
561                          default:                          default:
562                                  NOTIMP("response tag 0x%x\n", tag);                                  unimpl("response tag 0x%x\n", tag);
563                  }                  }
564    
565                  s->p = next_tag;                  s->p = next_tag;
# Line 575  sec_recv() Line 575  sec_recv()
575    
576          while ((s = mcs_recv()) != NULL)          while ((s = mcs_recv()) != NULL)
577          {          {
578                  if (use_encryption || !licence_issued)                  if (encryption || !licence_issued)
579                  {                  {
580                          in_uint32_le(s, sec_flags);                          in_uint32_le(s, sec_flags);
581    
# Line 613  sec_connect(char *server) Line 613  sec_connect(char *server)
613                  return False;                  return False;
614    
615          sec_process_mcs_data(&mcs_data);          sec_process_mcs_data(&mcs_data);
616          if (use_encryption)          if (encryption)
617                  sec_establish_key();                  sec_establish_key();
618          return True;          return True;
619  }  }

Legend:
Removed from v.28  
changed lines
  Added in v.30

  ViewVC Help
Powered by ViewVC 1.1.26