~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to libdrizzle/password.c

  • Committer: Monty Taylor
  • Date: 2008-09-16 00:00:48 UTC
  • mto: This revision was merged to the branch mainline in revision 391.
  • Revision ID: monty@inaugust.com-20080916000048-3rvrv3gv9l0ad3gs
Fixed copyright headers in drizzled/

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* - mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
 
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
 
 *
4
 
 *  Copyright (C) 2008 Sun Microsystems, Inc.
5
 
 *
6
 
 *  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
8
 
 *  the Free Software Foundation; version 2 of the License.
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., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
 
 */
 
1
/* Copyright (C) 2000-2006 MySQL 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; version 2 of the License.
 
6
 
 
7
   This program is distributed in the hope that it will be useful,
 
8
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
9
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
10
   GNU General Public License for more details.
 
11
 
 
12
   You should have received a copy of the GNU General Public License
 
13
   along with this program; if not, write to the Free Software
 
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
19
15
 
20
16
/* password checking routines */
21
17
/*****************************************************************************
62
58
 
63
59
*****************************************************************************/
64
60
 
 
61
#include <drizzled/global.h>
65
62
#include "libdrizzle.h"
66
 
#include "libdrizzle_priv.h"
67
 
#include <libdrizzle/password.h>
68
 
#include <stdlib.h>
69
 
#include <string.h>
70
63
 
71
64
/************ MySQL 3.23-4.0 authentication routines: untouched ***********/
72
65
 
125
118
  {
126
119
    if (*password == ' ' || *password == '\t')
127
120
      continue;                                 /* skip space in password */
128
 
    tmp= (uint32_t) (unsigned char) *password;
 
121
    tmp= (uint32_t) (uchar) *password;
129
122
    nr^= (((nr & 63)+add)*tmp)+ (nr << 8);
130
123
    nr2+=(nr2 << 8) ^ nr;
131
124
    add+=tmp;
136
129
 
137
130
static inline uint8_t char_val(uint8_t X)
138
131
{
139
 
  return (uint32_t) (X >= '0' && X <= '9' ? X-'0' :
 
132
  return (uint) (X >= '0' && X <= '9' ? X-'0' :
140
133
      X >= 'A' && X <= 'Z' ? X-'A'+10 : X-'a'+10);
141
134
}
142
135
 
155
148
    rand_st  INOUT structure used for number generation
156
149
*/
157
150
 
158
 
void create_random_string(char *to, uint32_t length, struct rand_struct *rand_st)
 
151
void create_random_string(char *to, uint length, struct rand_struct *rand_st)
159
152
{
160
153
  char *end= to + length;
161
154
  /* Use pointer arithmetics as it is faster way to do so. */
165
158
}
166
159
 
167
160
 
 
161
/* Character to use as version identifier for version 4.1 */
 
162
 
 
163
#define PVERSION41_CHAR '*'
 
164
 
168
165
 
169
166
/*
170
167
    Convert given octet sequence to asciiz string of hex characters;
178
175
    buf+len*2
179
176
*/
180
177
 
181
 
char *octet2hex(char *to, const char *str, uint32_t len)
 
178
char *octet2hex(char *to, const char *str, uint len)
182
179
{
183
180
  const char *str_end= str + len; 
184
181
  for (; str != str_end; ++str)
185
182
  {
186
 
    *to++= _dig_vec_upper[((unsigned char) *str) >> 4];
187
 
    *to++= _dig_vec_upper[((unsigned char) *str) & 0x0F];
 
183
    *to++= _dig_vec_upper[((uchar) *str) >> 4];
 
184
    *to++= _dig_vec_upper[((uchar) *str) & 0x0F];
188
185
  }
189
186
  *to= '\0';
190
187
  return to;