mirror of
https://github.com/dhewm/dhewm3-sdk.git
synced 2024-11-22 20:51:40 +00:00
15 lines
379 B
C
15 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__ */
|