2007-02-21 20:27:14 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* Module: rbutil
|
|
|
|
* File: md5sum.h
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007 Dominik Wenger
|
|
|
|
*
|
|
|
|
* All files in this archive are subject to the GNU General Public License.
|
|
|
|
* See the file COPYING in the source tree root for full license agreement.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef MD5SUM_H_INCLUDED
|
|
|
|
#define MD5SUM_H_INCLUDED
|
|
|
|
|
|
|
|
#ifndef uint8
|
|
|
|
#define uint8 unsigned char
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef uint32
|
|
|
|
#define uint32 unsigned long int
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "rbutil.h"
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
uint32 total[2];
|
|
|
|
uint32 state[4];
|
|
|
|
uint8 buffer[64];
|
|
|
|
}
|
|
|
|
md5_context;
|
|
|
|
|
|
|
|
void md5_starts( md5_context *ctx );
|
|
|
|
void md5_update( md5_context *ctx, uint8 *input, uint32 length );
|
|
|
|
void md5_finish( md5_context *ctx, uint8 digest[16] );
|
|
|
|
|
2007-03-15 18:02:15 +00:00
|
|
|
int FileMD5(wxString name, char *md5);
|
2007-02-21 20:27:14 +00:00
|
|
|
|
|
|
|
#endif // MD5SUM_H_INCLUDED
|