mirror of
https://github.com/id-Software/DOOM-3.git
synced 2026-03-19 16:39:27 +01:00
16 lines
380 B
C
16 lines
380 B
C
#ifndef __MD4_H__
|
|
#define __MD4_H__
|
|
|
|
/*
|
|
===============================================================================
|
|
|
|
Calculates a checksum for a block of data
|
|
using the MD4 message-digest algorithm.
|
|
|
|
===============================================================================
|
|
*/
|
|
|
|
unsigned long MD4_BlockChecksum( const void *data, int length );
|
|
|
|
#endif /* !__MD4_H__ */
|