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 05ccb93..81c1132
@@ -1,25 +1,19 @@
-/* @(#) $Id: md5_sha1_op.h,v 1.3 2009/06/24 17:06:28 dcid Exp $ */
-
 /* Copyright (C) 2009 Trend Micro Inc.
  * All right reserved.
  *
  * This program is a free software; you can redistribute it
  * and/or modify it under the terms of the GNU General Public
- * License (version 3) as published by the FSF - Free Software
+ * License (version 2) as published by the FSF - Free Software
  * 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 *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 */