home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / sql / sql_crypt.cpp < prev    next >
C/C++ Source or Header  |  2000-08-31  |  2KB  |  83 lines

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This program is free software; you can redistribute it and/or modify
  4.    it under the terms of the GNU General Public License as published by
  5.    the Free Software Foundation; either version 2 of the License, or
  6.    (at your option) any later version.
  7.    
  8.    This program is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.    GNU General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU General Public License
  14.    along with this program; if not, write to the Free Software
  15.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  16.  
  17.  
  18.  
  19. /*
  20.  Functions to handle the encode() and decode() functions
  21.  The strongness of this crypt is large based on how good the random
  22.  generator is.    It should be ok for short strings, but for communication one
  23.  needs something like 'ssh'.
  24. */
  25.  
  26. #ifdef __GNUC__
  27. #pragma implementation                // gcc: Class implementation
  28. #endif
  29.  
  30. #include "mysql_priv.h"
  31.  
  32. SQL_CRYPT::SQL_CRYPT(const char *password)
  33. {
  34.   ulong rand_nr[2];
  35.   hash_password(rand_nr,password);
  36.   crypt_init(rand_nr);
  37. }
  38.  
  39. void SQL_CRYPT::crypt_init(ulong *rand_nr)
  40. {
  41.   uint i;
  42.   randominit(&rand,rand_nr[0],rand_nr[1]);
  43.  
  44.   for (i=0 ; i<=255; i++)
  45.    decode_buff[i]= (char) i;
  46.  
  47.   for (i=0 ; i<= 255 ; i++)
  48.   {
  49.     int idx= (uint) (rnd(&rand)*255.0);
  50.     char a= decode_buff[idx];
  51.     decode_buff[idx]= decode_buff[i];
  52.     decode_buff[+i]=a;
  53.   }
  54.   for (i=0 ; i <= 255 ; i++)
  55.    encode_buff[(unsigned char) decode_buff[i]]=i;
  56.   org_rand=rand;
  57.   shift=0;
  58. }
  59.  
  60.  
  61. void SQL_CRYPT::encode(char *str,uint length)
  62. {
  63.   for (uint i=0; i < length; i++)
  64.   {
  65.     shift^=(uint) (rnd(&rand)*255.0);
  66.     uint idx= (uint) (uchar) str[0];
  67.     *str++ = (char) ((uchar) encode_buff[idx] ^ shift);
  68.     shift^= idx;
  69.   }
  70. }
  71.  
  72.  
  73. void SQL_CRYPT::decode(char *str,uint length)
  74. {
  75.   for (uint i=0; i < length; i++)
  76.   {
  77.     shift^=(uint) (rnd(&rand)*255.0);
  78.     uint idx= (uint) ((unsigned char) str[0] ^ shift);
  79.     *str = decode_buff[idx];
  80.     shift^= (uint) (uchar) *str++;
  81.   }
  82. }
  83.