1
/* Copyright (C) 2000-2006 MySQL AB
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.
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.
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 */
1
/* - mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
* Copyright (C) 2008 Sun Microsystems, Inc.
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.
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.
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
16
20
/* password checking routines */
17
21
/*****************************************************************************
59
63
*****************************************************************************/
61
#include <drizzled/global.h>
62
65
#include "libdrizzle.h"
66
#include "libdrizzle_priv.h"
64
70
/************ MySQL 3.23-4.0 authentication routines: untouched ***********/
119
125
if (*password == ' ' || *password == '\t')
120
126
continue; /* skip space in password */
121
tmp= (uint32_t) (uchar) *password;
127
tmp= (uint32_t) (unsigned char) *password;
122
128
nr^= (((nr & 63)+add)*tmp)+ (nr << 8);
123
129
nr2+=(nr2 << 8) ^ nr;
180
186
const char *str_end= str + len;
181
187
for (; str != str_end; ++str)
183
*to++= _dig_vec_upper[((uchar) *str) >> 4];
184
*to++= _dig_vec_upper[((uchar) *str) & 0x0F];
189
*to++= _dig_vec_upper[((unsigned char) *str) >> 4];
190
*to++= _dig_vec_upper[((unsigned char) *str) & 0x0F];