mirror of
https://github.com/DrBeef/Doom3Quest.git
synced 2025-03-02 07:23:20 +00:00
16 lines
379 B
C
16 lines
379 B
C
|
#ifndef __MD5_H__
|
||
|
#define __MD5_H__
|
||
|
|
||
|
/*
|
||
|
===============================================================================
|
||
|
|
||
|
Calculates a checksum for a block of data
|
||
|
using the MD5 message-digest algorithm.
|
||
|
|
||
|
===============================================================================
|
||
|
*/
|
||
|
|
||
|
unsigned int MD5_BlockChecksum( const void *data, int length );
|
||
|
|
||
|
#endif /* !__MD5_H__ */
|