mirror of
https://github.com/dhewm/dhewm3-sdk.git
synced 2024-11-22 20:51:40 +00:00
16 lines
380 B
C
16 lines
380 B
C
|
#ifndef __MD5_H__
|
||
|
#define __MD5_H__
|
||
|
|
||
|
/*
|
||
|
===============================================================================
|
||
|
|
||
|
Calculates a checksum for a block of data
|
||
|
using the MD5 message-digest algorithm.
|
||
|
|
||
|
===============================================================================
|
||
|
*/
|
||
|
|
||
|
unsigned long MD5_BlockChecksum( const void *data, int length );
|
||
|
|
||
|
#endif /* !__MD5_H__ */
|