mirror of
https://github.com/blendogames/quadrilateralcowboy.git
synced 2024-11-21 19:51:04 +00:00
69420a703a
Huge shoutout to dhewm3 and RBDOOM-3-BFG for doing 99% of this work before us!
17 lines
436 B
C
17 lines
436 B
C
#ifndef __MD5_H__
|
|
#define __MD5_H__
|
|
|
|
/*
|
|
===============================================================================
|
|
|
|
Calculates a checksum for a block of data
|
|
using the MD5 message-digest algorithm.
|
|
|
|
===============================================================================
|
|
*/
|
|
|
|
// flibit: 64 bit fix, changed long to int
|
|
unsigned int MD5_BlockChecksum( const void *data, int length );
|
|
// flibit end
|
|
|
|
#endif /* !__MD5_H__ */
|