Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
f79cb0de
Commit
f79cb0de
authored
Mar 11, 2009
by
Georgi Kodinov
Browse files
Options
Browse Files
Download
Plain Diff
merge of bug 42434 to 5.1-bugteam
parents
a43992d7
3033ea85
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
290 additions
and
377 deletions
+290
-377
include/my_md5.h
include/my_md5.h
+26
-64
mysys/md5.c
mysys/md5.c
+262
-305
sql/item_strfunc.cc
sql/item_strfunc.cc
+1
-4
sql/table.cc
sql/table.cc
+1
-4
No files found.
include/my_md5.h
View file @
f79cb0de
...
...
@@ -13,80 +13,42 @@
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
/* See md5.c for explanation and copyright information. */
/* MD5.H - header file for MD5C.C
/*
* $FreeBSD: src/contrib/cvs/lib/md5.h,v 1.2 1999/12/11 15:10:02 peter Exp $
*/
/* Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All
rights reserved.
/* Unlike previous versions of this code, uint32 need not be exactly
32 bits, merely 32 bits or more. Choosing a data type which is 32
bits instead of 64 is not important; speed is considerably more
important. ANSI guarantees that "unsigned long" will be big enough,
and always using it seems to have few disadvantages. */
typedef
uint32
cvs_uint32
;
License to copy and use this software is granted provided that it
is identified as the "RSA Data Security, Inc. MD5 Message-Digest
Algorithm" in all material mentioning or referencing this software
or this function.
License is also granted to make and use derivative works provided
that such works are identified as "derived from the RSA Data
Security, Inc. MD5 Message-Digest Algorithm" in all material
mentioning or referencing the derived work.
RSA Data Security, Inc. makes no representations concerning either
the merchantability of this software or the suitability of this
software for any particular purpose. It is provided "as is"
without express or implied warranty of any kind.
These notices must be retained in any copies of any part of this
documentation and/or software.
*/
/* GLOBAL.H - RSAREF types and constants
*/
/* PROTOTYPES should be set to one if and only if the compiler supports
function argument prototyping.
The following makes PROTOTYPES default to 0 if it has not already
been defined with C compiler flags.
*/
/* egcs 1.1.2 under linux didn't defined it.... :( */
#ifndef PROTOTYPES
#define PROTOTYPES 1
/* Assume prototypes */
#endif
/* POINTER defines a generic pointer type */
typedef
unsigned
char
*
POINTER
;
/* UINT2 defines a two byte word */
typedef
uint16
UINT2
;
/* Fix for MySQL / Alpha */
/* UINT4 defines a four byte word */
typedef
uint32
UINT4
;
/* Fix for MySQL / Alpha */
/* PROTO_LIST is defined depending on how PROTOTYPES is defined above.
If using PROTOTYPES, then PROTO_LIST returns the list, otherwise it
returns an empty list.
*/
#if PROTOTYPES
#define PROTO_LIST(list) list
#else
#define PROTO_LIST(list) ()
#endif
/* MD5 context. */
typedef
struct
{
UINT4
state
[
4
];
/* state (ABCD) */
UINT4
count
[
2
];
/* number of bits, modulo 2^64 (lsb first) */
unsigned
char
buffer
[
64
];
/* input buffer */
}
my_MD5
_CTX
;
cvs_uint32
buf
[
4
];
cvs_uint32
bits
[
2
];
unsigned
char
in
[
64
];
}
my_MD5
Context
;
#ifdef __cplusplus
extern
"C"
{
#endif
void
my_MD5Init
PROTO_LIST
((
my_MD5_CTX
*
));
void
my_MD5Update
PROTO_LIST
((
my_MD5_CTX
*
,
unsigned
char
*
,
unsigned
int
));
void
my_MD5Final
PROTO_LIST
((
unsigned
char
[
16
],
my_MD5_CTX
*
));
void
my_MD5Init
(
my_MD5Context
*
context
);
void
my_MD5Update
(
my_MD5Context
*
context
,
unsigned
char
const
*
buf
,
unsigned
len
);
void
my_MD5Final
(
unsigned
char
digest
[
16
],
my_MD5Context
*
context
);
#ifdef __cplusplus
}
#endif
#define MY_MD5_HASH(digest,buf,len) \
do { \
my_MD5Context ctx; \
my_MD5Init (&ctx); \
my_MD5Update (&ctx, buf, len); \
my_MD5Final (digest, &ctx); \
} while (0)
mysys/md5.c
View file @
f79cb0de
This diff is collapsed.
Click to expand it.
sql/item_strfunc.cc
View file @
f79cb0de
...
...
@@ -105,13 +105,10 @@ String *Item_func_md5::val_str(String *str)
str
->
set_charset
(
&
my_charset_bin
);
if
(
sptr
)
{
my_MD5_CTX
context
;
uchar
digest
[
16
];
null_value
=
0
;
my_MD5Init
(
&
context
);
my_MD5Update
(
&
context
,(
uchar
*
)
sptr
->
ptr
(),
sptr
->
length
());
my_MD5Final
(
digest
,
&
context
);
MY_MD5_HASH
(
digest
,(
uchar
*
)
sptr
->
ptr
(),
sptr
->
length
());
if
(
str
->
alloc
(
32
))
// Ensure that memory is free
{
null_value
=
1
;
...
...
sql/table.cc
View file @
f79cb0de
...
...
@@ -2982,11 +2982,8 @@ void st_table::reset_item_list(List<Item> *item_list) const
void
TABLE_LIST
::
calc_md5
(
char
*
buffer
)
{
my_MD5_CTX
context
;
uchar
digest
[
16
];
my_MD5Init
(
&
context
);
my_MD5Update
(
&
context
,(
uchar
*
)
select_stmt
.
str
,
select_stmt
.
length
);
my_MD5Final
(
digest
,
&
context
);
MY_MD5_HASH
(
digest
,
(
uchar
*
)
select_stmt
.
str
,
select_stmt
.
length
);
sprintf
((
char
*
)
buffer
,
"%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x"
,
digest
[
0
],
digest
[
1
],
digest
[
2
],
digest
[
3
],
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment