Files
Justin Marshall 8c4a087aa9 Filesystem update.
2026-05-09 07:54:14 -07:00

16 lines
380 B
C

#ifndef __MD5_H__
#define __MD5_H__
/*
===============================================================================
Calculates a checksum for a block of data
using the MD5 message-digest algorithm.
===============================================================================
*/
unsigned long MD5_BlockChecksum( const void *data, int length );
#endif /* !__MD5_H__ */