Initial commit

This commit is contained in:
Brian Harris
2012-11-26 12:58:24 -06:00
parent a5214f79ef
commit 5016f605b8
1115 changed files with 587266 additions and 0 deletions

15
neo/idlib/hashing/MD4.h Normal file
View File

@@ -0,0 +1,15 @@
#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__ */