sql_crypt.cpp
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

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