quadrilateralcowboy/idlib/hashing/MD5.h

18 lines
436 B
C
Raw Normal View History

2020-06-12 21:06:25 +00:00
#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
2020-06-12 21:06:25 +00:00
#endif /* !__MD5_H__ */