new upstream release (3.3.0); modify package compatibility for Stretch
[ossec-hids.git] / src / os_crypto / md5_sha1 / md5_sha1_op.h
old mode 100755 (executable)
new mode 100644 (file)
index c29a90a..81c1132
@@ -1,6 +1,3 @@
-/* @(#) $Id: ./src/os_crypto/md5_sha1/md5_sha1_op.h, 2011/09/08 dcid Exp $
- */
-
 /* Copyright (C) 2009 Trend Micro Inc.
  * All right reserved.
  *
  * Foundation
  */
 
-/* OS_crypto/md5 Library.
- * APIs for many crypto operations.
- */
-
 #ifndef __MD5SHA1_OP_H
 #define __MD5SHA1_OP_H
 
+#include "../md5/md5_op.h"
+#include "../sha1/sha1_op.h"
 
-int OS_MD5_SHA1_File(char *fname, char *prefilter_cmd, char *md5output, char *sha1output);
-
+int OS_MD5_SHA1_File(const char *fname, const char *prefilter_cmd, os_md5 md5output, os_sha1 sha1output, int mode) __attribute((nonnull(1, 3, 4)));
 
 #endif
 
-/* EOF */