quadrilateralcowboy/idlib/hashing/MD4.h

18 lines
428 B
C
Raw Normal View History

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