update to ida 7.6, add builds
This commit is contained in:
16
idasdk76/include/md5.h
Normal file
16
idasdk76/include/md5.h
Normal file
@@ -0,0 +1,16 @@
|
||||
#ifndef MD5_H
|
||||
#define MD5_H
|
||||
|
||||
struct MD5Context
|
||||
{
|
||||
uint32 buf[4];
|
||||
uint32 bits[2];
|
||||
unsigned char in[64];
|
||||
};
|
||||
|
||||
idaman THREAD_SAFE void ida_export MD5Init(MD5Context *context);
|
||||
idaman THREAD_SAFE void ida_export MD5Update(MD5Context *context, const uchar *buf, size_t len);
|
||||
idaman THREAD_SAFE void ida_export MD5Final(uchar digest[16], MD5Context *context);
|
||||
idaman THREAD_SAFE void ida_export MD5Transform(uint32 buf[4], uint32 const in[16]);
|
||||
|
||||
#endif /* !MD5_H */
|
||||
Reference in New Issue
Block a user