mirror of
https://git.code.sf.net/p/quake/quake2forge
synced 2024-12-12 13:42:21 +00:00
Oops! fix up mdfour.
This commit is contained in:
parent
2c644c39af
commit
2c9a907849
3 changed files with 103 additions and 3 deletions
|
@ -4,7 +4,7 @@
|
||||||
An implementation of MD4 designed for use in the samba SMB
|
An implementation of MD4 designed for use in the samba SMB
|
||||||
authentication protocol
|
authentication protocol
|
||||||
|
|
||||||
Copyright (C) 1997-1998 Andrew Tridgell
|
Copyright (C) 1997-1998 Andrew Tridgell
|
||||||
|
|
||||||
This program is free software; you can redistribute it and/or
|
This program is free software; you can redistribute it and/or
|
||||||
modify it under the terms of the GNU General Public License
|
modify it under the terms of the GNU General Public License
|
||||||
|
@ -38,8 +38,8 @@ static const char rcsid[] =
|
||||||
# include <strings.h>
|
# include <strings.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "QF/mdfour.h"
|
#include "mdfour.h"
|
||||||
#include "QF/uint32.h"
|
#include "uint32.h"
|
||||||
|
|
||||||
/* NOTE: This code makes no attempt to be fast!
|
/* NOTE: This code makes no attempt to be fast!
|
||||||
It assumes that a int is at least 32 bits long
|
It assumes that a int is at least 32 bits long
|
||||||
|
|
47
qcommon/mdfour.h
Normal file
47
qcommon/mdfour.h
Normal file
|
@ -0,0 +1,47 @@
|
||||||
|
/*
|
||||||
|
mdfour.h
|
||||||
|
|
||||||
|
an implementation of MD4 designed for use in the SMB authentication
|
||||||
|
protocol
|
||||||
|
|
||||||
|
Copyright (C) Andrew Tridgell 1997-1998
|
||||||
|
|
||||||
|
This program is free software; you can redistribute it and/or
|
||||||
|
modify it under the terms of the GNU General Public License
|
||||||
|
as published by the Free Software Foundation; either version 2
|
||||||
|
of the License, or (at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||||
|
|
||||||
|
See the GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program; if not, write to:
|
||||||
|
|
||||||
|
Free Software Foundation, Inc.
|
||||||
|
59 Temple Place - Suite 330
|
||||||
|
Boston, MA 02111-1307, USA
|
||||||
|
|
||||||
|
$Id$
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef __mdfour_h
|
||||||
|
#define __mdfour_h
|
||||||
|
|
||||||
|
#include "uint32.h"
|
||||||
|
|
||||||
|
#define MDFOUR_DIGEST_BYTES 16
|
||||||
|
|
||||||
|
struct mdfour {
|
||||||
|
uint32 A, B, C, D;
|
||||||
|
uint32 totalN;
|
||||||
|
};
|
||||||
|
|
||||||
|
void mdfour_begin(struct mdfour *md); // old: MD4Init
|
||||||
|
void mdfour_update(struct mdfour *md, const unsigned char *in, int n); //old: MD4Update
|
||||||
|
void mdfour_result(struct mdfour *md, unsigned char *out); // old: MD4Final
|
||||||
|
void mdfour(unsigned char *out, const unsigned char *in, int n);
|
||||||
|
|
||||||
|
#endif // __mdfour_h
|
53
qcommon/uint32.h
Normal file
53
qcommon/uint32.h
Normal file
|
@ -0,0 +1,53 @@
|
||||||
|
/*
|
||||||
|
uint32.h
|
||||||
|
|
||||||
|
Definitions for portable (?) unsigned 32-bit int
|
||||||
|
|
||||||
|
Copyright (C) 2000 Jeff Teunissen <deek@d2dc.net>
|
||||||
|
|
||||||
|
Author: Jeff Teunissen <deek@d2dc.net>
|
||||||
|
Date: 01 Jan 2000
|
||||||
|
|
||||||
|
This program is free software; you can redistribute it and/or
|
||||||
|
modify it under the terms of the GNU General Public License
|
||||||
|
as published by the Free Software Foundation; either version 2
|
||||||
|
of the License, or (at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||||
|
|
||||||
|
See the GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program; if not, write to:
|
||||||
|
|
||||||
|
Free Software Foundation, Inc.
|
||||||
|
59 Temple Place - Suite 330
|
||||||
|
Boston, MA 02111-1307, USA
|
||||||
|
|
||||||
|
$Id$
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef __uint32_h
|
||||||
|
#define __uint32_h
|
||||||
|
|
||||||
|
#ifndef int32
|
||||||
|
# if (SIZEOF_INT == 4)
|
||||||
|
# define int32 int
|
||||||
|
# elif (SIZEOF_LONG == 4)
|
||||||
|
# define int32 long
|
||||||
|
# elif (SIZEOF_SHORT == 4)
|
||||||
|
# define int32 short
|
||||||
|
# else
|
||||||
|
/* I hope this works */
|
||||||
|
# define int32 int
|
||||||
|
# define LARGE_INT32
|
||||||
|
# endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef uint32
|
||||||
|
# define uint32 unsigned int32
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif // __uint32_h
|
Loading…
Reference in a new issue