#ifndef _MD5_H
#define _MD5_H

#include <string>
#include <fcntl.h>

#ifdef __WIN32__
#define WINDOWS_OS
#else
#define UNIX_OS
#endif

namespace security_tools {

using namespace std;

extern bool compute_md5(const string & file_name, string & checksum);

}

#endif /* _MD5_H */
