vncauth.c
上传用户:sbftbdw
上传日期:2007-01-03
资源大小:379k
文件大小:3k
源码类别:

远程控制编程

开发平台:

Visual C++

  1. //  Copyright (C) 1997, 1998 Olivetti & Oracle Research Laboratory
  2. //
  3. //  This file is part of the VNC system.
  4. //
  5. //  The VNC system is free software; you can redistribute it and/or modify
  6. //  it under the terms of the GNU General Public License as published by
  7. //  the Free Software Foundation; either version 2 of the License, or
  8. //  (at your option) any later version.
  9. //
  10. //  This program is distributed in the hope that it will be useful,
  11. //  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. //  GNU General Public License for more details.
  14. //
  15. //  You should have received a copy of the GNU General Public License
  16. //  along with this program; if not, write to the Free Software
  17. //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,
  18. //  USA.
  19. //
  20. // If the source code for the VNC system is not available from the place 
  21. // whence you received this file, check http://www.orl.co.uk/vnc or contact
  22. // the authors on vnc@orl.co.uk for information on obtaining it.
  23. /*
  24.  *  Functions for VNC password management and authentication.
  25.  *
  26.  */
  27. #include <stdio.h>
  28. #include <stdlib.h>
  29. #include <string.h>
  30. #include <time.h>
  31. #include <sys/types.h>
  32. #include <sys/stat.h>
  33. #include "vncauth.h"
  34. #include "d3des.h"
  35. /*
  36.  *   We use a fixed key to store passwords, since we assume that our local
  37.  *   file system is secure but nonetheless don't want to store passwords
  38.  *   as plaintext.
  39.  */
  40. unsigned char fixedkey[8] = {23,82,107,6,35,78,88,7};
  41. /*
  42.  *   Encrypt a password and store it in a file.
  43.  */
  44. int
  45. vncEncryptPasswd(char *passwd, char *encryptedPasswd)
  46. {
  47.     int i;
  48.     /* pad password with nulls */
  49.     for (i = 0; i < MAXPWLEN; i++) {
  50. if (i < strlen(passwd)) {
  51.     encryptedPasswd[i] = passwd[i];
  52. } else {
  53.     encryptedPasswd[i] = 0;
  54. }
  55.     }
  56.     /* Do encryption in-place - this way we overwrite our copy of the plaintext
  57.        password */
  58.     deskey(fixedkey, EN0);
  59.     des(encryptedPasswd, encryptedPasswd);
  60.     return 8;
  61. }
  62. /*
  63.  *   Decrypt a password.  Returns a pointer to a newly allocated
  64.  *   string containing the password or a null pointer if the password could
  65.  *   not be retrieved for some reason.
  66.  */
  67. char *
  68. vncDecryptPasswd(char *inouttext)
  69. {
  70.     unsigned char *passwd = (unsigned char *)malloc(9);
  71.     deskey(fixedkey, DE1);
  72.     des(inouttext, passwd);
  73.     passwd[8] = 0;
  74.     return (char *)passwd;
  75. }
  76. /*
  77.  *   Generate a set of random bytes for use in challenge-response authentication.
  78.  */
  79. void
  80. vncRandomBytes(unsigned char *where) {
  81.   int i;
  82.   unsigned int seed = (unsigned int) time(0);
  83.   srand(seed);
  84.   for (i=0; i < CHALLENGESIZE; i++) {
  85.     where[i] = (unsigned char)(rand() & 255);    
  86.   }
  87. }
  88. /*
  89.  *   Encrypt some bytes in memory using a password.
  90.  */
  91. void
  92. vncEncryptBytes(unsigned char *where, const char *passwd)
  93. {
  94.     unsigned char key[8];
  95.     int i;
  96.     /* key is simply password padded with nulls */
  97.     for (i = 0; i < 8; i++) {
  98. if (i < strlen(passwd)) {
  99.     key[i] = passwd[i];
  100. } else {
  101.     key[i] = 0;
  102. }
  103.     }
  104.     deskey(key, EN0);
  105.     for (i = 0; i < CHALLENGESIZE; i += 8) {
  106. des(where+i, where+i);
  107.     }
  108. }