doom3-bfg/neo/idlib/hashing/MD4.h
2012-12-12 12:11:55 +01:00

17 lines
428 B
C

#ifndef __MD4_H__
#define __MD4_H__
/*
===============================================================================
Calculates a checksum for a block of data
using the MD4 message-digest algorithm.
===============================================================================
*/
// RB: 64 bit fix, changed long to int
unsigned int MD4_BlockChecksum( const void* data, int length );
// RB end
#endif /* !__MD4_H__ */